Questions

Q:

A Radioactive subatance emits

A) alpha particles B) beta particle
C) gamma particle D) all of the three
 
Answer & Explanation Answer: D) all of the three

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

4 4153
Q:

Smallest bone of human body is _________

A) Nails B) Fibula
C) Bone of nose D) Stapes
 
Answer & Explanation Answer: D) Stapes

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology

10 4152
Q:

Write a c program to find out sum of diagonal element of a matrix.

Answer

#include<stdio.h>

int main(){

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

  printf("\nEnter the row and column of matrix: ");
  scanf("%d %d",&m,&n);

  printf("\nEnter the elements of matrix: ");
  for(i=0;i<m;i++)
      for(j=0;j<n;j++)
           scanf("%d",&a[i][j]);
  printf("\nThe matrix is\n");

  for(i=0;i<m;i++){
      printf("\n");
      for(j=0;j<m;j++){
      printf("%d\t",a[i][j]);
      }
 }
 for(i=0;i<m;i++){
     for(j=0;j<n;j++){
          if(i==j)
              sum=sum+a[i][j];
     }
 }
 printf("\n\nSum of the diagonal elements of a matrix is: %d",sum);

 return 0;
}

Sample output:

Enter the row and column of matrix: 3 3
Enter the elements of matrix:
2
3
5
6
7
9
2
6
7
The matrix is
2       3       5
6       7       9
2       6       7
Sum of the diagonal elements of a matrix is: 16

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 4152
Q:

A research team of 6 people is to be formed from 10 chemists,5 politicians, 8 economists and 15 biologists.How many teams have atleast 5 chemists?

A) 7350 B) 6400
C) 6379 D) 7266
 
Answer & Explanation Answer: D) 7266

Explanation:

10C5 x 28C1 x 10C6 = 7266

Report Error

View Answer Report Error Discuss

0 4151
Q:

What is at the end of a rainbow?

Answer

The logical answer for a puzzle is that the letter 'W'.


 


A rainbow is a spectrum of light that appears in the sky when sunlight is refracted through raindrops or other drops of moisture in the Earth's atmosphere. They have inspired much popular folklore, including the belief that a leprechaun can be found with a pot of gold at the end of a rainbow.

Report Error

View answer Workspace Report Error Discuss

3 4149
Q:

Synonym of 'Beautiful'?

A) Alluring B) Ugly
C) Disgusting D) Loathsome
 
Answer & Explanation Answer: A) Alluring

Explanation:

Beautiful means good looking, having pleasing personality, glamourous, charming.

Synonyms of Beautiful are handsome, attractive, alluring, cute, fair,...

 

Hence, in the given options Synonym of 'Beautiful' is Alluring.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams , CAT , GATE , GRE , TOEFL
Job Role: Analyst , Bank Clerk , Bank PO , IT Trainer

2 4148
Q:

Which of these was a goal of unions?

A) union ownership of business B) government ownership of business
C) a shorter workweek D) government reform
 
Answer & Explanation Answer: C) a shorter workweek

Explanation:

Labor unions are associations of workers who pursue common objectives. Workers use this platform to bargain collectively on behalf of the majority of workers.

Report Error

View Answer Report Error Discuss

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

3 4147
Q:

Which river has no mention in Rigaveda

A) Sindhu B) Saraswati
C) Yamuna D) Periyar
 
Answer & Explanation Answer: D) Periyar

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

2 4146