A dishonest shopkeeper uses 80cm scale instead of metre scale and claims to sell at the cost price. What is his % profit?
The ratio of the number of boys and girls in a college is 8:7, if the percentage increase in the number of boys and girls are 25% and 20% respectively. What will be the new ratio?
John can do a piece of work in 18 days. Ali can do the same work in 24 days and Bishal in 36 days. John and Bishal worked for 4 days and handed it to Ali. Ali worked for some days and handed it again to John and Bishal 6 days before completing the work. For how many days did Ali work?
Fill in the blank with the right homophone
____________ lands have no water.
Fill in the blanks with right participle.
The car warrants __________
Tripura is a state in northeastern India. The third-smallest state in the country, it covers 10,491 km2 (4,051 sq mi) and is bordered by Bangladesh to the north, south, and west, and the Indian states of Assam and Mizoram to the east. In 2011 the state had 3,671,032 residents, constituting 0.3% of the country's population.
The area of modern Tripura—ruled for several centuries by the Tripuri dynasty—was part of an independent princely state under the protectorate of the British Empire. The independent Tripuri Kingdom (also known as Hill Tippera) joined the newly independent India in 1949.
Tripura lies in a geographically disadvantageous location in India, as only one major highway, the National Highway 8, connects it with the rest of the country. Five mountain ranges—Boromura, Atharamura, Longtharai, Shakhan and Jampui Hills—run north to south, with intervening valleys; Agartala, the capital, is located on a plain to the west. The state has a tropical savanna climate, and receives seasonal heavy rains from the south west monsoon. Forests cover more than half of the area, in which bamboo and cane tracts are common. Tripura has the highest number of primate species found in any Indian state. Due to its geographical isolation, economic progress in the state is hindered. Poverty and unemployment continue to plague Tripura, which has a limited infrastructure. Most residents are involved in agriculture and allied activities, although the service sector is the largest contributor to the state's gross domestic product.
What is hindered in Tripura due to geographical isolation?
int main(int argc, char **argv);
If an object file of C program is “program” and the program is run using the following:
./program hello world
Then value of argc is?
#include<stdio.h>
main( )
{ int fun();
fun();
(*fun) ();
}
int fun( )
{ printf("CSE");}
#include <stdio.h>
int main() {
int a=10;
int b=5;
a=a^b;
b=a^b;
a=a^b;
printf("%d %d",a,b);
return 0;
}
{
static int i = 5;
if ( -- i)
{
main ( );
printf(“%d ”, i);
}
}
The output of the program is?
The number of comparisons required to search 48 in the hash table with chaining is pos = x % 10. The array of elements inserted into hashtable is 0, 32, 42, 200, 150, 22, 48, 120, 18, 108, 12, 110, 38, 24
The length of a path from Vn to Vn-1 in the minimum spanning tree is___
Let's assume that after scanning a file we found the following character frequencies:
Character
|
A
|
B
|
C
|
D
|
E
|
F
|
Frequency
|
12
|
2
|
7
|
13
|
14
|
85
|
How many numbers of bits saved using Huffman coding algorithm ____?
(Note: Assume each character is stored with three bits without using any algorithm)
R: (∈+0+1)* (0.∈.0) (∈+0+1)* + (∈+0+1)* (1.∈.1) (∈+0+1)*
The minimal NFA which accepts language generated by R will have _______ states
Two persons X and Y designed two Turing machines M1 and M2 for the given problem stated above.
Choose the correct option.

(00*)1 + 1
Select the correct option
Consider the following grammar where {S,X,Y} are non terminals and {v,w,z} are set of terminals.
S->XYX
X-> Yv | wX | ∈
Y->zX
Select the correct option
S-> SS { print +}
S-> a {print a}
For input string “aaa” the correct output will be
A->AA+ | a
Select the correct option.
“Either all operations of the transaction are reflected properly in the database, or none are”.
smart_phone(name, model, manufacturer, battery)
FD1: model → name
FD2: model → manufacturer, battery
FD3: model, manufacturer → battery
Identify the correct statement related to the relation smartphone. [MSQ]
Find the average number of block access (storing follows unspanned strategy)
(Assume first level index is Secondary index)
FROM Sailors S
WHERE NOT EXISTS ((SELECT A.bid
FROM Boats A) EXCEPT
(SELECT C.bid
FROM Reserves C
WHERE C.Sid=S.Sid))
What is above query returns ?
int Compare-and-Swap(int *var,int oldval,int newval) {
int temp = *var;
if(*var == oldvalue)
*var = newvalue
return temp;
}
|
Entry{
P:_________
}
//Critical Section
Exit{
lock=0;
}
|
Choose the correct predicate P in the Entry section, to achieve mutual exclusion.
Is singular _______


A function is defined as

x+y+z=2,
x+2y+3z=7,
x+4y+7z=17 has
There are 450 students in a college. Each student has to choose one or more elective out of management, history and physics. Further following information is also known
1) 75 students selected only management and physics.
2) 84 students selected only management and history.
3) 52 students selected only physics and history.
4) The number of students who selected only history is 137 less the number of students who selected only
management.
5) In total 238 students selected management as an elective.
6) In total 240 students selected history as an elective
The number of students selected both management and physics as elective are______
16 surfaces,
64 tracks/surface,
128 sectors/track,
256 bytes/sector.
What is the capacity of disk pack?
Consider two processors P1 and P2 executing the same instruction set. Assume that under identical conditions, for the same input, a program running on P2 takes 30% less time but incurs 25% more CPI (clock cycles per instruction) as compared to the program running on P1. If the clock frequency of P1 is 1GHz, then the clock frequency of P2 (in GHz) is _________