Questions

Q:

The first Olympiad was held in Greece in the year

Answer

776 BC

Report Error

View answer Workspace Report Error Discuss

Subject: World History

2 2081
Q:

Other things equal an improvement in productivity will

A) shift the aggregate demand curve to the left B) shift the aggregate supply curve to the right
C) increase the equilibrium price level D) shift the aggregate supply curve to the left
 
Answer & Explanation Answer: B) shift the aggregate supply curve to the right

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2081
Q:

What would be the output of the following program, if the array beigns at address 65486?

main()

{

    int arr[] = {12,14,15,23,45};

    printf ("%u %u", arr, &arr);

}

Answer

65486  65486

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2081
Q:

What is the percentage of oxygen in Al2(SO4)3?

A) 57.7% B) 56.1%
C) 53.1% D) 52.6%
 
Answer & Explanation Answer: B) 56.1%

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

1 2081
Q:

An atom that loses or gains electrons is called

A) Proton B) Ion
C) Isotope D) Neutron
 
Answer & Explanation Answer: B) Ion

Explanation:

An atom that loses or gains electrons is called as ion. Gaining of electron is negative charge and is called as Anion and lossing of eectron is called Cation.

Report Error

View Answer Report Error Discuss

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

2 2080
Q:

Siachen is a

A) frontier zone between India and Myanmar B) desert frontier zone between India and Pakistan
C) glacier frontier zone between India and Pakistan D) frontier zone between China and India
 
Answer & Explanation Answer: C) glacier frontier zone between India and Pakistan

Explanation:

Siachen is a glacier frontier zone between India and Pakistan.

Siachen_is_a1554289418.jpg image

Report Error

View Answer Report Error Discuss

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

4 2080
Q:

C program to find whether a number is palindrome or not.

Answer

 #include<stdio.h>
int main(){
    int num,r,sum=0,temp;

    printf("Enter a number: ");
    scanf("%d",&num);

    temp=num;
    while(num){
         r=num%10;
         num=num/10;
         sum=sum*10+r;
    }
    if(temp==sum)
         printf("%d is a palindrome",temp);
    else
         printf("%d is not a palindrome",temp);

    return 0;
}

Sample output:
Enter a number: 131
131 is a palindrome

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2080
Q:

An improvement in production technology will

A) shift the supply curve to the left B) shift the demand curve to the left
C) shift the supply curve to the right D) increase equilibrium price
 
Answer & Explanation Answer: C) shift the supply curve to the right

Explanation:

An improvement in production technology will shift the supply curve to the right.

Report Error

View Answer Report Error Discuss

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

2 2080