Questions

Q:

Who is the author of the book A Journey ?

A) Tony Blair B) Bikram seth
C) Janardhan takur D) harisen
 
Answer & Explanation Answer: A) Tony Blair

Explanation:

Author of the book A journey  is Tony Blair

Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

1 3150
Q:

Mass number is always equal to ______.

 

A) number of protons B) number of neutrons
C) sum of number of protons and number of electrons D) sum of number of protons and number of neutrons
 
Answer & Explanation Answer: D) sum of number of protons and number of neutrons

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

1 3150
Q:

The Indian to beat the computers in mathematical wizardry is

A) Shakuntala Devi B) Raja Ramanna
C) Rina Panigrahi D) Ramanujam
 
Answer & Explanation Answer: A) Shakuntala Devi

Explanation:
Report Error

View Answer Report Error Discuss

3 3149
Q:

Modem is used mostly for ?

A) A modern empty memory modules B) Connecting to internet
C) Mostly for file system D) All the above
 
Answer & Explanation Answer: B) Connecting to internet

Explanation:

A modem is nothing but short for Modulator and Demodulator. It is used mostly for connecting to the internet.

A modem is a device or program that enables a computer to transmit data over, for example, telephone or cable lines. Computer information is stored digitally, whereas information transmitted over telephone lines is transmitted in the form of analog waves.

 

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: AIEEE , Bank Exams , GATE
Job Role: Analyst , Bank Clerk , Bank PO

4 3148
Q:

Who is representing India at the 2017 Little Miss Universe competition  ?

A) Vinita Sayal B) Nandita Das
C) Rajeshwari Dyal D) Padmalaya Nanda
 
Answer & Explanation Answer: D) Padmalaya Nanda

Explanation:

Padmalaya Nanda from Odisha will represent India at the 2017 Little Miss Universe beauty pageant competition, which is scheduled to be held in Georgia, United States from May 31. She will compete against 15 other contestants from around the world for the title of Little Miss Universe. Beside this, she will also lead India in the 2017 Little Miss World contest in Greece.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

3 3146
Q:

Who is author of the book 'Preparing for the Twenty First Century '

A) V.S.Naipaul B) John Ruskin
C) Paul Kennedy D) Henry Kissinger
 
Answer & Explanation Answer: C) Paul Kennedy

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

1 3146
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 3146
Q:

 The ODBC Level 1 API contains which of the following functions?

A) Browse possible connections and data sources only B) Connect to data sources with driver-specific information only
C) Process a scrollable cursor only D) Both 1 and 3 above are in the OBDC Level 1 API.
 
Answer & Explanation Answer: B) Connect to data sources with driver-specific information only

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Database

1 3143