Questions

Q:

In the 'Index of Eight core Industries'

which one of the following is given the highest weight?

A) Coal Produciton B) Electricity Generation
C) Fertilizer Production D) Steel Production
 
Answer & Explanation Answer: B) Electricity Generation

Explanation:

The Eight Core Industries comprise nearly 38 % of the weight of items included in the Index of Industrial Production (IIP).  Electricity generation (weight: 10.32%)

Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

14 54585
Q:

Buddha was born in _________.

 

A) Vaishali B) Lumbini
C) Kapilavastu D) Patliputra
 
Answer & Explanation Answer: B) Lumbini

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

10 54556
Q:

What is the output of this C code?

   #include <stdio.h>
    int main()
    {
        int a = 1, b = 1;
        switch (a)
        {
        case a*b:
            printf("yes ");
        case a-b:
            printf("non");
            break;
        }
    }

A) yes B) no
C) Compile time error D) yes no
 
Answer & Explanation Answer: C) Compile time error

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Programming

23 54290
Q:

Upanishads are books on

Upanishads_are_books_on1541400568.jpg image

A) Religion B) Yoga
C) Law D) Philosophy
 
Answer & Explanation Answer: D) Philosophy

Explanation:

The Upanishads are a part of the Vedas and are ancient Sanskrit texts that contain some of the central philosophical concepts and ideas of Hinduism, some of which are shared with Buddhism, and Jainism.

 

 

 

The Upanishads are commonly referred to as Vedanta in the history of India.

Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

177 54220
Q:

Which of the statements given below are correct?

 

A) Rafael Nadal won the Tennis 2017 Wimbledon Championships Men's Singles.


B) Aryan Tari won the 2017 World Junior Chess Championship.


C) Viktor Axelsen won the Men's Singles Badminton 2017 BWF World Championships.

 

A) Only A B) Only B
C) Both B and C D) None of these
 
Answer & Explanation Answer: C) Both B and C

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

7 54024
Q:

Which team Won the 2017 Santosh Trophy, the final of which was held in Bambolim, Goa.

 

A) Services B) Kerala
C) West Bengal D) Goa
 
Answer & Explanation Answer: C) West Bengal

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

6 53921
Q:

Arrange the following Commissions chronologically on the basis of their date of setting :

1.The   Second   Administrative   Reforms Commission

2.The Eleventh Finance Commission

3.Punchhi Commission

4.Sarkaria Commission

Select  the  correct  answer  using  the  code given below.

A) 4, 2, 1, 3 B) 4, 3, 2, 1
C) 3, 2,4, 1 D) 3, 4, 1, 2
 
Answer & Explanation Answer: A) 4, 2, 1, 3

Explanation:

Sarkaria commission-1983, Punchhi commission-2007, Eleventh     Financial     commission 2000-2005,  Second  Administrative Reform commission –2005

Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

0 53886
Q:

What will be output of following c code?

#include <stdio.h>
int main()

{
    int x=123;
    int i={
         printf("c" "++")
    };
    for(x=0;x<=i;x++){
         printf("%x ",x);
    }
    return 0;

}

Answer

Output: c++0 1 2 3

Explanation: First printf function will print: c++ and return 3 to variable i.For loop will execute three time and printf function will print 0, 1, 2 respectively.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

96 53839