Start learning 50% faster. Sign in now
India has slipped three spots to rank 120 on the 17 Sustainable Development Goals (SDG) adopted as a part of the 2030 agenda by 192 United Nations member states in 2015. In 2021 India ranked 117 among 192 nations. India’s overall SDG score was 66 out of 100.
Which famous sorting algorithm uses the divide-and-conquer strategy?
Which of the following best describes inheritance in object-oriented programming?
Consider the following sorting algorithms.
I. Quicksort II. Heapsort III. Mergesort
Which of them perform in least time in the worst case?
Microinstructions are stored in control memory groups, with each group specify a
In CPU design, what does the Control Unit (CU) primarily handle?
Null value in DBMS corresponds to?
Below code will give what result for f(3)
f(int x)
{
If(x
Return;
f(x-1);
printf(“%d”, x);
f(n-1);
}
What is abstraction in object-oriented programming?
The attributes that do not exist in the physical database
What is the primary advantage of dynamic memory allocation?