Questions

Q:

Select the synonym of

dire

A) calm B) mild
C) critical D) trivial
 
Answer & Explanation Answer: C) critical

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 14019
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 14013
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:

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 14010
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 14006
Q:

What would be the output of the following program ?

main()

{

     const int x = 5; 

      int *ptrx;

      ptrx = &x;

      *ptr = 10;

       printf ("%d", x);

}

A) 5 B) 10
C) Error D) Garbage value
 
Answer & Explanation Answer: B) 10

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Programming

2 13998
Q:

What about Earth allows it to maintain bodies of water?

A) mountains B) tides
C) moderate tempatures D) comet crashes
 
Answer & Explanation Answer: C) moderate tempatures

Explanation:

The moderate temperatures allow Earth to maintain bodies of water into its normal state.

Changes in the bodies of water in terms of volume and structure would change due to the change in temperature. 

Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

13 13993