Questions

Q:

Have you ever performed ECG and what it requires?

Answer

By asking this the interviewer wants to know that do you have any touch with ECG or not.


 


Sample Answer :


ECG is nothing but a Electrocardiogram. Yes, i performed ECG test to some patients when i worked as an intern at a named cardiologist.


ECG procedure, or an ECG scan, an ECG test measures the electrical activity of the heart to ensure that it is functioning properly. To perform an electrocardiogram an ECG monitor is required. An ECG monitor, device or machine is required to perform an electrocardiogram and provide insight into whether your heart is working normally or not.

Report Error

View answer Workspace Report Error Discuss

5 7215
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 7212
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 7208
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 7198
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 7197
Q:

Who was among the famous Roman poets ?

A) Tacitus B) Plinky
C) Virgil D) Marcus
 
Answer & Explanation Answer: C) Virgil

Explanation:

Virgil and Horace were the famous Roman poets.

Tacitus and Plinky were the famous Roman historians.

Marcus was a Roman Philosopher.

Report Error

View Answer Report Error Discuss

Filed Under: World History

5 7186
Q:

The prime meridian passes through

A) Paris B) Greenwich
C) New York D) Delhi
 
Answer & Explanation Answer: B) Greenwich

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

13 7184
Q:

Course materials are sent to students by a distance teaching institution. The probability that they will send a wrong programme’s study material is 1/5. There is a probability of 3/4 that the package is damaged in transit, and there is a probability of 1/3 that there is a short shipment. What is the probability that the complete material for the course arrives without any damage in transit? 

A) 4/5 B) 2/3
C) 1/2 D) 2/15
 
Answer & Explanation Answer: D) 2/15

Explanation:

Probability of sending the correct material is 4/5

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Probability of the material not being damaged in transit is 1/4

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Probability that there is no short shipment = 2/3

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

∴ Required probability =4/5 x 1/4 x 2/3 = 2/15

Report Error

View Answer Report Error Discuss

2 7183