Questions

Q:

Which packages contain the JDBC classes?

A) java.sql B) java.sl
C) java.jd D) java.jdbc
 
Answer & Explanation Answer: A) java.sql

Explanation:

The Java packages which contain JDBC classes and interfaces is Java.SQL.

Report Error

View Answer Report Error Discuss

40 25730
Q:

Estonia is a country in which continent?

 

A) Asia B) South America
C) Europe D) Africa
 
Answer & Explanation Answer: C) Europe

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography
Exam Prep: Bank Exams

4 25686
Q:

Capital budgeting decisions are generally based on:

 

A) Tentative predictions of future outcomes. B) Perfect predictions of future outcomes.
C) Speculation of interest rates and economic performance only. D) Results from past outcomes only.
 
Answer & Explanation Answer: A) Tentative predictions of future outcomes.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: Bank Exams

0 25685
Q:

An increase in productivity will

 

A) Increase aggregate supply B) Increase in price level
C) Increase in demand D) All the above
 
Answer & Explanation Answer: A) Increase aggregate supply

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: Bank Exams

0 25597
Q:

Mount Everest is located between

 

A) China & India B) India & Nepal
C) China & Nepal D) India & Myanmar
 
Answer & Explanation Answer: C) China & Nepal

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography
Exam Prep: Bank Exams

5 25597
Q:

The story of vitamins dates back to

A) 15th century B) 16th century
C) 17th century D) 18th century
 
Answer & Explanation Answer: D) 18th century

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology

16 25507
Q:

Solve the missing number puzzle?

number_puzzle31533710656.jpg image

Answer

Here in the above puzzle,


Consider the columns.


Column 1 = Row 1 + Row 2 = Row 3


That is,


44 + 12 = 56


Similarly,


48 + 30 = 78


Hence, 14 + 51 = 65.


 


Hence, the missing number in the given puzzle = 65.

Report Error

View answer Workspace Report Error Discuss

Subject: Number Puzzles Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE
Job Role: Analyst , Bank Clerk , Bank PO

118 25478
Q:

What will output when you compile and run the following code?

#include <stdio.h>
struct student
{

int roll;
int cgpa;
int sgpa[8];

};

void main()
{

struct student s = { 12,8,7,2,5,9 };
int *ptr;
ptr = (int *)&s;
clrscr();
printf( "%d", *(ptr+3) );
getch();

}

A) 8 B) 7
C) 2 D) Compiler error
 
Answer & Explanation Answer: C) 2

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Programming

1 25446