Questions

Q:

The book “The Other One Percent: Indians in America” has been authored by whom?

A) Lionel Messi B) Balaji Vittal
C) Sanjoy Chakravorty D) Joe Harris
 
Answer & Explanation Answer: C) Sanjoy Chakravorty

Explanation:
Report Error

View Answer Report Error Discuss

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

6 4155
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 4155
Q:

Which state government has implemented ‘Green Protocol’ for weddings  ?

A) Kerala B) Goa
C) Himachal Pradesh D) Telangana
 
Answer & Explanation Answer: A) Kerala

Explanation:

The Kerala government has implemented Green Protocol for making weddings more naturally in the state. The purpose of the initiative is to reduce the use of plastic in daily life. With the implementation of the protocol, use of plastic and other non-degradable articles including disposable glasses and plates and thermocol decorations will be discouraged at marriage functions. Inspections will be held at marriage halls, convention centres and hotels and other venues of the wedding ceremony in this regard and action would be taken if the protocol is violated. The state nodal agency for sanitation ‘Suchitwa Mission’ has already launched the initiative in Kannur, Ernakulam, Kollam and Alappuzha on a pilot basis. As per officials, the protocol would be implemented in the rest of the districts soon.

Report Error

View Answer Report Error Discuss

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

5 4154
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 4153
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 4153
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:

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 4152
Q:

Internet was started in India on ?

A) 8 August,1994 B) 15 August,1995
C) 9 August,1995 D) 7 August,1996
 
Answer & Explanation Answer: B) 15 August,1995

Explanation:
Report Error

View Answer Report Error Discuss

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

19 4152