Questions

Q:

Which team became the first team in history to win 100 T20 matches  ?

A) Sunrisers Hyderabad B) Bangalore Royal Challengers
C) Kolkata Knight Riders D) Mumbai Indians
 
Answer & Explanation Answer: D) Mumbai Indians

Explanation:

Two times IPL champions Mumbai Indians (MI) reached a new milestone as they became the first team in history to win 100 T20 matches. The Mumbai outfit defeated Kolkata Knight Riders (KKR) at the Eden Gardens by 9 runs in their final match of the league stage of IPL 2017.

Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams , CAT , GATE
Job Role: Bank Clerk , Bank PO

12 4129
Q:

National Commission for Backward Classes was set up in 

A) 1991 B) 1992
C) 1993 D) 1994
 
Answer & Explanation Answer: C) 1993

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

6 4127
Q:

'Pencillin' which is used as an antibiotic is obtained from 

A) Bacteria B) Fungi
C) Algae D) Lichens
 
Answer & Explanation Answer: B) Fungi

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science

16 4126
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 4126
Q:

Number of moles of CO2 present in 24 grams of carbon is

A) 0.5 B) 1
C) 2 D) 0.25
 
Answer & Explanation Answer: C) 2

Explanation:

1 mole of CO2 contain 12gms of carbon and 44 gms of CO2

therefore  24 gms of carbon is present in 88 gms of CO2 or 2 moles of CO2

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

7 4125
Q:

Where does hydroelectric energy come from?

A) Air B) Water
C) Solar D) All of the above
 
Answer & Explanation Answer: B) Water

Explanation:

Hydroelectricity is electricity produced from hydropower i.e, water.

Where_does_hydroelectric_energy_come_from1536043070.jpg image

Report Error

View Answer Report Error Discuss

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

4 4124
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 4122
Q:

Which standard govern parallel communications?

A) CAT 5 B) IEEE 1284
C) RS-232 D) None of the above
 
Answer & Explanation Answer: B) IEEE 1284

Explanation:

IEEE 1284 is a standard that govern parallel communications.

 

  • IEEE 1284 is a standard that defines bi-directional parallel communications between computers and other devices.

 

  • It was originally developed in the 1970s by Centronics, and was widely known as the Centronics port, both before and after its IEEE standardization.

 

                      which_standard_govern_parallel_communications1539064136.jpg image

Report Error

View Answer Report Error Discuss

6 4121