203k views
3 votes
Write a program to output the following quote by Edsger W. Dijkstra: "Computer Science is no more about computers than astronomy is about telescopes" - Edsger W. Dijkstra

User Wella
by
4.3k points

2 Answers

5 votes

depends which programming language you want to use.

If it's python then a simple print function would work.

print("Computer science is no more about computers than astronomy is about telescopes")

User Johnson Abraham
by
4.2k points
5 votes

Answer:

Python

Print("Computer Science is no more about computers than astronomy is about telescopes")

Javascript

On your browser console

console.log("Computer Science is no more about computers than astronomy is about telescopes")

On your Html script

document.write("Computer Science is no more about computers than astronomy is about telescopes")

Step-by-step explanation:

The quote by Edsger W. Dijkstra "Computer Science is no more about computers than astronomy is about telescopes" can be outputted with various programming languages. Programming language like python, JavaScript, Kotlin, Java, Swift, Flutter and R can be use for this purpose.

I will output the statement with two programming language namely python and JavaScript.

Python

Print("Computer Science is no more about computers than astronomy is about telescopes")

Javascript

On your browser console

console.log("Computer Science is no more about computers than astronomy is about telescopes")

On your Html script

document.write("Computer Science is no more about computers than astronomy is about telescopes")

User Pratikad
by
5.2k points