Computer Science, asked by somasaha37987, 19 days ago

write a program snippet to print "hello world" on the screen.​

Answers

Answered by mkatragadda819
4

Explanation:

A "Hello, World!" is a simple program that outputs Hello, World! on the screen.

...

How Java "Hello, World!" Program Works?

// Your First Program. ...

class HelloWorld { ... ...

public static void main(String[] args) { ... ...

System.out.println("Hello, World!");

Answered by purveshKolhe
4

Answer:

Python:

print('Hello world')

Java:

public class Brainly {

public static void main(String [] args) {

System.out.println("Hello world");

}

}

QBASIC:

CLS

PRINT "Hello world"

END

JAVASCRIPT:

console.log("Hello world");

Similar questions