Questions

Q:

The concept of biosphere reserve was evolved by

 

 

A) IUCN B) UNESCO
C) Zoological Survey of India D) Government of India
 
Answer & Explanation Answer: B) UNESCO

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: Bank Exams

1 14038
Q:

A market situation when firms sell similar but not identical products is termed as

 

A) perfect competition B) imperfect competition
C) monopolistic competition D) oligopoly
 
Answer & Explanation Answer: C) monopolistic competition

Explanation:

Monopolistic competition is a type of imperfect competition such that many producers sell products that are differentiated from one another (e.g. by branding or quality) and hence are not perfect substitutes.

In other words, large sellers selling the products that are similar, but not identical and compete with each other on other factors besides price.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: Bank Exams

0 14037
Q:

What will be output when you will execute following c code?

#include <stdio.h>
enum actor

{
    SeanPenn=5,
    AlPacino=-2,
    GaryOldman,
    EdNorton
};
void main()

{
     enum actor a=0;
     switch(a)

      {
         case SeanPenn:  printf("Kevin Spacey");
                         break;
         case AlPacino:  printf("Paul Giamatti");
                         break;
         case GaryOldman:printf("Donald Shuterland");
                         break;
         case EdNorton:  printf("Johnny Depp");
      } 
}

A) Kevin Spacey B) Paul Giamatti
C) Donald Shuterland D) Johnny Depp
 
Answer & Explanation Answer: D) Johnny Depp

Explanation:

Default value of enum constant
GaryOldman = -2 +1 = -1
And default value of enum constant
EdNorton = -1 + 1 = 0
Note: Case expression can be enum constant.

Report Error

View Answer Report Error Discuss

Filed Under: Programming

1 14028
Q:

Film and TV institute of india is located at

A) Pune (Maharashtra) B) Rajkot (Gujarat)
C) Pimpri (Maharashtra) D) Perambur (Tamilnadu)
 
Answer & Explanation Answer: A) Pune (Maharashtra)

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

72 14018
Q:

What is the output of this C code?

        #include <stdio.h>
        void main()
        {
            int x = 97;
            char y = x;
            printf("%cn", y);
        }

A) a B) 97
C) Run time error D) None
 
Answer & Explanation Answer: A) a

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Programming

1 14015
Q:

Rearrange the parts of the sentence in correct order.

I am raising these questions

P-­are early warning signs
Q­-of a deeper crisis
R­-because such events

 

A) RQP B) PQR
C) RPQ D) QRP
 
Answer & Explanation Answer: C) RPQ

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 14014
Q:

The International township built near Pondicherry in India in Collaboration with UNESCO is called

A) Broadway B) Gayaville
C) Auroville D) Elbaville
 
Answer & Explanation Answer: C) Auroville

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

34 14011
Q:

Which is released during the formation of a peptide bond?

 

 

A) an amino group B) a five-carbon sugar
C) both 1 and 2 D) a water molecule
 
Answer & Explanation Answer: D) a water molecule

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

1 14005