Searching for "st"

Q:

On a sum of money, the simple interest for 2 years is Rs. 660,while the compound interest is Rs.696.30,the rate of interest being the same in both the cases. The rate of interest is

A) 10% B) 11%
C) 12% D) 13%
 
Answer & Explanation Answer: B) 11%

Explanation:

Difference in C.I and S.I for 2 years

= Rs(696.30-660)

=Rs. 36.30.

 

S.I for one years = Rs330.

S.I on Rs.330 for 1 year =Rs. 36.30 

 

Rate

= (100x36.30/330x1)%

= 11%

Report Error

View Answer Report Error Discuss

Filed Under: Compound Interest
Exam Prep: Bank Exams
Job Role: Bank PO

Q:

Output of the Program :

main()

{

int i = 1;

while (i <= 5)

    {

         printf( "%d", i );

         if (i > 2) goto here;

         i++;

     }

}

fun()

{

here : printf( "PP" );

}

A) 1 B) 2
C) Compilation error D) Exception occurs
 
Answer & Explanation Answer: C) Compilation error

Explanation:

Compiler error: Undefined label 'here' in function main

Report Error

View Answer Report Error Discuss

Filed Under: Programming

Q:

Wankhede stadium is situated in

A) Chandigarh B) Madras
C) Mumbai D) Bangalore
 
Answer & Explanation Answer: C) Mumbai

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports

Q:

What is the output of this program ?

class main_arguments {
            public static void main(String [ ] args)
            {
                String [][] argument = new String[2][2];
                int x;
                argument[0] = args;
                x = argument[0].length;
                for (int y = 0; y < x; y++)
                    System.out.print(" " + argument[0][y]);           
            }
        }

A) 1 1 B) 1 0
C) 1 0 3 D) 1 2 3
 
Answer & Explanation Answer: D) 1 2 3

Explanation:

In argument[0] = args;, the reference variable arg[0], which was referring to an array with two elements, is reassigned to an array (args) with three elements.
Output:
$ javac main_arguments.java
$ java main_arguments
1 2 3

Report Error

View Answer Report Error Discuss

Filed Under: Java
Exam Prep: GATE

Q:

Limba Ram is known for his outstanding performance in which of the following

A) Boxing B) Shooting
C) Swimming D) Archery
 
Answer & Explanation Answer: D) Archery

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports

Q:

What Australina player was known as 'Fruitfly' amongst the rest of the team

A) Geoff lawson B) Merv Hughes
C) Mike Veletta D) Mike Whitney
 
Answer & Explanation Answer: B) Merv Hughes

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports

Q:

Former Australian captain Allan Border was sometimes known as 'Captain Grumpy' What was his other nickname

A) Abe B) Captain Junior
C) AB D) Groucho
 
Answer & Explanation Answer: C) AB

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports

Q:

void main()

{

char good *better, *best;

printf( "%d..%d", sizeof(better), sizeof(best) );

}

A) 1..2 B) 4..4
C) 4..2 D) 2..2
 
Answer & Explanation Answer: C) 4..2

Explanation:

The second pointer is of char type and not a good pointer.

Report Error

View Answer Report Error Discuss

Filed Under: Programming