Questions

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 32759
Q:

 On 2 January 2018, Parliament passed NABARD (Amendment) Bill, 2017 which seeks to amend ______.

 

A) NABARD Act, 1975 B) NABARD Act, 1961
C) NABARD Act, 1981 D) NABARD Act, 1991
 
Answer & Explanation Answer: C) NABARD Act, 1981

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

0 32717
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 32711
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 32681
Q:

Match the characteristics with their market structure:

(a) Differentiated products, but close substitutes for consumers so their demand curves are elastic.
(b) Firm will tend to set output so that it earns maximum profits.

A) (a) Pure competition, (b) Pure Monopoly B) (a) Monopolistic competition, (b) Oligopoly
C) (a) Oligopoly, (b) Pure Monopoly D) (a) Monopolistic competition, (b) Pure Monopoly
 
Answer & Explanation Answer: D) (a) Monopolistic competition, (b) Pure Monopoly

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: Bank Exams

1 32659
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 32624
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 32608
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 32605