Questions

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 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
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 2081
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 2081
Q:

Which organization is an interest group?

A) The National Rifle Association B) The National Right to Life organization
C) The National Organization for Women D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:

An interest group is an organization whose members share common concerns and try to influence government policies affecting those concerns. Interest groups are also known as lobbies.

Report Error

View Answer Report Error Discuss

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

2 2081
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 2081
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 express the same sentence in Indirect/Direct speech.

Vicky said, "I clean my teeth daily."

A) Vicky said he cleans his teeth daily. B) Vicky says he cleans his teeth daily.
C) Vicky said that he cleaned his teeth daily. D) Vicky said that he used to clean his teeth daily.
 
Answer & Explanation Answer: C) Vicky said that he cleaned his teeth daily.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

1 2081