Questions

Q:

Which category of Hydrogen releases water vapour and a by product when burnt?

 

A) Green Hydrogen B) Blue Hydrogen
C) Red Hydrogen D) Black Hydrogen
 
Answer & Explanation Answer: A) Green Hydrogen

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: AIEEE , Bank Exams

2 3774
Q:

Which Indian state is having the longest coastline ?

Answer



Gujrat


 

Report Error

View answer Workspace Report Error Discuss

8 3774
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 3773
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 3772
Q:

The command to eliminate a table from a database is

A) REMOVE TABLE CUSTOMER; B) UPDATE TABLE CUSTOMER;
C) DELETE TABLE CUSTOMER; D) DROP TABLE CUSTOMER;
 
Answer & Explanation Answer: D) DROP TABLE CUSTOMER;

Explanation:

The SQL DROP TABLE statement is used to remove a table definition and all data, indexes,...

Report Error

View Answer Report Error Discuss

4 3771
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 3766
Q:

The office of  the UN general Assembly is in

A) Vienna B) Paris
C) Newyork D) Zurich
 
Answer & Explanation Answer: C) Newyork

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

4 3765
Q:

The country which proposed the observance of the World Pulses Day?

 

A) Berlin B) Benin
C) Burkina Faso D) Nigeria
 
Answer & Explanation Answer: C) Burkina Faso

Explanation:

Burkina Faso proposed the observance of World Pulses Day on 10th February.

 

Report Error

View Answer Report Error Discuss

Filed Under: Important Days and Years
Exam Prep: Bank Exams

2 3765