Question Set

1. Which of the following is TRUE about argv?





Ask Your Doubts Here

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

Show Similar Question And Answers
QA->A, B, C, D, E and F are sitting in six chairs regularly placed around a round table. It is observed that A is between D and F, C is opposite to D, D and E are not on neighboring chairs. Which one of the following must be true ?....
QA->Plants which lack true roots; stems and leaves are called by which name?....
QA->Plants which lack true roots, stems and leaves are called by which name?....
QA->A statement followed by two assumptions I and II is given. You have to consider the statement to be true even if it seems to be at variance from commonly known facts. You are to decide which of the given assumptions can definitely be drawn from the given statement. Indicate which one of the four given alternatives is correct ? Statement : If more encouragement is given to Sports, Indians will win more gold medals at the Olympic Games. Assumptions : I. Indians do not win gold medals. II. More enc....
QA->Which statement is true with respect to Leukaemia?....
MCQ->What will be the output of the program (sample.c) given below if it is executed from the command line (Turbo C in DOS)? cmd> sample 1 2 3 / sample.c / #include<stdio.h> int main(int argc, char argv[]) { int j; j = argv[1] + argv[2] + argv[3]; printf("%d", j); return 0; }....
MCQ->Which two statements are true about wrapper or String classes? If x and y refer to instances of different wrapper classes, then the fragment x.equals(y) will cause a compiler failure. If x and y refer to instances of different wrapper classes, then x == y can sometimes be true. If x and y are String references and if x.equals(y) is true, then x == y is true. If x, y, and z refer to instances of wrapper classes and x.equals(y) is true, and y.equals(z) is true, then z.equals(x) will always be true. If x and y are String references and x == y is true, then y.equals(x) will be true.....
MCQ->What will be the output of the program (sample.c) given below if it is executed from the command line? cmd> sample one two three / sample.c / #include<stdio.h> int main(int argc, char argv[]) { int i=0; i+=strlen(argv[1]); while(i>0) { printf("%c", argv[1][--i]); } return 0; }....
MCQ->Which two statements are true about comparing two instances of the same class, given that the equals() and hashCode() methods have been properly overridden? If the equals() method returns true, the hashCode() comparison == must return true. If the equals() method returns false, the hashCode() comparison != must return true. If the hashCode() comparison == returns true, the equals() method must return true. If the hashCode() comparison == returns true, the equals() method might return true.....
MCQ->If the following program (myproc.c) is present in the directory "C:\TC" then what will be output of the program if run it from DOS shell? / myproc.c / #include<stdio.h> int main(int argc, char argv[]) { printf("%s", argv[0]); return 0; }....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use | Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions
Question ANSWER With Solution