Multiple choice technology programming languages What does the code "cout<<(0==0);" print? 0 1 Compiler error: Lvalue required Don't Know Reveal answer Fill a bubble to check yourself B Correct answer Explanation The comparison (0==0) evaluates to true (1), which is then printed by cout. True boolean values are represented as 1 in C++ output streams.