The syntax of while construct is as-02798
The syntax of while construct is as
This multiple choice question (MCQ) is related to the book/course vu cs201 Introduction to Programming. It can also be found in vu cs201 Lecture No.05 - Quiz No.1.
The syntax of while construct is as
while ( Logical Expression ) { statement1; statement2; ... }
while ( Logical Expression ); { statement1; statement2; ... }
while ( Logical Expression ) { statement1; statement2; ... };
None of the given