197k views
2 votes
Note: the println() function prints out a line of text with the value that you pass to it - so if you say println("Hi"), it will output: Hi Consider the following code: var i = 0; while (i < 3) { println("hi"); i++; } What does the code output? Choose 1 answer: Choose 1 answer: (Choice A) A hi hi hi (Choice B) B hi hi (Choice C) C hi

User Ifthikhan
by
4.3k points

2 Answers

3 votes

Answer:The answer is A

Step-by-step explanation:

User Souki
by
4.2k points
5 votes

The answer to this is 9choice B) or hi hi

hope this is helpful

User David Wolf
by
5.0k points