Questions

Q:

Angioplasty is the most typical treatment for arteriosclerosis.

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

Explanation:

Angioplasty, also known as balloon angioplasty or PTA, is a minimally invasive, endovascular procedure to widen narrowed or obstructed arteries or veins, typically to treat arterial atherosclerosis.


 


Hence, the given statement that Angioplasty is the most typical treatment for arteriosclerosis is FALSE.

Report Error

View Answer Workspace Report Error Discuss

Subject: Biology
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

6 7235
Q:

Which among the following is the largest museum in India

A) Salarjung Museum B) Indian Museum
C) SubhashChandraBose Museum D) Tagore museum
 
Answer & Explanation Answer: B) Indian Museum

Explanation:

Indian Museum is the largest museum in India

Report Error

View Answer Report Error Discuss

Filed Under: Indian History

3 7235
Q:

The brain of any computer system is

A) CPU B) Memory
C) Control D) ALU
 
Answer & Explanation Answer: A) CPU

Explanation:

Central Processing Unit (CPU) is the brain of any computer system.

Report Error

View Answer Report Error Discuss

19 7232
Q:

Who composed the National Anthem ' Jana Gana Mana '

A) Rabindranath Tagore B) R.D.Dinkar
C) Bakim Chandra Chatterjee D) Sarojini Naidu
 
Answer & Explanation Answer: A) Rabindranath Tagore

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

10 7214
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 7206
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 7197
Q:

Which country going to introduce its own Encyclopaedia by 2018  ?

A) Iran B) India
C) Iraq D) China
 
Answer & Explanation Answer: D) China

Explanation:
Report Error

View Answer Report Error Discuss

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

11 7195
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 7195