November 26, 2023

Web-Technologies

Question 25 Which tag is used to display the numbered list? A < OL > < /OL > B < DL > < /DL > C […]
November 26, 2023

Transactions

Question 16 Two transactions T1 and T2 are given as T1: r1(X)w1(X)r1(Y)w1(Y) T2: r2(Y)w2(Y)r2(Z)w2(Z) where ri(V) denotes a read operation by transaction Ti on a variable […]
November 26, 2023

Question 9314 – GATE 2006

Consider the polynomial p(x) = a0 + a1x + a2x2 + a3x3, where ai ≠ 0, ∀i. The minimum number of multiplications needed to evaluate p on an input […]
November 26, 2023

Algorithms

Question 30 Consider the following program that attempts to locate an element x in a sorted array a[] using binary search. Assume N>1. The program is […]
November 26, 2023

Binary-search-tree

Question 4 (a) In a binary tree, a nil node is defined to be a node with 2 children. Use induction on the height of the […]
November 26, 2023

UGC NET June-2019 CS Paper-2

Question 29 K-mean clustering algorithm has clustered the given 8 observations into 3 clusters after 1st iteration as follows: C1 : {(3,3), (5,5), (7,7)} C2 : […]
November 27, 2023

Question 7572 – Algorithms

Which of the following is asymptotically smaller? Correct Answer: A Question 367 Explanation:  Option-A & B: lg(lg*n) is smaller than lg*(lgn). Because lg*(lg n) = lg*n-1. […]
November 27, 2023

Question 16812 – Algorithms

Consider a memory system having address spaced at a distance of m. T=Bank cycle time and n number of bank, then the average data access time […]
November 27, 2023

Algorithm-Paradigms

Question 5 Match the following typical example problems with suitable algorithm-design paradigms A: Minimal Spanning Tree B: Binary Search Algorithm C: Depth-First Search D: Optimization I: […]