Questions

Q:

Which State is called the ' Cradle of Buddhism '?

A) Sikkim B) Bihar
C) Uttar Pradesh D) Madhya Pradesh
 
Answer & Explanation Answer: B) Bihar

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

171 40923
Q:

main()

{

char s[ ] = "man";

int i;

for( i=0; s[ i ]; i++)

printf( "n%c%c%c%c", s[ i ], *(s+i), *(i+s), i[s] );

}

A) mmmm aaaa nnnn B) aaaa mmmm nnnn
C) nnnn aaaa mmmm D) None
 
Answer & Explanation Answer: A) mmmm aaaa nnnn

Explanation:

s[i], *(i+s), *(s+i), i[s] are all different ways of expressing the same idea.Generally array name is the base address for that array. Here s is the base address. i is the index number/displacement from the base address. So, indirecting it with * is same as s[i]. i[s] may be surprising. But in the case of C it is same as s[i].

Report Error

View Answer Report Error Discuss

Filed Under: Programming

30 40720
Q:

Which among the following is NOT a member of any of the two Houses of the Indian Parliament?

 

I. Prime Minister of India

II. Finance Minister of India

III. President of India

 

A) Only I B) Only II
C) Only III D) Both II and III
 
Answer & Explanation Answer: C) Only III

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

0 40712
Q:

Which one of the following statements would be INCORRECT to use?

 

A) An atom of a compound B) A mole of an element
C) A mole of a compound D) An atom of an element
 
Answer & Explanation Answer: A) An atom of a compound

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

0 40630
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

8 40609
Q:

Factors that may influence enzyme activity?

 

A) pH B) Substrate concentration
C) Temperature D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

0 40608
Q:

What will be the acceleration produced when a force of 21 N is applied on an object of mass 3 kg?

 

A) 0.7 m/s2 B) 7 m/s2
C) 0.007 m/s2 D) 70 m/s2
 
Answer & Explanation Answer: B) 7 m/s2

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: AIEEE , Bank Exams

1 40502
Q:

Elements having same atomic numbers but different mass number are called ______.

 

 

A) isotones B) Isotopes
C) isomopes D) isobar
 
Answer & Explanation Answer: B) Isotopes

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

0 40475