Home / Programming Questions / Page 1887

Prgramming MCQs Feed | Page - 1887

R

Ram Sharma • 178.09K Points
Coach

(A) A function can call any other function any number of times
(B) You can write any function in any order in a multi function C File.
(C) You can refer to or call any function using a Pointer also.
(D) All of the above

R

Ram Sharma • 178.09K Points
Coach

(A) <style>
(B) <css>
(C) style
(D) css

R

Ram Sharma • 178.09K Points
Coach

Code:
<script>
	const VALUE = 10;
	VALUE = 20;
</script>
(A) 10
(B) 20
(C) ValueError
(D) TypeError

R

Ram Sharma • 178.09K Points
Coach

(A) count()
(B) strcount
(C) strlen
(D) len

R

Ram Sharma • 178.09K Points
Coach

(A) arr[5];
(B) arr[4];
(C) [5]arr; Answer
(D) arr(5);

R

Ram Sharma • 178.09K Points
Coach

(A) unmounting
(B) mounting
(C) changing
(D) sharing

R

Ram Sharma • 178.09K Points
Coach

(A) Workspace for holding the permanent object.
(B) Workspace for holding the temporary object.
(C) Both A and B
(D) None of these

M

Monu Rathod • 7.03K Points
Tutor III

Code:
 (x = foo())!= 1 considering foo() returns 2
(A) 2
(B) True
(C) 1
(D) 0