The address of a computer on the Internet is commonly referred to as the IP Address (Internet Protocol).
What are the key elements of protocols? [ 6 Marks]
b) In computer networking two versions of IP address are used i.e., IPv4 and IPv6.
Give your point of view, can IPv6 replace IPv4 or co-exist with IPv6? Justify your opinion with two solid reasons. [ 7 Marks]
c) What is the role of the IEEE in computer networking? [ 3 Marks]
d) What are the important differences between MAC address and IP address? [ 4 Marks]
create a class student which store name roll no. age of the student. Derive a class test from student class which store marks of 5 subjects input and display the details of student
Write a program that reads all the match outcomes and summarizes the information of all the matches. A win earns a team 3 points. The team information should be displayed in descending order of points.
Input1-The first line contains a single integer N, denoting the total no. of matches played.
The following N lines contain outcomes of N matches. The team name may contain spaces.
6
CSK;RR;loss
RR;DD;draw
MI;KKR;win
KKR;RR;loss
CSK;DD;draw
MI;DD;draw
Output1- If there are no teams to print in summary, print "No Output". Constraints
Names of teams may contain spaces but will be less than 24 characters 100 >= N >= 0.
Team: RR, Matches Played: 3, Won: 2, Lost: 0, Draw: 1, Points: 7
Team: MI, Matches Played: 2, Won: 1, Lost: 0, Draw: 1, Points: 4
Team: DD, Matches Played: 3, Won: 0, Lost: 0, Draw: 3, Points: 3
Team: CSK, Matches Played: 2, Won: 0, Lost: 1, Draw: 1, Points: 1
Team: KKR, Matches Played: 2, Won: 0, Lost: 2, Draw: 0, Points: 0Let a matrix of size m X n contains elements either 0 or 1. Write a code to replace an element 0 with 1, if all its surrounding elements are 1.
Write the code to delete all the nodes in a doubly linked list, where the data element
of the node is greater than data element of all its previous nodes and is less than data
element of all the next nodes.
Reverse a singly linked list using recursion.
program to display, name ,contact, national card number, and the conversional summary
Write a program that reads a person's first and last names separated by a space, assuming the first and last names are both single words. Then the program outputs last name, first name. End with newline.