computer revision
computer revision
vbnet
Copy code
START
DECLARE Largest AS INTEGER
SET Largest TO List[0]
FOR EACH Number IN List
IF Number > Largest THEN
SET Largest TO Number
END IF
END FOR
OUTPUT Largest
END
css
Copy code
A | B | Output
0 | 0 | 0
0 | 1 | 0
1 | 0 | 0
1 | 1 | 1
These questions cover a variety of topics and question types mentioned in the provided
document, including name, describe, explain, convert, write algorithms, and draw truth tables
.