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