

InterviewSolution
Saved Bookmarks
1. |
The number of values a function can return at a time?(a) 1(b) 0(c) 2(d) more than 2I have been asked this question during an interview for a job.I'd like to ask this question from Structural Programming in chapter Planning the Computer Program of Computer Fundamentals |
Answer» CORRECT answer is (a) 1 Easy EXPLANATION: A FUNCTION can RETURN only one value at a time. Syntax : return (x,12); |
|