Computer Science, asked by utkarsh4964, 7 months ago

Find the output
1 poll
public class Test7
{
public static void main(String[] args)
{
do
{
while (true)
System.out.println("HELLO");
}
while (false);
}​

Answers

Answered by Dev12345678
0

Answer:

if it is true then it will give hello and if it is false then nothing

Similar questions