0
883views
Choose the correct answer for the following:
1 Answer
written 8.3 years ago by |
(1) Parameters passed as arguments to the function call are called as
(a) Actual parameter (c) No parameters
(b) Formal Parameters (d) None of these
Ans: Actual Parameter
(2) Which of the following, return statement in function has error
(a) return (c) return(expression)
(b) return(0) (d) None of these
Ans: return(expression)
(3) Which of the following is not jump statement
(a) for (c) continue
(b) break (d) goto
Ans: for
(4) Which of the following is an exit controlled loop.
(a) for (c) do-while
(b) while (d) if-else
Ans: do-while
(5) In array a[2][3] ={ 10, 20, 30, 40, 50) then a[0][1] element is
(a) 10 (c) 40
(b) 50 (d) 20
Ans: 10