Questions

Q:

Who will be the chief guest of the opening ceremony of United Nation Vesak Day celebration to be held at Colombo, Sri Lanka between 12 May and 14 May ?

A) Bidhya Devi Bhandari B) Sheikh Hasina
C) Wijeyadasa Rajapakshe D) Narendra Modi
 
Answer & Explanation Answer: D) Narendra Modi

Explanation:

For the first time in Sri Lanka, the United Nation Vesak Day celebration will be held in Colombo and Kandy from May 12 to 14. Indian Prime Minister Narendra Modi will be the chief guest of the opening ceremony which will be held at BMICH in Colombo while Nepali President Bidhya Devi Bhandari will attend for the closing ceremony which is scheduled to be held at the Sri Dalada Maligawa premises in Kandy.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

3 4209
Q:

One light year is approximately equal to

A) 10^12 mts B) 10^16 mts
C) 10^11 mts D) 10^13 mts
 
Answer & Explanation Answer: B) 10^16 mts

Explanation:

Light year is the unit of to express astronomical distances, that light can travel in one year. Light moves at a velocity of about 300,000 kilometers (km) each second. So in one year, it can travel about 10 trillion km. More precisely, one light-year is equal to 9,500,000,000,000 kilometers.

 

Approximately, 1 light year = 10^16 mts.

Report Error

View Answer Report Error Discuss

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

4 4209
Q:

Which of the following is the regulator of the credit rating agencies in india?

A) RBI B) SBI
C) SIDBI D) SEBI
 
Answer & Explanation Answer: D) SEBI

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams
Job Role: Bank PO

4 4208
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 4208
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 4206
Q:

Grand Central Terminal Park Avenue is the world's

A) smallest railway station B) largest railway station
C) longest railway station D) None of above
 
Answer & Explanation Answer: B) largest railway station

Explanation:

Grand Central Terminal also referred to as Grand Central Station or Grand Central is the world’s largest railway station in terms of platforms in New York City with 44 platforms covering 48 acres.

Report Error

View Answer Report Error Discuss

4 4205
Q:

The bank which has launched new scheme 'Shubh Aarambh Home Loan' was ?

A) SBI B) Central Bank of India
C) Syndicate Bank D) Axis Bank
 
Answer & Explanation Answer: D) Axis Bank

Explanation:
Report Error

View Answer Report Error Discuss

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

7 4204
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 4204