KnowledgeBoat Logo

Computer Applications

Write a program to print, "Welcome to the World of Computers".

Java

Java Intro

73 Likes

Answer

public class KboatWelcome
{
    public static void main(String args[]) {
        System.out.println("Welcome to the World of Computers");
    }
}

Output

BlueJ output of Write a program to print, "Welcome to the World of Computers".

Answered By

38 Likes


Related Questions