November 12, 2024AlgorithmsQuestion 39 Let T(n) be the function defined by T(1)= 1, T(n)= 2T(⌊n/2⌋) + √n for n≥2. Which of the following statement(s) is true? A T(n) […]
November 13, 2024UGC NET CS 2008-june-Paper-2Question 11 What is the effect of the following C code ? for(int i=1; i≤5; i=i+½) printf(“%d,”,i); A It prints 1, 1.5, 2, 2.5, 3, 3.5, […]
November 13, 2024NTA UGC NET Dec 2023 Paper-2Question 52 Consider the following code segment: int arr[] = {0, 1, 2, 3, 4}; int i=1, *ptr; ptr=arr + 2; arrange the following printf statements […]
November 14, 2024GATE-2024-CS1(Forenoon)Question 16 A user starts browsing a webpage hosted at a remote server. The browser opens a single TCP connection to fetch the entire webpage from […]