Questions

Q:

An Oracle System Change Number (SCN):

A) is a value that is incremented whenever a dirty read occurs. B) is incremented whenever a deadlock occurs.
C) is a value that keeps track of explicit locks. D) is a value that is incremented whenever database changes are made.
 
Answer & Explanation Answer: D) is a value that is incremented whenever database changes are made.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Database

0 4234
Q:

Initiating Process Group

What are the Project Management Processes included in the Initiating  Process Group ?

Answer


    • Develop Project Charter

    • Develop Preliminary Project Scope Statement


Report Error

View answer Workspace Report Error Discuss

0 4232
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 4229
Q:

Cactus Spines are Modified 

A) Stems B) Branches
C) Leaves D) Roots
 
Answer & Explanation Answer: C) Leaves

Explanation:
    • Cactus spines are also known as modified bud scales, which are also called modified leaves.

 

    • Cactus spines occur in clusters in the axil of leaves.

 

Report Error

View Answer Report Error Discuss

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

11 4229
Q:

What is the most common form of iodine deficiency?

Answer

Goitre

Report Error

View answer Workspace Report Error Discuss

Subject: General Science

18 4227
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 4227
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 4226
Q:

Which of the following cities is the first mono rail inaugurated?

A) Delhi B) Mumbai
C) Kolkata D) Bangalore
 
Answer & Explanation Answer: B) Mumbai

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

4 4225