November 14, 2023Question 9893 – Time-ComplexityIf n is a power of 2, then the minimum number of multiplications needed to compute a* is Correct Answer: A Question 7 Explanation: We require […]
November 15, 2023NIELIT Junior Teachnical Assistant_2016_marchQuestion 9 Which of the following has lowest propagation delay ? A ECL B TTL C PMOS D CMOS Digital-Logic-DesignLogic-Families Correct Answer: A
November 15, 2023Question 9727 – Data-StructuresThe following recursive function in C is a solution to the Towers of Hanoi problem. Void move (int n, char A, char B, char C) { […]
November 15, 2023Question 11595 – OperatorIn C language, x – = y + 1; means Correct Answer: A Question 1 Explanation: In general, a-=b means a=a-b. So from this we can […]