All Expert Articles
This is basically a variation of bubble-sort. This algorithm is divided into two phases- Odd and Even Phase. The algorithm runs until the array elements… Read More
Find wrong number in series:4, 5, 7, 12, 19, 35 (A) 12 (B) 19 (C) 35 (D) 7 Answer: (A)Explanation: 4+20=55+21=77+22=1111+23=1919+24=35 Quiz of this QuestionPlease… Read More
√7321 x 35.999 = ? (A) 3060 (B) 3204 (C) 3410 (D) 2930 Answer: (A) Explanation: 85*9*100/25=765*4=3060Quiz of this QuestionPlease comment below if you find… Read More
For a shirt cost price is Rs. 400. Shopkeeper prints a tag on it with Markup% = 20% to earn a profit of 7.5%. What… Read More
In what time will Rs.8500 pay an amount of Rs. 7267.50 as S.I at 4.5 per cent per annum? (A) 19 (B) 20 (C) 18… Read More
What is correct time and day of Ram’s magical watch, which gains uniformly 300 seconds slow at time 08:00 on Sunday and 348 fast at… Read More
A Binary Search Tree (BST) stores values in the range 37 to 573. Consider the following sequence of keys. I. 81, 537, 102, 439, 285,… Read More
For the undirected, weighted graph given below, which of the following sequences of edges represents a correct execution of Prim\’s algorithm to construct a Minimum… Read More
Consider a selection of the form σA≤100(r), where r is a relation with 1000 tuples. Assume that the attribute values for A among the tuples… Read More
Consider the following C program:    #include             #define EOF -1            void push (int); /* push the argument on the stack */            int pop  (void); /* pop… Read More
The function f is defined as follows:  C int f (int n) {     if (n <= 1) return 1;     else if (n % 2  == … Read More
Consider n jobs J1, J2,……Jn such that job Ji has execution time ti and a non-negative integer weight wi. The weighted mean completion time of… Read More
An array X of n distinct integers is interpreted as a complete binary tree. The index of the first element of the array is 0.… Read More
For each of the four processes P1, P2, P3 and P4. The total size in kilobytes (KB) and the number of segments are given below.… Read More
3 men and 4 women can complete a work in 10 days by working 12 hours a day. 13 men and 24 women can do… Read More
6 men and 10 women were employed to make a road 360 km long. They were able to make 150 kilometres of road in 15… Read More
What is the average case performance for Comb Sort? (Note: ‘i’ in the options is the number if increments) (A) Ω(n2 / i) (B) Ω(n2… Read More
Consider a set U of 23 different compounds in a Chemistry lab. There is a subset S of U of 9 compounds, each of which… Read More
The value printed by the following program is  C void f(int* p, int m){    m = m + 5;    *p = *p + m;    return;}void main(){    int i=5, j=10;    f(&i,… Read More