Questions

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

3 5916
Q:

Twice the difference between two numbers is equal to their sum. If one number is 15,find the other number.

 

A) 15 B) 10
C) 5 D) 20
 
Answer & Explanation Answer: C) 5

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Inventions
Exam Prep: Bank Exams

36 5916
Q:

The number of pincode postal regions in india is 

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

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

24 5914
Q:

Match the following with the correct response.

 

(1) W (A) Nm
(2) kW       (B) 3.6 x 106 J
(3) 1 kW-h (C) 1000 W
(4) 1 HP (D) 746 W

A) 1-D, 2-B, 3-C, 4-A B) 1-A, 2-B, 3-C, 4-D
C) 1-A, 2-C, 3-D, 4-B D) 1-A, 2-C, 3-B, 4-D
 
Answer & Explanation Answer: D) 1-A, 2-C, 3-B, 4-D

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

1 5905
Q:

Which of following sectors does NOT come under tertiary sector?

 

A) Electricity B) Business Services
C) Transport D) Trade
 
Answer & Explanation Answer: A) Electricity

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: Bank Exams

2 5902
Q:

Dollu Kunitha is a folk dance from

A) karnataka B) Kerala
C) Bihar D) Tamil Naidu
 
Answer & Explanation Answer: A) karnataka

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Culture

98 5901
Q:

Wireless transmission can be done via

A) Infrared waves B) Radio waves
C) Microwaves D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Wireless transmission can be done via any of the Infrared waves, Radio waves or Microwaves.

Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

6 5901
Q:

What is MESI?

Answer

The MESI protocol is also known as illinois protocol due to its development the University of illinois at Urbana-Champaign and MESI is a widely used cache coherency and memory coherence protocol.


MESI is the most common which supports write-back cache. its use in personal computers became widespread with the introduction of intel's pentium processor to "support the more efficient write-back cache in addition to the write-through cache previously used by the Intel 486 processor"/

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

5 5901