Questions

Q:

Which one of the following mixture is homogeneous

A) starch and sugar B) methanol and water
C) graphite and charcoal D) calcium carbonate and calcium bicarbonate
 
Answer & Explanation Answer: B) methanol and water

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

76 19810
Q:

What is the output of this C code?

        #include <stdio.h>
        void main()
        {
            int x = 97;
            char y = x;
            printf("%cn", y);
        }

A) a B) 97
C) Run time error D) None
 
Answer & Explanation Answer: A) a

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Programming

1 19787
Q:

Find the odd word/letters/number from the given alternatives.

(A) BCE (B) WXZ (C) MNP (D) GHK

A) A B) B
C) C D) D
 
Answer & Explanation Answer: D) D

Explanation:
Report Error

View Answer Report Error Discuss

0 19775
Q:

Which of the statements given below are correct?

 

A) In 2017, Virat Kohli captained the IPL team Rising Pune Supergiant.

B) In 2017 Pro Kabaddi League, Surjeet Singh played for Bengal Warriors.

C) United Kingdom hosted the Table Tennis 2017 ITTF Women's World Cup.

 

A) Only B B) Both A and C
C) A, B and C D) No option is correct
 
Answer & Explanation Answer: A) Only B

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

3 19771
Q:

Who is the author of "Unhappy India"?

A) Vikram Seth B) Lala Lajpath Roy
C) Chethan Bhagath D) None
 
Answer & Explanation Answer: B) Lala Lajpath Roy

Explanation:

Lala Lajpath Roy is the author of Unhappy India

Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

91 19742
Q:

Which article of the Indian Constitution provides for the institution of Panchayati Raj

A) Article 36 B) Article 39
C) Article 40 D) Article 48
 
Answer & Explanation Answer: C) Article 40

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

50 19722
Q:

The Computer size was very large in

A) Fourth Generation B) Third Generation
C) Second Generation D) First Generation
 
Answer & Explanation Answer: D) First Generation

Explanation:

The First Generation Computers size was very large. 

 

Since the First generation computers used 1000s of vacuum tubes that required lot of space made them gigantic in size. Single transistor could replace 1000 vacuum tubes and a single IC chip replaced 1000s of transistors made computers smaller and more speedy.

 

It is obvious that computers developed with more power, reliability, speed and smaller sizes due to the enhancement of technology.

Report Error

View Answer Report Error Discuss

34 19709
Q:

If the following program (myprog) is run from the command line as 

myprog 1 2 3 

what would be the output?

main(int argc, char *argv[])

{

    int i, j = 0;

    for (i = 0; i < argc ; i++)

           j = j + atoi ( argv[i]);

    printf ("%d", j);

}

A) 123 B) 6
C) Error D) "123"
 
Answer & Explanation Answer: B) 6

Explanation:

When atoi() tries to convert argv[0] to a number it cannot do so (argv[0] being a file name) and hence returns a zero.

Report Error

View Answer Report Error Discuss

Filed Under: Programming

2 19709