Home / Programming Questions / Page 1641

Prgramming MCQs Feed | Page - 1641

R

Ram Sharma • 178.09K Points
Coach

(A) Arithmetic
(B) Assignment
(C) Conditional
(D) Relational

Y

Yogesh • 7.43K Points
Tutor III

(A) READ
(B) UPDATE
(C) RETRIEVE
(D) SELECT

R

Ram Sharma • 178.09K Points
Coach

(A) Any integer
(B) Enum constant only
(C) Any non null object
(D) None of the above

R

Ram Sharma • 178.09K Points
Coach

(A) <Body>
(B) <Title>
(C) <HTML>
(D) <Form>

Y

Yami Thakur • 9.05K Points
Tutor III

Code:
<?php
$n = 4;
while (++$n)
{   
    while ($n --> 0)
        print $n;
}
?>
(A) 43210
(B) 4
(C) Error
(D) 01234

R

Ram Sharma • 178.09K Points
Coach

(A) Records that have equivalent value for a given secondary index item are linked together to form a list.
(B) Records are loaded in ordered sequence defined by collating sequence by content of the key
(C) Records are directly accessed by record key field
(D) None of the above

R

Ram Sharma • 178.09K Points
Coach

(A) Yes
(B) No
(C) Can't Say
(D) None of these

R

Ram Sharma • 178.09K Points
Coach

(A) chmod U+X project1
(B) chmod a+x project1
(C) chmod u+x project1
(D) chmod +x project1