Searching for "V"

Q:

What is the information does assembly manifest provide?

Answer

Information provided by Assembly Manifest:



  1.  Assembly Name

  2.  Version Number

  3.  Culture

  4.  Strong name

  5.  List of files inside the assembly

  6.  Reference information

Report Error

View answer Workspace Report Error Discuss

Subject: .NET

Q:

Bhatnagar Prize is given in the field of

A) Peace B) Music and dance
C) Science and Technology D) Fine arts
 
Answer & Explanation Answer: C) Science and Technology

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

Q:

Who is the author of the Novel 'Les Miserables'

A) Fedric B) Victor Hugo
C) Steven Spielberg D) Alium Tofler
 
Answer & Explanation Answer: B) Victor Hugo

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

Q:

A sum of money invested at compound interest amounts to Rs. 800 in 3 years and to Rs. 840 in 4 years. The rate of interest per annum is

A) 6% B) 4%
C) 5% D) 7%
 
Answer & Explanation Answer: C) 5%

Explanation:

S.I. on Rs.800 for 1 year

=Rs[840 - 800]

= Rs.40

 

Rate

=(100x40/800x1)%

= 5%

Report Error

View Answer Report Error Discuss

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

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:

Where did Yuvaraj Singh make his ODI debut

A) Nairobi, Kenya B) Mumbai, India
C) London England D) Lahore, Pakistan
 
Answer & Explanation Answer: A) Nairobi, Kenya

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports

Q:

Pravin Amre and Vinod Kambli played for which province in south Africa

A) Border B) Boland
C) Griqualand West D) Gauteng
 
Answer & Explanation Answer: B) Boland

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