Questions

Q:

Which Airport ranked first in Customer Satisfaction Index Survey in India ?

A) Udaipur Airport B) Raipur Airport
C) Amritsar Airport D) Dehradun Airport
 
Answer & Explanation Answer: B) Raipur Airport

Explanation:

Raipur’s Swami Vivekananda Airport was ranked first in Customer Satisfaction Index (CSI) Survey among 49 airports in the country. It has achieved 4.84 score on a five point scale index. It was followed by Udaipur (2nd), Amritsar (3rd) and Dehradun (4th) airports which have scored 4.75, 4.74 and 4.73 respectively. This is third consecutive time in the past two years, Raipur airport has received this recognition.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

11 3776
Q:

Which Indian state is having the longest coastline ?

Answer



Gujrat


 

Report Error

View answer Workspace Report Error Discuss

8 3776
Q:

 Which JDBC driver Type(s) is(are) the JDBC-ODBC bridge?

A) Type 1 B) Type 2
C) Type 3 D) Type 4
 
Answer & Explanation Answer: A) Type 1

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Database

0 3774
Q:

Which of the following awards is Sachin Tendulkar NOT awarded with?

 

A) Bharat Ratna B) Dhyan Chand Award
C) Padma Vibhushan D) Rajiv Gandhi Khel Ratna
 
Answer & Explanation Answer: B) Dhyan Chand Award

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards
Exam Prep: Bank Exams

1 3771
Q:

Seagate is manufacturer of

A) harddisk B) earth moving equipment
C) picture tube D) banking software
 
Answer & Explanation Answer: A) harddisk

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Business Awareness

14 3768
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 3767
Q:

Ram Kumar Ramanathan belongs to which sports ?

A) Tennis B) Chess
C) Golf D) Cricket
 
Answer & Explanation Answer: D) Cricket

Explanation:
Report Error

View Answer Report Error Discuss

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

14 3767
Q:

All of the following are constituents of RNA molecule except _____

A) Thymine B) Adenine
C) Uracil D) Guanine
 
Answer & Explanation Answer: A) Thymine

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: AIEEE

16 3766