write a program snippet to print "hello world" on the screen.
Answers
Answered by
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
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