#Program to display Your School Name" Print 'ABC Model School'
Answers
Answered by
4
class My_School_Name
{
public static void main (string args [])
{
System.out.println ("The name of my school is ABC Model School")
}
}
Answered by
2
Answer:
public class PrintName
{
public static void main(String args[]) {
System.out.println("ABC Model School");
System.out.println("ABC Model School");
System.out.println("ABC Model School");
System.out.println("ABC Model School");
}
}
Similar questions