The performance feature for the evaluation of AndAlso and OrElse expressions is called:
a) short-circuit evaluation
b) quick evaluation
c) shortcut evaluation
d) fast evaluation
a) short-circuit evaluation
Computer Science & Information Technology
You might also like to view...
What are two formats Database Documenter reports can be saved in?
A) PDF or XPS B) PDF or WPX C) XPS or XLS D) PDF or CSV
Computer Science & Information Technology
Which operation does not take place in the following example?
int x = 21; double y = 6; double z = 14; y = x / z; x = 5.5 * y; (a) implicit conversion (b) promotion (c) explicit conversion (d) truncation
Computer Science & Information Technology