MCQOPTIONS
Home
About Us
Contact Us
Bookmark
Saved Bookmarks
Testing Subject
General Aptitude
Logical and Verbal Reasoning
English Skills Ability
Technical Programming
Current Affairs
General Knowledge
Finance & Accounting
GATE (Mechanical Engineering)
Chemical Engineering
→
Future First
→
Aptitude & Logical - Future First
→
Which of the following commands is used to compare...
1.
Which of the following commands is used to compare files in Unix ?
A.
Comp
B.
cmp
C.
ccp
D.
None of these
Answer» E.
Show Answer
Discussion
No Comment Found
Post Comment
Related MCQs
For which of the following situation should the register storage class be used?
What will be the output of the following code? #include< stdio.h> int main() { extern int a; static char j = ‘E’; printf(“%c %d”, ++j, ++a); return 0; }
Where will the space be allocated for an automatic storage class variable?
In case of a conflict between the names of a local and global variable what happens?
What will be the output of the following code? static int I = 5; main() { int sum = 0 do { sum + = (1/i); }while(0 < I - -); printf(“sum of the series is %d”, sum); }
What will be the storage class of variable I in the code written below? #include< stdio.h> int main() { int I = 10; printf(“%d”, i); return 0; }
What will be the output of the following program? #include < stdio.h> static int y = 1; int main() { static int z; printf(“%d %d”, y, z); return 0; }
What will be the output of the following program? #include< stdio.h> void fun() { fun(); Return 0; } void fun() { auto int I = 1; register char a = ‘D’; static int p = 0; printf(“%d %d %ld”, I, a, p); }
Which of the following statement are correct? (iii) The maximum value a variable can hold depends upon its storage class. (iv) By default all variables enjoy a static storage class.
What is the output of the following program? #include< stdio.h> int main() { static int a = 3; printf(“%d”, a --); return 0; }
Reply to Comment
×
Name
*
Email
*
Comment
*
Submit Reply
Your experience on this site will be improved by allowing cookies. Read
Cookie Policy
Reject
Allow cookies