Questions

Q:

Which among the following have a 'mixed heart'?

 

A) Reptiles B) Nematodes
C) Birds D) Fishes
 
Answer & Explanation Answer: A) Reptiles

Explanation:

Mixed heart means the heart in which the oxygenated and the deoxygenated blood is mixed. Reptiles and amphibians have mixed heart.

Report Error

View Answer Report Error Discuss

Filed Under: Animals and Birds
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

28 32815
Q:

Who called Indian Federalism as the Co-operative Federalism

A) G.Austin B) K.C.Wheare
C) Sir Ivor Jennings D) D.D.Basu
 
Answer & Explanation Answer: A) G.Austin

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

74 32807
Q:

What is the output of this C code?

       #include <stdio.h>
        void main()
        {
            int x = 1, z = 3;
            int y = x << 3;
            printf( "%dn", y );
        }

A) -2147483648 B) -1
C) Run time error D) 8
 
Answer & Explanation Answer: D) 8

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Programming

2 32799
Q:

Which statement about PFD's is true?

A) PFDs are difficult to put on in the water B) Use gasoline to clean a PFD coated with oil or grease
C) PFDs do not float well in shallow water D) Children's PFDs should fit loosely
 
Answer & Explanation Answer: A) PFDs are difficult to put on in the water

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk

32 32783
Q:

During the reign of which Mughal ruler was the 'Jizya' re-imposed?

 

A) Akbar B) Aurangzeb
C) Jahangir D) Humayun
 
Answer & Explanation Answer: B) Aurangzeb

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

1 32743
Q:

Which of the following is NOT a Nuclear Power Centre?

 

A) Narora B) Kakrapara
C) Chamera D) Kota  
 
Answer & Explanation Answer: C) Chamera

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

2 32734
Q:

Who of the following leaders is NOT associated with Champaran Satyagraha?

 

A) Anugraha Narain Sinha B) J.B. Kripalani
C) Braj Kishore Prasad D) Sardar Patel
 
Answer & Explanation Answer: D) Sardar Patel

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

2 32718
Q:

What will be output of following program?


#include <stdio.h>
int main()

{
   void (*p)();
   int (*q)();
   int (*r)();
   p = clrscr;
   q = getch;
   r = puts;
  (*p)();
  (*r)("www.sawaal.com");
  (*q)();
  return 0;
}

A) NULL B) www.sawaal.com
C) Compilation error D) None of above
 
Answer & Explanation Answer: B) www.sawaal.com

Explanation:

p is pointer to function whose parameter is void and return type is also void. r and q is pointer to function whose parameter is void and return type is int . So they can hold the address of such function.

Report Error

View Answer Report Error Discuss

Filed Under: Programming

3 32714