Draw This - beginner
Draw a diagram that shows 5 popular programming languages and one common use for each. Connect each language to its use with arrows.
Jump into concepts and practice - no test required
Draw a diagram that shows 5 popular programming languages and one common use for each. Connect each language to its use with arrows.
+----------+ +---------------------+ | Python | --------> | Data Science | +----------+ +---------------------+ +------------+ +---------------------+ | JavaScript | ------> | Web Development | +------------+ +---------------------+ +------+ +-------------------------+ | Java | ------------> | Mobile Apps & Backend | +------+ +-------------------------+ +-----+ +---------------------+ | SQL | ------------> | Database Management | +-----+ +---------------------+ +------+ +---------------------+ | HTML | ------------> | Web Page Structure | +------+ +---------------------+
This diagram shows five popular programming languages and one common use for each:
Arrows connect each language to its main use, making it easy to see the relationship.
print() to display text, so print('Hello, world!') is correct.console.log, and D is Java syntax.let x = 5
if x > 3 {
console.log('Yes')
}
if (x > 3).let is correct, console.log is the right function, so no errors there.