Questions

Q:

Which sentence contains an interjection?

A) Hey, where did I park my car! B) Well, that’s a relief.
C) Oh, now I remember where i put my wallet. D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Yes, all the above given sentences have an interjection.

 

1. Hey ! is an interjection in the sentence , Hey!, where did I park my car? 

 

2. Well is an interjection in the sentence, Well!, that's a relief.

 

3. Oh! is an interjection in the sentence , Oh!, now I remember where i put my wallet.

Report Error

View Answer Report Error Discuss

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

1 4173
Q:

Which is not a sediment transporting agent?

A) Stratification B) Windstorms
C) Glacial Ice D) Stream water
 
Answer & Explanation Answer: A) Stratification

Explanation:

Stratification as actually the settling down of sediments with different properties to form layers/strata over years. Stratification especially occurs on the bed of water bodies such as oceans.

 

Stratified sedimentary rocks are used to study the ecological conditions over previous years/eras.  

 

The other choices like Windstorms, Glacial Ice and Stream water are mediums which sediments are transported.

Report Error

View Answer Report Error Discuss

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

5 4172
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 4171
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 4170
Q:

Who has become the first woman Chief Justice of Delhi High Court?

A) Justice R. Banumathi B) Justice K.K.Usha
C) Justice G.Rohini D) Justice T. Meena Kumari
 
Answer & Explanation Answer: C) Justice G.Rohini

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

4 4170
Q:

In 1955, Imperial Bank of India, a leadimg commercial bank of that time was nationalised and renamed as:

A) Central Bank of India B) Bank of India
C) Indian Bank D) State Bank of India
 
Answer & Explanation Answer: D) State Bank of India

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

16 4169
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 4168
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 4167