Questions

Q:

Which of the following processes is used to remove reducible oxides from the metal?

A) liquation B) cupellation
C) poling D) electro refining
 
Answer & Explanation Answer: C) poling

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

32 7239
Q:

Which Indian athlete was the flag bearer for the Indian contingent in the 22nd Asian Athletics Championship (AAC)-2017 ?

A) Srabani Nanda B) Jitu Rai
C) Tintu Luka D) Dipa Karmakar
 
Answer & Explanation Answer: C) Tintu Luka

Explanation:

The 22nd edition of Asian Athletics Championships (AAC) has started at Kalinga Stadium in Bhubaneswar, Odisha on July 6, 2017 and will continue till July 9, 2017. Athlete Tintu Luka was the flag bearer for the Indian contingent which received a rousing welcome from the crowd. Odia athlete Srabani Nanda had the honour of taking the oath on behalf of athletes at the inaugural ceremony. Over 1,200 athletes and officials from 43 countries in Asia witnessed the largest sporting event. The official mascot of the Championship is “Olly Turtle” that represents the famous Olive Ridley sea turtle.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: AIEEE , Bank Exams

9 7237
Q:

Write a c program for linear search.

Answer

#include<stdio.h>
int main(){

    int a[10],i,n,m,c=0;

    printf("Enter the size of an array: ");
    scanf("%d",&n);

    printf("Enter the elements of the array: ");
    for(i=0;i<=n-1;i++){
         scanf("%d",&a[i]);
    }

    printf("Enter the number to be search: ");
    scanf("%d",&m);
    for(i=0;i<=n-1;i++){
         if(a[i]==m){
             c=1;
             break;
         }
    }
    if(c==0)
         printf("The number is not in the list");
    else
         printf("The number is found");

    return 0;
}

Sample output:
Enter the size of an array: 5
Enter the elements of the array: 4 6 8 0 3
Enter the number to be search: 0
The number is found

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

2 7229
Q:

The court language during the reign of Akbar was _____ ?

A) Urdu B) Persian
C) Arabic D) Hindi
 
Answer & Explanation Answer: B) Persian

Explanation:
Report Error

View Answer Report Error Discuss

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

13 7229
Q:

Entomology is the science that studies

A) Insects B) Behaviour of Human beigns
C) Scientific Names D) Formation of Rocks
 
Answer & Explanation Answer: A) Insects

Explanation:

Entomology is the science branch of Zoology that studies Insects

entomology_is_the_study_of1549696118.jpg image

Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: CAT , Bank Exams , AIEEE
Job Role: Bank Clerk , Analyst , Bank PO

18 7225
Q:

Jalal-ud-din Muhammad Akbar was proclaimed Emperor in

A) 1556 AD B) 1557 AD
C) 1558 AD D) 1560 AD
 
Answer & Explanation Answer: A) 1556 AD

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

9 7220
Q:

The angle between the geographical meridian and magnetic meridian is called as ______.

A) Angle of declination B) Angle of dip
C) Angle of inclination D) Azimuth
 
Answer & Explanation Answer: A) Angle of declination

Explanation:
Report Error

View Answer Report Error Discuss

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

16 7212
Q:

 A benefit of the three-tier architecture is which of the following?

A) New modules can be built to support specific business needs B) Performance improves for compiled SQL statements
C) Results in a thinner client and database server D) All of the above.
 
Answer & Explanation Answer: A) New modules can be built to support specific business needs

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Database

1 7211