Questions

Q:

The heat from the sun reaches earth through Convection.

A) TRUE B) FALSE
Answer & Explanation Answer: B) FALSE

Explanation:

The given statement, The heat from the sun reaches earth through Convection is FALSE.


 


Heat from the sun actually reaches the earth through Radiation. The process occurs through electromagnetic radiation, specifically, in which molecules are warmed when the heat reaches them, and these molecules then warm other molecules touching them, which continues until we feel the sun's heat.

Report Error

View Answer Workspace Report Error Discuss

Subject: Physics
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO , IT Trainer

8 7226
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 7224
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 7222
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 7219
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 7206
Q:

What kinds of medical procedures have you assisted with?

Answer

The intention of the interviewer by asking this question is to know how much experience candidates have as a medical assistant. They may have just finished their training and only have internship experience, so will need to decide if they are a good fit for you in other ways.


 


In your answer must be included and show your


1. Medical assistant experience
2. Communication skills
3. Fit for your company


 


Sample Answer Example:


I have served as an intern as past of my medical assistant program. I just completed my program in June, and at the conclusion of my year of training, I was placed in a pediatrician's office as an intern. I shadowed and worked with the other medical assistants in the office, and I can say my time there really reaffirmed my belief that this is the right profession for me.

Report Error

View answer Workspace Report Error Discuss

5 7204
Q:

Fifth generation computer is also known as

A) Very Large Scale Integration (VLSI) B) Knowledge information processing system
C) Both A & B D) None of the above
 
Answer & Explanation Answer: B) Knowledge information processing system

Explanation:
Report Error

View Answer Report Error Discuss

13 7203
Q:

Major coalfields of India are located in the river valley of

A) Damodar B) Godavari
C) Mahanadi D) Wardha
 
Answer & Explanation Answer: A) Damodar

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

4 7202