Questions

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 32810
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 32790
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 32727
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 32718
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 32712
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 32709