Questions

Q:

A myocardial infarction is a heart attack.

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

Explanation:

True, the given statement that a myocardial infarction is a heart attack.


heart-attack-_myocardial_infarction1532070967.jpg image

Report Error

View Answer Workspace Report Error Discuss

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

2 2875
Q:

Write a c program for insertion sort.

Answer

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

  int i,j,s,temp,a[20];

  printf("Enter total elements: ");
  scanf("%d",&s);

  printf("Enter %d elements: ",s);
  for(i=0;i<s;i++)
      scanf("%d",&a[i]);

  for(i=1;i<s;i++){
      temp=a[i];
      j=i-1;
      while((temp<a[j])&&(j>=0)){
      a[j+1]=a[j];
          j=j-1;
      }
      a[j+1]=temp;
  }

  printf("After sorting: ");
  for(i=0;i<s;i++)
      printf(" %d",a[i]);

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 3 7 9 0 2
After sorting:  0 2 3 7 9

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2874
Q:

What is the world’s oldest surviving republic?

Answer

San Marino

Report Error

View answer Workspace Report Error Discuss

Subject: World History

5 2874
Q:

Which among the following countries , occupies the largest chunk of the Sunderbans Delta?

A) Bangladesh B) Burma
C) India D) Thailand
 
Answer & Explanation Answer: A) Bangladesh

Explanation:

Sunderbans is the name given to the dense impenetrable  tidal/ mangrove forest of Ganges-Brahmaputra delta because of abundant sundari trees found here.

Report Error

View Answer Report Error Discuss

Filed Under: World Geography

1 2874
Q:

5 Digits Number?

What 5-digit number has the following features:

If we put the numeral 1 at the beginning, we get a number three times smaller than if we put the numeral 1 at the end of the number.

Answer

We can make an equation:


3(100000 + x) = 10x+1


(Why? Well, adding 100000 puts a 1 at the front of a five-digit number, and multiplying by 10 and adding 1 puts a 1 at the end of a number)


Solving this gives:


10x+1 = 3(100000 + x)
10x+1 = 300000 + 3x
10x = 299999 + 3x
7x = 299999
x = 299999/7 = 42857


The answer is 42857 (142857 is three times smaller than 428571).

Report Error

View answer Workspace Report Error Discuss

9 2874
Q:

New Education Minister of India - 2019

A) Smriti Irani B) Harsh Vardhan
C) Prakash Javadekar D) Ramesh Pokhriyal
 
Answer & Explanation Answer: D) Ramesh Pokhriyal

Explanation:

new_education_minister_of_india_-_20191562651547.jpg image

The Ministry of Human Resource Development, formerly Ministry of Education in India
Ramesh Pokhriyal the Union Cabinet Minister of Human Resource Development in 2019. He represents the Haridwar Parliamentary constituency of Uttarakhand in the 17 Lok Sabha elections.

Prakash Javadekar was the former Human Resource Development Minister in 2018.

Report Error

View Answer Report Error Discuss

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

3 2873
Q:

Which one of the following National Highways is the longest

A) NH-2 B) NH-7
C) NH-8 D) NH-15
 
Answer & Explanation Answer: B) NH-7

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

4 2871
Q:

Which of the following planets is known as Earth's twin?

A) Mars B) Saturn
C) Uranus D) Venus
 
Answer & Explanation Answer: D) Venus

Explanation:

Venus is known as earth's twin because of its closeness to the earth with respect to size, mass(weight) and density.

Report Error

View Answer Report Error Discuss

Filed Under: World Geography

1 2869