Questions

Q:

What are the typical elements of a process image?

Answer

User data: Modifiable part of user space. May include program data, user stack area, and programs that may be modified.


User program: The instructions to be executed.


System Stack: Each process has one or more LIFO stacks associated with it. Used to store parameters and calling addresses for procedure and system calls.


Process control Block (PCB): Info needed by the OS to control processes.

Report Error

View answer Workspace Report Error Discuss

14 19695
Q:

Which of the statements given below are not correct?

1. The author of 'India 2020: A Vision for the New Millennium' is Shashi Tharoor.
2. The author of 'The Great Indian Novel' is A.P.J. Abdul Kalam.
3. The author of 'My Country My Life' is I.K Gujral.

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

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors
Exam Prep: Bank Exams

0 19670
Q:

Rangaswamy Cup is associated with

A) Football B) Badminton
C) Cricket D) Hockey
 
Answer & Explanation Answer: D) Hockey

Explanation:

Rangaswamy Cup is associated with Hockey. Introduced in 1928, the Rangaswami Cup, was originally known as Inter-Provincial Tournament meant to pick up players for the national team for the Olympics.

Rangaswamy_Cup_is_associated_with1552387636.jpg image

After some years, The Hindu Group in 1951 presented the Rangaswami Cup that was named after one of its editors and since then the tournament is known as the Rangaswami Cup.

Report Error

View Answer Report Error Discuss

5 19634
Q:

Which one of the following mixture is homogeneous

A) starch and sugar B) methanol and water
C) graphite and charcoal D) calcium carbonate and calcium bicarbonate
 
Answer & Explanation Answer: B) methanol and water

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

76 19616
Q:

What value should come in place of the question mark (?) in the following question?

?2% of 650 = 202 + 42

A) 8 B) 64
C) 8 D) 642
 
Answer & Explanation Answer: A) 8

Explanation:

?2=400+16650x100?= 8

Report Error

View Answer Report Error Discuss

0 19608
Q:

V. G. Jog is famous for which musical instrument?

 

A) Sitar B) Violin
C) Tabla D) Santoor
 
Answer & Explanation Answer: B) Violin

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities
Exam Prep: Bank Exams

2 19586
Q:

Computer networks constituting the internet are connected by telephones, underwater cables and _____________

 

A) e-mail B) e-books
C) Public telephone booths D) Satellites
 
Answer & Explanation Answer: D) Satellites

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

2 19578
Q:

The output of the code below is

       #include <stdio.h>
        void main()
        {
            int i = 0, k;
            if ( i == 0 )
                goto label;
                for ( k = 0;k < 3; k++ )
                {
                    printf( "hin" );
                    label: k = printf( "%03d", i );
                }
         }

A) 0 B) hi hi hi 0 0 0
C) 0 hi hi hi 0 0 0 D) 0 0 0
 
Answer & Explanation Answer: A) 0

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Programming

1 19568