51. An array is ____________ data-structure:
Correct answer: (A)
Linear
52. Which is the false statement:
Correct answer: (D)
None of these
53. Array can be sorted by using:
Correct answer: (D)
All of above
54. Which term is not related to function:
Correct answer: (D)
Receive
55. Which is the type of function arguments:
Correct answer: (C)
Both
56. int add(int,int); in the given function prototype select the correct statement:
Correct answer: (B)
int x=add(4,25);
57. A pointer variable can store ____________
Correct answer: (C)
Address of another variable
58. int *ptr; here ptr can store the address of:
Correct answer: (A)
int variable
59. int x=10; int *y=&x; the variable y contains:
Correct answer: (B)
Address of x;
60. int **ptr; here ptr is:
Correct answer: (B)
Pointer to pointer