Skip to main content

DLD (Digital Logic Design) objective questions

 

  1. Which of the following is NOT a basic logic gate? a) AND gate b) OR gate c) XOR gate d) NAND gate e) None of the above

Answer: e) None of the above

  1. Which of the following is a universal gate? a) OR gate b) AND gate c) NOT gate d) NAND gate e) None of the above

Answer: d) NAND gate

  1. Which of the following is an example of combinational logic? a) Flip-flop b) Counter c) Decoder d) Multiplexer e) None of the above

Answer: c) Decoder

  1. Which of the following is used to implement logical functions in digital circuits? a) Resistors b) Diodes c) Transistors d) Capacitors e) None of the above

Answer: c) Transistors

  1. Which of the following is a binary number system? a) Octal b) Decimal c) Hexadecimal d) Binary e) None of the above

Answer: d) Binary

  1. Which of the following is used to represent negative numbers in binary? a) Sign-magnitude representation b) Two's complement representation c) Ones' complement representation d) Excess-3 representation e) None of the above

Answer: b) Two's complement representation

  1. Which of the following is a type of flip-flop? a) SR flip-flop b) JK flip-flop c) D flip-flop d) T flip-flop e) All of the above

Answer: e) All of the above

  1. Which of the following logic gates is represented by the symbol ⊕? a) AND gate b) OR gate c) XOR gate d) NAND gate e) None of the above

Answer: c) XOR gate

  1. Which of the following logic gates is represented by the symbol ↓? a) AND gate b) OR gate c) XOR gate d) NAND gate e) None of the above

Answer: b) OR gate

  1. Which of the following is NOT a method for minimizing Boolean expressions? a) Karnaugh map b) Quine-McCluskey algorithm c) Boolean algebra d) Bubble sort algorithm e) None of the above

Answer: d) Bubble sort algorithm

  1. Which of the following is a sequential logic circuit? a) Decoder b) Multiplexer c) Flip-flop d) Comparator e) None of the above

Answer: c) Flip-flop

  1. Which of the following is NOT a characteristic of a synchronous sequential circuit? a) State memory b) Combinational logic c) Feedback path d) Clock input e) None of the above

Answer: b) Combinational logic

  1. Which of the following is NOT a type of memory in digital circuits? a) ROM b) RAM c) SRAM d) DRAM e) All of the above are types of memory

Answer: e) All of the above are types of memory

  1. Which of the following is a type of digital-to-analog converter (DAC)? a) Successive approximation ADC b) Flash ADC c) Dual-slope ADC d) Sigma-delta ADC e) None of the above

Answer: e) None of the above (DACs are used to convert digital signals to analog signals)

Comments

Popular posts from this blog

IMPORTANCE OF MANAGEMENT

 1. Management is an activity 2. Management is a purposeful activity. 3. Management is concerned with the efforts of a group. 4. Management applies economic principles. 5. Management involves decision making. 6. Management is getting things done through others. 7. Management is an integrating process. 8. Management co-ordinates all activities and resources. (i) Management is a universal activity. (ii) Management is dynamic not rigid.

Shorting Objective question for c language

1. Which of the following is the correct syntax for using the bubble sort algorithm in C? a. bubbleSort(int arr[], int n); b. void bubbleSort(int *arr, int n); c. int *bubbleSort(int arr[], int n); d. bubbleSort(int *arr); Answer: b. void bubbleSort(int *arr, int n); 2. Which sorting algorithm has the best average-case time complexity in C? a. Bubble Sort b. Insertion Sort c. Merge Sort d. Selection Sort Answer: c. Merge Sort 3. Which sorting algorithm is not an in-place sorting algorithm in C? a. Bubble Sort b. Heap Sort c. Insertion Sort d. Quick Sort Answer: b. Heap Sort 4. Which of the following is the correct time complexity of the Quick Sort algorithm in C? a. O(n) b. O(nlogn) c. O(n^2) d. O(logn) Answer: b. O(nlogn) 5. Which of the following is an example of a stable sorting algorithm in C? a. Bubble Sort b. Insertion Sort c. Quick Sort d. Shell Sort Answer: b. Insertion 6. Which of the following is not a valid variable type in C? a) int b) float c) char d) decimal Answer: d) d...

In c, Array objective question with option

1. What is an array in C? a) A collection of similar data items stored in contiguous memory locations. b) A collection of different data items stored in non-contiguous memory locations. c) A collection of similar data items stored in non-contiguous memory locations. d) A collection of different data items stored in contiguous memory locations. Answer: a) A collection of similar data items stored in contiguous memory locations. 2.What is the syntax to declare an array in C? a) dataType arrayName[arraySize]; b) dataType arraySize[arrayName]; c) arrayName[arraySize] dataType; d) arraySize[arrayName] dataType; Answer: a) dataType arrayName[arraySize]; 3.How do you access the first element of an array in C? a) arrayName[0]; b) arrayName[1]; c) arrayName[-1]; d) arrayName[first]; Answer: a) arrayName[0]; 4.What is the index of the last element of an array in C? a) arraySize; b) arraySize - 1; c) arraySize + 1; d) arraySize * 2; Answer: b) arraySize - 1; 5.Can you change the size of an array ...