'For loop' practice code in java Q: What is the 'for loop' in computer programming ? A: A 'for loop' means to execute a block of code for a limited amount of time. Write a Java program to count down 10 times and print HAPPY ONAM on the screen? program package javaproject1; public class ForloopDemo { public static void main(String args []) { for ( int i =10; i >=0; i --){ System. out .println( i ); } System. out .println( "HAPPY ONAM" ); } } Eclipse output