Questions

Q:

Availability Management is responsible for

A) Components and Business Processes B) Services and Components
C) Services, Components and Business Processes D) Services and Business Processes
 
Answer & Explanation Answer: B) Services and Components

Explanation:

Availability Management is the practice of identifying levels of IT Service availability for use in Service Level Reviews with Customers.

Report Error

View Answer Report Error Discuss

6 19799
Q:

In Tennis, hard court is the type of court whose surface is made of

 

A) Concrete B) Clay
C) Grass D) Carpet  
 
Answer & Explanation Answer: A) Concrete

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

1 19790
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 19779
Q:

What will be output when you will execute following c code?

#include <stdio.h>
enum actor

{
    SeanPenn=5,
    AlPacino=-2,
    GaryOldman,
    EdNorton
};
void main()

{
     enum actor a=0;
     switch(a)

      {
         case SeanPenn:  printf("Kevin Spacey");
                         break;
         case AlPacino:  printf("Paul Giamatti");
                         break;
         case GaryOldman:printf("Donald Shuterland");
                         break;
         case EdNorton:  printf("Johnny Depp");
      } 
}

A) Kevin Spacey B) Paul Giamatti
C) Donald Shuterland D) Johnny Depp
 
Answer & Explanation Answer: D) Johnny Depp

Explanation:

Default value of enum constant
GaryOldman = -2 +1 = -1
And default value of enum constant
EdNorton = -1 + 1 = 0
Note: Case expression can be enum constant.

Report Error

View Answer Report Error Discuss

Filed Under: Programming

1 19766
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 19761
Q:

Which of the statements given below are correct?

A) In 2017, Gary Cahill captained the Premier League team Arsenal.

B) In 2018 IPL auctions, Kolkata Knight Riders retained Sunil Narine.

C) Roger Federer won the Tennis 2017 Wimbledon Championships Men's Singles.

A) Only B B) B and C
C) A, B and C D) None of these
 
Answer & Explanation Answer: B) B and C

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

0 19756
Q:

Who was the first woman to reach the north pole?

 

A) Ann Bancroft B) Nancy Loewen  
C) Liv Arnesen D) Robert Peary
 
Answer & Explanation Answer: A) Ann Bancroft

Explanation:

Ann Bancroft was the first woman to reach the north pole.

 

 

Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities
Exam Prep: Bank Exams

0 19718
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 19711