Questions

Q:

The Number of officially recognised languages in india is

A) 12 B) 15
C) 18 D) 21
 
Answer & Explanation Answer: C) 18

Explanation:

India has 18 officially recognised languages - Konkani, Manipur and Nepali were added to the official list of 15 in 1992. The other 15 languages are Assamese, Bengali, Gujarati, Hindi, Kannada, Kashmiri, Malayalam, Marathi, Oriya, Punjabi, Sanskrit , Tamil, Telugu , Urdu and sindhi.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

4 3428
Q:

In the context of memory management, what are placement and replacement algorithms?

Answer

Placement algorithms determine where in available real-memory to load a program. Common methods are first-fit, next-fit, best-fit. Replacement algorithms are used when memory is full, and one process (or part of a process) needs to be swapped out to accommodate a new program. The replacement algorithm determines which are the partitions to be swapped out.

Report Error

View answer Workspace Report Error Discuss

3 3428
Q:

____________has became the second city in the country, and the first in south India, to have a full-fledged Metro rail.

A) Bangalore B) Chennai
C) Kerala D) Hyderabad
 
Answer & Explanation Answer: A) Bangalore

Explanation:

Bengaluru has became the second city in the country, and the first in south India, to have a full-fledged Metro rail in operation following the opening of a final 12-km section of the 42-km first phase of the Metro project. The first phase, comprising an 18-km east-west line and a 24-km north-south line, built at a cost of Rs 13,845 crore, was dedicated to the nation by President Pranab Mukherjee at an event in Bengaluru.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk

4 3428
Q:

As per the newspaper report, the world's second largest generic Pharama company, Sandoz is in talks to take over YK Hamied - promoted domestic pharma company. The company in the question is _______

A) Cipla B) Wockhardt
C) Hamdard D) Sun Pharma
 
Answer & Explanation Answer: A) Cipla

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Business Awareness

13 3427
Q:

15th August is the Independence day of India and

A) South korea B) Indonesia
C) China D) Pakistan
 
Answer & Explanation Answer: A) South korea

Explanation:
Report Error

View Answer Report Error Discuss

7 3426
Q:

What will be output of following c code?

void main()
{
struct bitfield
{
unsigned a:5;
unsigned c:5;
unsigned b:6;

}bit;
char *p;
struct bitfield *ptr,bit1={1,3,3};
p=&bit1;
p++;
clrscr();
printf("%d",*p);
getch();
}

Answer

Output: 12

Explanation:
Binary value of a=1 is 00001 (in 5 bit)
Binary value of b=3 is 00011 (in 5 bit)
Binary value of c=3 is 000011 (in 6 bit)

In memory it is represented as:
Let address of bit1 is 500 which initialize to char pointer p. Since can is one byte data type so p++ will be 501. *p means content of memory location 501 which is (00001100) and its binary equivalent is 12. Hence output is 12.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 3424
Q:

Count function in SQL returns the number of

A) groups B) values or rows
C) columns D) distinct values
 
Answer & Explanation Answer: B) values or rows

Explanation:

Count function in SQL returns the number of values or rows.

Report Error

View Answer Report Error Discuss

3 3424
Q:

The coldest planet in the solar system is ?

A) Venus B) Jupiter
C) Uranus D) Pluto
 
Answer & Explanation Answer: C) Uranus

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

2 3424