Questions

Q:

In the following question, a sentence has been given in Direct/Indirect speech. Out of the four alternatives suggested, select the one which best expresses the same sentence in Indirect/Direct speech.

The teacher said, "The Earth revolves around the sun."

A) The teacher said that the Earth is being revolving around the sun. B) The teacher said that the Earth revolves around the sun.
C) The teacher said that the Earth revolved around the sun. D) The teacher said that the Earth had been revolving around the sun.
 
Answer & Explanation Answer: B) The teacher said that the Earth revolves around the sun.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2104
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 2104
Q:

Atmospheric conditions are well governed by humidity. Which one among the following may best define humidity?

A) Form of suspended water droplets caused bycondensation B) Deposition if atmospheric moisture
C) Almost microscopically small drops of water condensed from and suspended in air D) The moisture content of the atmosphere at a particular time and place
 
Answer & Explanation Answer: D) The moisture content of the atmosphere at a particular time and place

Explanation:

"Humidity" refers to the presence of water vapor in the atmosphere. It is measured in either relative terms (relative humidity) or absolute terms (dewpoint temperature).Humidity indicates the likelihood for precipitation, dew, or fog to be present.

Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: Bank Exams

1 2104
Q:

Read the passage carefully and choose the best answer to each question out of the four alternatives and click the button corresponding to it.


Ants have been living on the earth for more than 100 million years and can be found almost anywhere on the planet. It is estimated that there are about 20000 different species of ants. For this reason ants have been called Earth's most successful species. If you watch ants for any length of time you will see that they really do communicate with each other and very effectively too. Ants communicate by touching each other with their antennae. Ants also use chemicals called pheromones to leave scent trails for other ants to follow. Ants build many different types of homes. Many ants build simple little mounds out of dirt or sand. Other ants use small sticks mixed with dirt and sand to make a stronger mound that offers protection from rain. Western Harvester ants make a small mound on top, but then tunnels up to 15 feet straight down to hibernate during winter. Ant mounds consist of many chambers connected by tunnels. Different chambers are used for nurseries, food storage, and resting places for the worker ants. Some ants live in wood like termites. Army ants don't make a home at all but travel in a large groups searching for food. Ants are social insects which means they live in large colonies or groups. Some colonies consist of millions of ants. There are three types of ants in each species, the queen, the sterile female workers and males. The male ants only serve one purpose, to mate with future queen ants and do not live very long. The queen grows to adulthood, mates, and then spends rest of her life laying eggs. A colony may have only one queen, or there may be many queens depending on the species. Ants go through four stages of development: egg, larva, pupa and adult.

 

Antennae are used by ants to

A) leave a trail for other ants B) communicate
C) find direction D)  touch and feel each other
 
Answer & Explanation Answer: B) communicate

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2104
Q:

In the following question, out of the four alternatives, choose the word which is opposite in meaning to the given word and click the button corresponding to it.

RUGGED

A) HARD B) STURDY
C) SMOOTH D) ROUGH
 
Answer & Explanation Answer: C) SMOOTH

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2103
Q:

In the following question, four words are given out of which one word is correctly spelt. Select the correctly spelt word.

A) poseses B) posesses
C) possesses D) posseses
 
Answer & Explanation Answer: C) possesses

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2103
Q:

Why we use do-while loop in c?

Answer

It is also called as post tested loop. It is used when it is necessary to execute the loop at least one time. Syntax:

do {
Loop body
} while (Expression);

Example:

int main(){
    int num,i=0;  
    do{
         printf("To enter press 1\n");
         printf("To exit press  2");
         scanf("%d",&num);
         ++i;
         switch(num){
             case 1:printf("You are welcome\n");break;
             default : exit(0);
         }
    }
    while(i<=10);
    return 0;
}

Output: 3 3 4 4

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2103
Q:

Explain compiler?

Answer

compiler is used to translate the high-level language program into machine code at a time. It doesn't require special instruction to store in a memory, it stores automatically. the execution time is less compared interpreter.


A compiler is a program that translates a source program written in some high-level programming langualge (such as Java) into machine code for some computer architecture (such as the Inter Pentium archiecture).

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2103