116,398 views
23 votes
23 votes
3.6 Consider the following variable declarations.

boolean a = true, b = false;
int k = 7;
In which expression will short-circuiting occur?

User Evangelos
by
2.7k points

1 Answer

15 votes
15 votes

Answer:

Step-by-step explanation:

Necessary:

var a, b : boolean;

k : integer;

begin

a := true;

b := false;

k := 7;

end.

User Tanzila
by
3.0k points