ThatQuiz Test Library Take this test now
PCDS LAB VIVA I B.TECH ECE-C
Contributed by: VENKATRAO
  • 1. Each Algorithm begins with a ___.
A) Parameter
B) Condition
C) Header
D) Return Statement
  • 2. Parameters can be passed by___.
A) Value
B) None of the above
C) Reference
D) Both A & B
  • 3. An array is a ___ sequence.
A) Homosequence
B) Homogeneous
C) Assorted
D) Heterogeneous
  • 4. A C Structure or User defined data type is also called.?
A) Aggregate data type
B) Secondary data type
C) All the above
D) Derived data type
  • 5. The total number of comparisons in bubble sort is?
A) O (nlogn)
B) None of the above
C) O (2n)
D) O (n2)
  • 6. In Linked List there are no NULL links in?
A) Double Linked List
B) Circular Linked List
C) Single Linked List
D) None of the above
  • 7. Convert into prefix notation: A * B + C / D
A) None of the above
B) + * A / B C D
C) + * A B C D /
D) + * A B / C D
  • 8. Choose a correct statement about C String. char ary[]="Hello..!";
A) Character array, ary is a string
B) Character array, ary is a string
C) String size is not mentioned
D) String can not contain special characters.
  • 9. What is the Format specifier used to print a String or Character array in C Printf or Scanf function.?
A) %w
B) %C
C) %s
D) %c
  • 10. A function which calls itself is called a ___ function.
A) Recursive Function
B) Self Function
C) Auto Function
D) Static Function
  • 11. Identify wrong C Keywords below.
A) case, enum, register, typedef
B) auto, double, int, struct
C) break, else, long, switch
D) char, extern, intern, return
  • 12. Find a correct C Keyword below
A) shorter
B) go to
C) breaker
D) default
  • 13. Choose a correct statement about C format Specifiers
A) %l or %L prints long constants.
B) %s prints string constants
C) %c prints unsigned or signed character constants.
D) All the above
  • 14. An array Index starts with.?
A) 0
B) 1
C) [ ]
D) -1
  • 15. What is the output of C Program.? int main() { int a[] = {1,2,3,4}; int b[4] = {5,6,7,8}; printf("%d,%d", a[0], b[0]); }
A) 2,6
B) 0,0
C) 1,5
D) Compiler error
  • 16. 8) What is the output of C Program.? int main() { char grade[] = {'A','B','C'}; printf("GRADE=%c, ", *grade); printf("GRADE=%d", grade); }
A) GRADE=A, GRADE=some address of array
B) GRADE=A, GRADE=A
C) Compiler error
D) GRADE=some address of array, GRADE=A
  • 17. What is the output of Bitwise OR operation | on (0110 | 1100).?
A) 1110
B) 1000
C) 1001
D) 1100
  • 18. Left Shift operation is equivalent to.?
A) Subtracting 2
B) adding 2
C) Division by 2
D) Multiplying by 2
  • 19. What is the another name for .C file.?
A) Macro Code
B) Source Code
C) Distributable Code
D) Executable code
  • 20. What are the C functions used to read or write a file in Text Mode.?
A) fprint(), fscan()
B) fprintf(), fscanf()
C) fread(), fwrite()
D) read(), write()
  • 21. Who is the father of C language?
A) Narendra modi
B) Rasmus Lerdorf
C) Dennis Ritchie
D) James Gosling
  • 22. The standard header _______ is used for variable list arguments (…) in C.
A) <math.h>
B) <stdarg.h>
C) <stdlib.h>
D) <stdio.h >
  • 23. Which of the following return-type cannot be used for a function in C?
A) char *
B) none of the mentioned
C) struct
D) void
  • 24. Process of inserting an element in stack is called ____________
A) Process of inserting an element in stack is called ____________
B) Pop
C) Create
D) Evaluation
  • 25. A normal queue, if implemented using an array of size MAX_SIZE, gets full when?
A) Rear = MAX_SIZE – 1
B) Front = MAX_SIZE – 1
C) Front = rear + 1
D) Rear = front
Created with That Quiz — where test making and test taking are made easy for math and other subject areas.