asked 77.6k views
4 votes
Given the variables isfulltimestudent and age, write an expression that evaluates to true if age is less than 19 or isfulltimestudent is true .

1 Answer

2 votes
Which language is this in?

if (age<19||isfulltimestudent==true)
return true;
answered
User Miknik
by
8.1k points

No related questions found