Questions

Q:

By default, a real number is treated as a

A) Integer B) Float
C) Double D) Long double
 
Answer & Explanation Answer: B) Float

Explanation:

By default, a real number is treated as a float variable.

Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

29 14198
Q:

In known elements, the maximum number is of

A) Metals B) Non Metals
C) Metalloids D) None of these
 
Answer & Explanation Answer: A) Metals

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

56 14183
Q:

In MS-Word, for what does ruler help?

A) to set indents B) to change page margins
C) to set tabs D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:

In_MS-Word,_for_what_does_ruler_help1554294391.jpg image 

 

In MS-Word, the Ruler function helps align the text, graphic, tables or other elements in your document.

 

In_MS-Word,_for_what_does_ruler_help1558590348.png image 

Report Error

View Answer Report Error Discuss

30 14176
Q:

Who wrote a book describing the theory of economic drain of India during British rule

A) Late lajpat rai B) Mahatma Gandhi
C) Jawaharlal nehru D) Dadabhai naoroji
 
Answer & Explanation Answer: D) Dadabhai naoroji

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

23 14175
Q:

What is page cannibalizing?

Answer

Page swapping or page replacements are called page cannibalizing.

Report Error

View answer Workspace Report Error Discuss

22 14174
Q:

Rearrange the parts of the sentence in correct order.

An engineer building a bridge

P-­find easy to comprehend
Q­-picks the best plan
R-­and not the one that motorists

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

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 14169
Q:

A radioactive substance has a half life of four months, three-fourth of the substance would decay in

A) 3 months B) 4 months
C) 8 months D) 12 months
 
Answer & Explanation Answer: C) 8 months

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

80 14167
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 14164