Questions

Q:

The Government of India recently decided to create a 'Specific Financing Window ' for its ' Mega Bharat Nirman Programme ' . This specific financing window will operate through

A) SIDBI B) NABARD
C) SBI D) None of these
 
Answer & Explanation Answer: B) NABARD

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

0 3771
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 3768
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 3768
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 3768
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:

In the following question, select the related word pair from the given alternatives.

Current : Ampere : : ? : ?

A) Air : Kilogram B) Pressure : Speed
C) Work : Joule D) Temperature : Metre
 
Answer & Explanation Answer: C) Work : Joule

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

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

Among the pairs of rivers given below, which flow in the southern part of India?

 

A) Krishna and Ganges B) Kaveri and Godavari
C) Narmada and Tapi D) Brahmaputra and Yamuna
 
Answer & Explanation Answer: B) Kaveri and Godavari

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

3 3767