Questions

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 19819
Q:

As per Indian Protocol, who among the following ranks highest in the order of precedence?

A) Deputy Prime Minister B) Former President
C) Governor of a State within his state D) Speaker of Lok Sabha
 
Answer & Explanation Answer: C) Governor of a State within his state

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

49 19816
Q:

Arrange the following words according to the dictionary order

a. Approach

b. Appropriate

c. Approval

d. Approve

A) acdb B) abdc
C) cdab D) abcd
 
Answer & Explanation Answer: D) abcd

Explanation:
Report Error

View Answer Report Error Discuss

1 19765
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 19753
Q:

Which of the statements given below are correct?

A) Julio Granda won the Chess 2017 Women's World Chess Championship.

B) Australia hosted the Tennis 2017 Hopman Cup.

C) Max Verstappen won the Formula One 2017 Malaysian Grand Prix.

 

A) Only A B) Only C
C) Both B and C D) A, B and C
 
Answer & Explanation Answer: C) Both B and C

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

0 19741
Q:

Which of the statements given below are correct?

A) Rafael Nadal won the Tennis 2017 Australian Open Men's Singles.

B) In 2017, Virat Kohli captained the IPL team Royal Challengers Bangalore.

C) Serena Williams won the Table Tennis 2017 ITTF World Tour Grand Finals Women's Singles

 

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

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

2 19739
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 19735
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 19702