Questions

Q:

Patanjali is well known for the compilation of

A) Yoga Sutra B) Panchatantra
C) Brahma Sutra D) Ayurveda
 
Answer & Explanation Answer: A) Yoga Sutra

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

188 53298
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 53297
Q:

Who first imposed Jizya Tax in India?

A) Allaudin khilji B) Aurangzeb
C) Mohammad Bin Qasim D) Qutb-ud-din Aibak
 
Answer & Explanation Answer: D) Qutb-ud-din Aibak

Explanation:

In India, Islamic rulers Qutb-ud-din Aibak imposed jizya on non-Muslims first time which was called kharaj-o-jizya. Jizya was abolished by the Mughal ruler Akbar in the 16th century but was re-introduced by Aurangzeb in the 17th century.

Report Error

View Answer Report Error Discuss

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

150 53186
Q:

Which of the following statements regarding soil is/are correct?

1.Alluvial soils are rich in nitrogen content.

2.Black soils are rich in iron and lime but deficient in nitrogen.

3.Laterite soils are rich in iron and aluminium but deficient in nitrogen and potassium.

 

Select the correct answer using the code given below.

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

Explanation:

Alluvial Soils

The proportion of nitrogen is generally low, but potash, phosphoric acid and alkalis are adequate, while iron oxide and lime vary within a wide range.

Black Soils

Chemically, the black soils are rich in lime, iron, magnesia and alumina. They also contain potash. But they lack in phosphorus, nitrogen and organic matter.

Laterite Soils

With rain, lime and silica are leached away, and soils rich in iron oxide and aluminium compound are left behind.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

1 53153
Q:

'Alpine Plant species', which are critically endangered have been discovered in which state?

 

A) Mizoram B) Gujarat
C) Himachal Pradesh D) Arunachal Pradesh
 
Answer & Explanation Answer: D) Arunachal Pradesh

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

2 53079
Q:

If the velocity of a body is doubled its kinetic energy ________________.

 

A) is also doubled B) becomes half  
C) becomes 1/4 th   D) become 4 times  
 
Answer & Explanation Answer: D) become 4 times  

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

2 53007
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 52693
Q:

A template stores

 

A) Auto text entries B) Graphics, text, styles, macros
C) Customized word command setting D) All of above
 
Answer & Explanation Answer: D) All of above

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

3 52544