Home / Programming Questions / Page 1890

Prgramming MCQs Feed | Page - 1890

R

Ram Sharma • 188.01K Points
Coach

(A) 0.57
(B) Serial Number 50771
(C) May 10, 2001
(D) 350

R

Ram Sharma • 188.01K Points
Coach

(A) Data control
(B) Cross check
(C) Data validation
(D) Data verification

K

Kirti • 10.37K Points
Tutor II

(A) The title area and text area of a specific slide
(B) A slide master and title master merged into a single slide
(C) A slide master and title master for a specific design template
(D) All of above

M

Manisha Agrawal • 9.32K Points
Tutor III

Code:
for l in range(3):
   if l == 2:
      continue
   else:
      print("i",end = " ")
else:
   print("Here")
(A) i i i Here
(B) i i Here
(C) i i i
(D) i i Here i

R

Ram Sharma • 188.01K Points
Coach

(A) Scroll bar
(B) Home tab
(C) View option toolbar
(D) Page layout tab

V

Vaibhav Shukla • 4.53K Points
Extraordinary

Code:
i = 0
while i < 3:
    print(i)
    i += 1
else:
    print(0)
(A) 0 1 2 3 0
(B) 0 1 2 0
(C) 0 1 2
(D) error

T

Tina Singh • 10.68K Points
Tutor II

(A) TreeMap
(B) HashMap
(C) LinkedHashMap
(D) None

S

Sandeep • 6.42K Points
Tutor III

Code:
<?php
print_r "Hello MCQ Buddy"
?>
(A) Hello MCQ Buddy
(B) Missing semicolon error
(C) Error
(D) Nothing