Questions

Q:

This statesman,politican,scholar,inventor,and one of early presidents of USA invented the swivel chair,the spherical sundial,the moldboard plow,and the cipher wheel.

A) George Washington B) Alexander Hamilton
C) John Adams D) Thomas Jefferson
 
Answer & Explanation Answer: D) Thomas Jefferson

Explanation:

 Thomas Jefferson (April 13, 1743 – July 4, 1826) was the third President of the United States (1801-1809) and the principal author of the Declaration of Independence (1776).

Report Error

View Answer Report Error Discuss

Filed Under: Inventions

33 15229
Q:

what will be the output of the following code?

class Value
{
    public int i = 15;
}
public class Test
{
    public static void main(String argv[])
    {
        Test t = new Test();
        t.first();
    }
    public void first()
    {
        int i = 5;
        Value v = new Value();
        v.i = 25;
        second(v, i);
        System.out.println(v.i);
    }
    public void second(Value v, int i)
    {
        i = 0;
        v.i = 20;
        Value val = new Value();
        v =  val;
        System.out.println(v.i + " " + i);
    }
}

A) 15 0 2 B) 15 0 0
C) 15 20 0 D) 15 0 20
 
Answer & Explanation Answer: D) 15 0 20

Explanation:
Report Error

View Answer Report Error Discuss

9 15212
Q:

What are two example of freeware?

A) WinZip and Linux B) Shareware and file sharing
C) Microsoft word and the Google toolbar D) Instant messaging and the Google toolbar
 
Answer & Explanation Answer: D) Instant messaging and the Google toolbar

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams
Job Role: Bank PO

82 15210
Q:

The English Crown is an example of

A) Real executive B) Quasi-real executive
C) Normal executive D) Nominated executive
 
Answer & Explanation Answer: C) Normal executive

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

23 15207
Q:

Name the only animal that dislikes white colour?

Answer

Tiger.

Report Error

View answer Workspace Report Error Discuss

132 15175
Q:

How would you design and promote an advertising campaign?

Answer

An advertisement campaign must comprise of the following:


      - A solid marketing plan


      - Advertising budget


      - Media buying and planning


      - Choosing the right target audience


      - Selection of relevant advertising medium


      - Consistency in campaign theme 


      - Frequency 

Report Error

View answer Workspace Report Error Discuss

5 15170
Q:

The KeyPress event will capture pressing the key

A) control. B) A.
C) Both a and b. D) shift.
 
Answer & Explanation Answer: B) A.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

10 15160
Q:

why 8085 processor, is called an 8 bit processor?

Answer

Because 8085 processor is 8 bit ALU (arithmetic logic review). Similarly 8086 processor has 16 bit ALU.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

19 15152