What are raw sockets, where they are efficient?
Answer Posted / manjunath gn
Raw sockets are the sockets created at Data link layer.
They are useful in layer 2 communication
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
write a c++ program to create class student having datamember name,Roll_no,age,and branch intilcization all the member using constructor print the all the details on the screen.
What is namespace & why it is used in c++?
What is different in C++, compare with unix?
A prime number is a number which is divisible only by itself and 1. Examples of the first few primes are 2, 3, 5, 7, 11. Consider writing a program which can generate prime numbers for you. Your program should read in and set a maximum prime to generate and a minimum number to start with when looking for primes. This program should be able to perform the following tasks: 1. Read the maximum number from user (keyboard input) to look for primes. The program should not return any primes greater than this number. 2. Read the minimum number from user (keyboard input) to look for primes. The program should not return any primes less than this number. 3. Generate and print out every prime number between the maximum prime and minimum number specified by the user.
What is the need of a destructor?
Why iomanip is used in c++?
Will rust take over c++?
How much is c++ certification?
Write a Program for dynamically intialize a 2 dimentional array. Eg:5x20, accept strings and check for vowels and display the no.finally free the space allocated .
What is the last index number in an array of 100 characters a) 100 b) 99 c) 101
When is the destructor called?
Can you Mention some Application of C/C++?
Should a constructor be public or private?
Is c++ an oop?