Questions

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 4192
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 4191
Q:

The amount of RAM storage is measured in

A) bytes B) mega bytes
C) giga bytes D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

RAM storage capacity is measured in bytes, kilo bytes, mega bytes, giga bytes,...

Report Error

View Answer Report Error Discuss

2 4191
Q:

Gear Lapping is an operation

A) for gear reconditioning B) prior to heat treatment
C) after heat treatment D) None of the above
 
Answer & Explanation Answer: C) after heat treatment

Explanation:

Gear Lapping is an operation after heat treatment. Gear lapping is the process of imparting a very fine finish and high degree of accuracy to gear teeth, by using a lapping tool and applying a fine-grained abrasive between a work material and a closely fitting surface, called a lapping plate.

Gear_Lapping_is_an_operation1554186430.jpg image

Report Error

View Answer Report Error Discuss

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

1 4190
Q:

Which will be the new sponsor of the Indian cricket team from April 2017 ?

A) Paytm B) Star
C) Oppo D) Reliance-Jio
 
Answer & Explanation Answer: C) Oppo

Explanation:

OPPO, the mobile manufacturing brand has dealt with Indian Cricket Team for its sponsorship for 05 years. OPPO has paid Rs. 1079 crore for this deal. The BCCI has signed a five-year contract with OPPO and this contract will begin from April.

Report Error

View Answer Report Error Discuss

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

7 4188
Q:

...................was conferred Sahitya Akademi Award for his poetry book Khara Zaran

A) Mr. Chinu Modi B) Robin Sharma
C) Gunvant Shah D) Narendra kohli
 
Answer & Explanation Answer: A) Mr. Chinu Modi

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

3 4187
Q:

Digitized information can be used by computers.

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

Explanation:

TRUE. The computers and electronic devices use digitized information which is easily understood by them.


 


Digitization is the process of converting analog signals or information of any form into a digital format that can be understood by computer systems or electronic devices. The term is used when converting information, like text, images or voices, and sounds, into binary code.

Report Error

View Answer Workspace Report Error Discuss

6 4187
Q:

What is the principle carbohydrate of milk?

A) Fructose B) Sucrose
C) Lactose D) Galactose
 
Answer & Explanation Answer: C) Lactose

Explanation:

Lactose is the major carbohydrate in the milk of most species.

 

Lactose is a disaccharide composed of the monosaccharides D-glucose and D-galactose, joined in a ß-1,4-glycosidic linkage. The chemical name for lactose is 4-0-ß-D-galactopyranosyl-D-glucopyranose.

Report Error

View Answer Report Error Discuss

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

6 4187