what are the differences between CUI and GUI interfaces?

Answer Posted / nisha

CUI-anything where you are allowed to work only with keyboard
GUI-when you are allowed to work with any pointing device
like mouse..

Is This Answer Correct ?    406 Yes 153 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are reported commands?

771


What are file commands?

839


What is the first character of the output in ls l command?

844


What is the use of finger command?

806


What is pipe command in unix?

877






What are grep patterns?

758


What is a command and examples?

784


Which command is used to copy files?

797


What are some command words?

787


Explain command to display different lines that are found when compare two files?

865


What is {} in find command?

762


Who wrote grep?

759


hw will u use awk in replacing cahrs and files

2913


What is the use of the tee command?

796


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 # include 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:

1946