Questions

Q:

Customer Perceptions and Business Outcomes help to define what ?

A) Key Performance Indicators (KPI's) B) Service Value
C) Total Cost of Ownership (TCO) D) Governance
 
Answer & Explanation Answer: B) Service Value

Explanation:
Report Error

View Answer Report Error Discuss

6 4276
Q:

Which statement describes the acid found in vinegar acetic acid ?

A) It feels slippery B) It reacts with Mg to produce H2
C) It tastes bitter D) It releases OH- in a solution
 
Answer & Explanation Answer: B) It reacts with Mg to produce H2

Explanation:

Acid which is present in vinegar is approximately 5 % of acetic acid. This can be confirmed by testing the vinegar with magnesium which gives out hydrogen as a gas.

Report Error

View Answer Report Error Discuss

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

0 4276
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 4276
Q:

Which one of the following is NOT an example of economic overheads

A) Schools B) Sanitary Facilities
C) Roads and Rrailways D) Coal Mines
 
Answer & Explanation Answer: D) Coal Mines

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

1 4276
Q:

What do you call elements with Atomic Number between 57 and 71?

Answer

'Rare earth'(They are all metals)

Report Error

View answer Workspace Report Error Discuss

Subject: General Science

10 4275
Q:

What is the political party of the president now?

A) BJP B) INC
C) BSP D) NCP
 
Answer & Explanation Answer: A) BJP

Explanation:

Ram Nath Kovind, the present President of India is from BJP, Bharatiya Janata Party.

The president of the Republic India is the head of state of India. He is also the commander-in-chief of Indian Armed Forces. He is indirectly elected by the people through members of both houses of the parliament of India, legislative assemblies of all the states of India, the legislative assembly of the Union

Report Error

View Answer Report Error Discuss

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

1 4275
Q:

In Which Indian state is the world's highest cricket ground located ?

A) Himachal Pradesh B) Uttarakhand
C) West Bengal D) Jammu Kashmir
 
Answer & Explanation Answer: A) Himachal Pradesh

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

11 4275
Q:

How many Nephrons are in each kidney?

A) 10,000 B) 1,00,000
C) 1,000,000 D) 1000
 
Answer & Explanation Answer: C) 1,000,000

Explanation:

There are about 1,000,000 nephrons in each human kidney.

Nephron, functional unit of the kidney, the structure that actually produces urine in the process of removing waste and excess substances from the blood.

Report Error

View Answer Report Error Discuss

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

2 4275