Water flows into a sink as shown in Video V5.1 and Fig. P5.7 at a rate of 2 gal/min. Determine the average velocity through each of the three 0.4-in.-diameter overflow holes if the drain is closed and the water level in the sink remains constant.
ENGR 121 B Lab Notes for 10/19/2016 Spencer Kociba ● If/else statements ○ if() ■ Operation where if what is in () is true, it will carry out the action given right after the condition on the next line ○ elseif() ■ Only executes if 1st condition is false; will check a second condition ○ else() ■ If the “if()” and “elseif()” statements are false, follow the commands after this ○ Progression: ■ if() ■ elseif() ■ elseif() ■ …. ■ else() ○ **stops progressing as soon as a condition is satisfied ○ Nesting ■ if()