Project Manager Questions


Q:

Word length of a personal computer is

A) 32 bit B) 16 bit
C) 8 bit D) 4 bit
 
Answer & Explanation Answer: C) 8 bit

Explanation:

Word length refers to the number of bits processed by a computer's CPU in one go. These days, typically 32 bits or 64 bits are used.

Data bus size, instruction size, address size are usually multiples of the word size.

Report Error

View Answer Report Error Discuss

11 8104
Q:

How many 3-digit numbers can be formed from the digits 2, 3, 5, 6, 7 and 9 which are divisible by 5 and none of the digits is repeated ?

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

Explanation:

Since each number to be divisible by 5, we must have 5 0r 0 at the units place. But in given digits we have only 5.

 

So, there is one way of doing it.

 

Tens place can be filled by any of the remaining 5 numbers.So, there are 5 ways of filling the tens place.

 

The hundreds place can now be filled by any of the remaining 4 digits. So, there are 4 ways of filling it.

 

Required number of numbers = (1 x 5 x 4) = 20.

Report Error

View Answer Report Error Discuss

12 7998
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

4 7828
Q:

19 persons do 19 programs in 19 hours . If they take 15 mins interval and then how much time they need to do 52 programs.

A) 23 hours B) 47 hrs 15 min
C) 52 hrs 15 min D) 22 hrs 15 min
 
Answer & Explanation Answer: C) 52 hrs 15 min

Explanation:

Since they can do 19 programs in 19 hours, Then 52 programs in 52 hours respectively.
And a 15 min interval
Total time they take to do 52 programs is 52 hours 15 minutes.

Report Error

View Answer Report Error Discuss

11 7728
Q:

Processor's speed of a computer is measured in

A) Hertz B) Baud
C) MIPS D) BPS
 
Answer & Explanation Answer: A) Hertz

Explanation:

CPU speed is the central factor in a computer's performance. And this CPU speed depends on the processor in the CPU chip. In a computer, clock speed refers to the number of pulses per second generated by an oscillator that sets the tempo for the processor. Clock speed is usually measured in Hertz (Hz).

 

But now-a-days, a pure processor's performance is measured in MIPS (Millions of Instructions Per Second). As here in the question, how a processor's speed is measured is asked and it is Hertz. 

 

Hence, Processor's speed of a computer is measured in Hertz(Hz) [MHz, GHz].

Report Error

View Answer Report Error Discuss

10 7148
Q:

Which of the following is Not an Operating System?

A) UNIX B) Windows NT
C) C++ D) DOS
 
Answer & Explanation Answer: C) C++

Explanation:

C++ is not an Operating System.

 

An Operating System is a collection of system programs that manages all the other programs application programs in a computer as well as the allocation and use of hardware resources such as the CPU, Memory and the Hard Disk Drive.

It acts as an interface between the hardware and the user level program.

It controls and facilitates the overall operation of a computer. 

 

Here

UNIX : UNIX is a popular multi-user, multitasking operating system (OS) developed at Bell Labs.

 

Windows NT : Windows NT is a family of operating systems produced by Microsoft, the first version of which was released in July 1993.

 

DOS : DOS is Disk Operating System. The term DOS can refer to any operating system.

 

C++ : C++ is a programming language and computing platform.

 

Hence, C++ is not an Operating System.

Report Error

View Answer Report Error Discuss

10 6475
Q:

abcdefghijklmnopqrstuvwxyz Riddle

What sentence contains all abcdefghijklmnopqrstuvwxyz?

Answer

The Quick Brown Fox Jumped Over The Lazy Dog  is the sentence which contains all 26 alphabets i.e, from a to z.

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE , TOEFL
Job Role: Analyst , Bank Clerk , Bank PO , IT Trainer , Project Manager

14 6368
Q:

There are 209 doctors and nurses in a hospital. If the ratio of the doctors to the nurses is 11 : 8, then how many nurses are there in the hospital?

A) 88 B) 96
C) 108 D) 121
 
Answer & Explanation Answer: A) 88

Explanation:

Given,
The ratio of the doctors to the nurses is 11 : 8
Number of nurses = 8/19 x 209 = 88.

Report Error

View Answer Report Error Discuss

4 6348