What is the difference between udp and tcp?
Answers were Sorted based on User's Feedback
Answer / saket kale
TCP gives guaranteed Delivery, UDP does not
TCP is connection oriented, UDP is not
TCP provides Flow Control, UDP does not.
Usually UDP is used to send data while streaming etc since
it takes less time, but important data is always sent using TCP.
| Is This Answer Correct ? | 23 Yes | 1 No |
Answer / sk.mukthar
Tcp is connection oriented,while UDP is not...
TCP gives guaranteed Delivery, UDP does not...
| Is This Answer Correct ? | 3 Yes | 0 No |
What is the use of sed command in unix?
to list a particular line in the file
What is the use of the command 'ls -x chapter[1-5]' ?
What is mtime in find command?
When i run a programm of orphan process. Instead of getting child's parent (ppid)=1 ..i get 1400 and it varies as per system. How can i findthe right soluion??? My pgm: #include<stdlib.h> # include <stdio.h> int main() { int pid; pid=fork(); if(pid < 0) {exit(-1);} else if(pid==0) { printf("Child Process is Sleeping ..."); sleep(10); printf("Orphan Child's Parent ID : %u ",getppid()); } else { printf("Parent Process Completed ... %u ",getpid()); exit(0); } return 0; } Output:
fork in unix ?
use of ls command
How to convert a hidden file to normal visible file?
What is the procedure of "at" and crontab" commands?
Why we are using UNIX OS when we are doing the testing in our application?
What does the command '$ls | wc –l > file1' do?
what is the command to get help on a UNIX terminal?