All Easy Articles
Barack spends Rs 6650 to buy some goods and gets a rebate of 6% on it. After this, he pays a sales tax of 10%.… Read More
Mary’s salary is reduced by 10%. By what percentage must her new salary be increased in order to gain her old salary? (A) 137⁄9 %… Read More
A boatman takes 3 hours 45 minutes to travel 15 km downstream and takes 2 hours 30 minutes to travel 5 km upstream of a… Read More
When n = 22k for some k ≥ 0, the recurrence relationT(n) = √(2) T(n/2) + √n, T(1) = 1evaluates to : (A) √(n) (log… Read More
The two numbers given below are multiplied using the Booth’s algorithm. Multiplicand : 0101 1010 1110 1110 Multiplier: 0111 0111 1011 1101 How many additions/Subtractions… Read More
Wriiten Test One coding question of form minimum cost to travel from 0,0 to N-1,M-1, remaining MCQ for time complexity of running code,other technical questions… Read More
G is a simple undirected graph. Some vertices of G are of odd degree. Add a node v to G and make it adjacent to… Read More
How many bytes of data can be sent in 15 seconds over a serial link with baud rate of 9600 in asynchronous mode with odd… Read More
Rajdhani Express halts for 3 minutes every time it covers a distance of 75 km. If the train runs at a speed of 100 km/h… Read More
Paul has to travel 24 km. After walking for 1 hour 40 minutes he sees that he has covered 5/7 of the distance left to… Read More
If John walks at the speed of 5 km/h, he reaches his office 7 minutes late. However, if he walks at the speed of 6… Read More
Given a binary tree, print all its root-to-leaf paths without using recursion. For example, consider the following Binary Tree.  6 / \ 3 5 /… Read More
Turing Machine was invented by Alan Turing in 1936 and it is used to accept Recursive Enumerable Languages (generated by Type-0 Grammar).  Turing machines are… Read More
Consider the regular expression R = (a + b)* (aa + bb) (a + b)*<br> Which one of the regular expressions given below defines the… Read More
A demand paging system takes 100 time units to service a page fault and 300 time units to replace a dirty page. Memory access time… Read More
Early binding refers to a binding performed at compile time and late binding refers to a binding performed at execution time. Consider the following statements:… Read More
Suppose you are given an implementation of a queue of integers. The operations that can be performed on the queue are: i. isEmpty (Q) — returns… Read More
A partial order P is defined on the set of natural numbers as follows. Here x/y denotes integer division. i. (0, 0) ∊ P. ii.… Read More
Comprehension passages are sure-shot scoring questions that are usually asked in competitive examinations. Candidates must practice questions on this topic to score well in the… Read More
The Adapter design pattern is a structural pattern that allows the interface of an existing class to be used as another interface. It acts as… Read More