Questions

Q:

Which mosque is considered to be the style of Bengal style in Agra?

A) Nagina Masjid B) Moti Masjid  
C) Jama Masjid D) Badshahi Masjid
 
Answer & Explanation Answer: A) Nagina Masjid

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

0 2080
Q:

The federal government debt is equal to the

A) sum of past budget deficits minus the sum of past budget surpluses B) annual difference between federal government tax revenues and outlays
C) obligations of benefits from federal taxes and expenditures D) sum of all annual federal government outlays
 
Answer & Explanation Answer: A) sum of past budget deficits minus the sum of past budget surpluses

Explanation:

The federal government debt is equal to the sum of past budget deficits minus the sum of past budget surpluses.

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 2080
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 2080
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 2080
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 2079
Q:

The Ajanta Cave Paintings are a testimony to the golden age of ____ in India.

A) Buddhism B) Shaivism
C) Jainism D) Vaishnavism
 
Answer & Explanation Answer: A) Buddhism

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

2 2079
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 2079
Q:

The Cabinet Committee on Economic Affairs (CCEA) has approved expansion of "Beti Bachao Beti Padhao" yojana for a pan India coverage from 2017-2018 to _____.

 

A) 2018-2019 B)  2019-2020
C) 2020-2021 D) 2021-2022
 
Answer & Explanation Answer: B)  2019-2020

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

1 2079