154k views
0 votes
3.6 Consider the following variable declarations.

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

User Meenxo
by
3.4k points

1 Answer

2 votes

Answer:

Step-by-step explanation:

Necessary:

var a, b : boolean;

k : integer;

begin

a := true;

b := false;

k := 7;

end.

User Zivkan
by
3.4k points