Questions

Q:

What is the most common form of iodine deficiency?

Answer

Goitre

Report Error

View answer Workspace Report Error Discuss

Subject: General Science

18 4222
Q:

The Reserve Bank of India has taken some initiatives to prevent a US type sub-prime Crisis in India. Which of the following is/ are such initiatives?

A. Banks are adviced to set up credit counselling centres. 

B. Banks should stop giving housing loans to big borrowers (Asking for loans of  Rs.50 lakhs and above )

C. Banks should not give loans to builders and property dealers/developers

A) Only (A) B) Only (B)
C) Only (C) D) All (A), (B), (C)
 
Answer & Explanation Answer: A) Only (A)

Explanation:
Report Error

View Answer Report Error Discuss

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

0 4221
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 4220
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 4219
Q:

The crop that has the highest photosynthetic activity -

A) Sugarcane B) Wheat
C) Cotton D) Rice
 
Answer & Explanation Answer: A) Sugarcane

Explanation:

Corn, sugar cane, and sorghum are C4 plants. These plants are economically important in part because of their relatively high photosynthetic efficiencies compared to many other crops.

Report Error

View Answer Report Error Discuss

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

15 4218
Q:

Which Temple has been awarded the ‘most visited place of the world’ by 'World Book of Records' (WBR)?

A) Vaishnodevi temple B) Golden Temple
C) Meenakshi Temple D) Rawli Maharaj Temple
 
Answer & Explanation Answer: B) Golden Temple

Explanation:

WBR that is World Book of Records, the London based organization that focuses on maintaining and cataloging the world records has awarded the title of 'Most visited place in the World' to the famous Golden Temple. This holy Shrine has recorded quite an uplift after the successful Heritage street project carried out by the Amritsar department. 

Sri Harmandir Sahib, also known as Golden Temple and the Darbar Sahib, is the holiest Gurdwara and the most important pilgrimage site of Sikhism. It is located in the city of Amritsar, Punjab, India.

Report Error

View Answer Report Error Discuss

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

9 4218
Q:

Whenever people are looking for a job, they frequently see "program manager wanted" and "project manager wanted" when reading the job listings in their local newspaper. Which of the following statements best describes the relationship between projects and programs?

A) There are no differences between the two;they are just different terms for the same thing B) A project is composed of one or more related programs.
C) A program is composed of one or more related projects. D) A project is a temporary endeavor, where as a program is permanent
 
Answer & Explanation Answer: C) A program is composed of one or more related projects.

Explanation:

Answer A is incorrect because there is a definite difference between the two terms. Answer B is incorrect because just the opposite is true. Answer D is incorrect because a program is a group of projects, which are temporary endeavors.

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

0 4218
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 4217