Questions

Q:

Which of the statements given below are correct?

 

A) In 2017, Virat Kohli captained the IPL team Rising Pune Supergiant.

B) In 2017 Pro Kabaddi League, Surjeet Singh played for Bengal Warriors.

C) United Kingdom hosted the Table Tennis 2017 ITTF Women's World Cup.

 

A) Only B B) Both A and C
C) A, B and C D) No option is correct
 
Answer & Explanation Answer: A) Only B

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

3 19977
Q:

Find the odd word/letters/number from the given alternatives.

(A) BCE (B) WXZ (C) MNP (D) GHK

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

Explanation:
Report Error

View Answer Report Error Discuss

0 19976
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 19945
Q:

Which of the following is a form of functional testing?

A) Security testing B) Performance testing
C) Boundary value analysis D) Usability testing
 
Answer & Explanation Answer: D) Usability testing

Explanation:

Functional testing is a type of testing that is done against the requirements of the business application. 

Which_of_the_following_is_a_form_of_functional_testing1552046654.png image

Examples of functional testing are Smoke testing, Sanity testing, Regression testing, Usability testing.

Report Error

View Answer Report Error Discuss

30 19920
Q:

At what time between 2 and 3 O'clock, the hands of a clock coincide ?

A) 1 10/11 minutes past 2 B) 1 10/11 minutes past 3
C) 1 11/10 minutes past 3 D) 11 10/11 minutes past 2
 
Answer & Explanation Answer: A) 1 10/11 minutes past 2

Explanation:

Since, in one hour, two hands of a clock coincide only once, so, there will be value.
Required time T = 211H×30 + Ao minutes past H.
Here H - initial position of hour hand = 2 (since 2 O'clock)
A° = Required angle = 0° (Since it coincides)

 

T = 2112×30 + 0o minutes past 2 

 

=> 11011 minutes past 2

 

 

Report Error

View Answer Report Error Discuss

Filed Under: Clock puzzles
Exam Prep: GRE , GATE , CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

52 19904
Q:

Magnetic disks are the most popular medium for

A) Sequential access B) Direct access
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:

A magnetic disk is a storage device that uses a magnetization process to write, rewrite and access data. It is covered with a magnetic coating and stores data in the form of tracks, spots, and sectors. Hard disks, zip disks, and floppy disks are common examples of magnetic disks.

Magnetic_disks_are_the_most_popular_medium_for11558071061.png image        Magnetic_disks_are_the_most_popular_medium_for1558071122.png image

 

 

Hence, Magnetic disks are the most popular medium for both Direct access and Sequential access.

 

 

Report Error

View Answer Report Error Discuss

24 19899
Q:

If the following program (myprog) is run from the command line as 

myprog 1 2 3 

what would be the output?

main(int argc, char *argv[])

{

    int i, j = 0;

    for (i = 0; i < argc ; i++)

           j = j + atoi ( argv[i]);

    printf ("%d", j);

}

A) 123 B) 6
C) Error D) "123"
 
Answer & Explanation Answer: B) 6

Explanation:

When atoi() tries to convert argv[0] to a number it cannot do so (argv[0] being a file name) and hence returns a zero.

Report Error

View Answer Report Error Discuss

Filed Under: Programming

2 19885
Q:

What is the output of this C code?

        #include <stdio.h>
        void main()
        {
            int x = 97;
            char y = x;
            printf("%cn", y);
        }

A) a B) 97
C) Run time error D) None
 
Answer & Explanation Answer: A) a

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Programming

1 19875