Questions

Q:

In the following question, a sentence has been given in Active/Passive voice. Out of the four alternatives suggested, select the one which best
expresses the same sentence in Passive/Active voice.
I have poured the tea.

A) Pouring of the tea by me has been done. B) The tea is being poured by me.
C) The tea has been poured by me. D) The tea pouring was done by myself.
 
Answer & Explanation Answer: C) The tea has been poured by me.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English

3 2084
Q:

The most important determinant of consumer spending is

A) consumer expectations B) the level of income
C) the level of household borrowing D) the stock of wealth
 
Answer & Explanation Answer: B) the level of income

Explanation:

The most important determinant of consumer spending is the level of income.

Report Error

View Answer Report Error Discuss

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

1 2084
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 2084
Q:

The First battle of which war was the Battle of Alma?

A) Creek war B) Crimean war
C) Korean war D) Chinese war
 
Answer & Explanation Answer: B) Crimean war

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World History

2 2084
Q:

Southerners who were for redemption wanted which of the following?

A) remove blacks from politics B) remove republicans from politics
C) hold political power D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2084
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 2083
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 2083
Q:

Which one of the following crops is not cultivated in Karewas, the lacustrine deposit's of sand, clay, loam, silt and boulders?

 

A) Saffron B) Almond
C) Walnut D) Ling nut
 
Answer & Explanation Answer: D) Ling nut

Explanation:

Karewa sediments are treasures of many human civilizations and habitations. In fact, the agriculture of the valley dominantly survives and sustains on Karewa soils. The world famous saffron from Pampore and apples from Shopian are best examples.The famous almond orchids are best grown in the soils of karewas.

The karewas are mainly devoted to the cultivation of saffron, almond, walnut, apple and orchards.Ling nuts (singharas) grow throughout the East of India: West Bengal, Jharkhand, and Bihar are examples of such regions.

Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

0 2083