Questions

Q:

If you look into a mirror and find that the image (your reflection) is smaller than you, then the type of the mirror is:

A) concave mirror B) convex mirror
C) plano-concave mirror D) plane mirror
 
Answer & Explanation Answer: B) convex mirror

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

2 2083
Q:

Electric power is measured in units of

A) Volt B) Joule
C) Watt D) Ampere
 
Answer & Explanation Answer: C) Watt

Explanation:

Electric power is the rate per unit time, at which electrical energy is transferred by an electric circuit. The power of electricity is measured in watts and kilo watts.

1 Watt is the unit of electrical power equal to one ampere under the pressure of one volt.

Report Error

View Answer Report Error Discuss

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

6 2083
Q:

Where is the RAM located in a computer?

A) Monitor B) Processor
C) Mother board D) None of the above
 
Answer & Explanation Answer: C) Mother board

Explanation:

On the right corner of the mother board RAM is located in a computer.

Report Error

View Answer Report Error Discuss

3 2083
Q:

Molten rock inside the earth is called

A) Mantle B) Core
C) Magma D) Lava
 
Answer & Explanation Answer: C) Magma

Explanation:

Molten rock inside the earth is called Magma.

Report Error

View Answer Report Error Discuss

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

5 2082
Q:

Which among the following is not a dwarf planet?

A) Mars B) Makemake
C) Pluto D) Eris
 
Answer & Explanation Answer: A) Mars

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: AIEEE , Bank Exams , CAT

1 2082
Q:

Who invented ECG?

A) Hans Berger B) Einthoven
C) G. Bist D) None of the above
 
Answer & Explanation Answer: B) Einthoven

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Inventions
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

4 2082
Q:

Swap two variables without using third variable.

Answer

#include<stdio.h>
int main(){
    int a=5,b=10;
    a=b+a;
    b=a-b;
    a=a-b;
    printf("a= %d  b=  %d",a,b);
}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2082
Q:

In loading programs into memory, what is the difference between load-time dynamic linking and run-time dynamic linking?

Answer

For load-time dynamic linking: Load module to be loaded is read into memory. Any reference to a target external module causes that module to be loaded and the references are updated to a relative address from the start base address of the application module.


With run-time dynamic loading: Some of the linking is postponed until actual reference during execution. Then the correct module is loaded and linked.

Report Error

View answer Workspace Report Error Discuss

0 2082