Auto Draft

Python is an example of what type of programming language?

What is the correct Python command to put “My first Python program” onto the screen? 1. echo «My first Python program» 2. print(My first Python program) 3. print(‘My first Python program’) 4. print(«My first Python program»)  

Observa estos dos códigos: friends = [‘Juan’, ‘Ana’, ‘María’, ‘Pepe’] for friend in friends: print(«Hi » + friend) amigos = [‘Juan’, ‘Ana’, ‘María’, ‘Pepe’] for amigo in amigos: print(«Hola » + amigo) ¿Cuál es la diferencia entre ‘friends’ y ‘friend’ Leer más…

Which of the following tasks do you think are good candidates for automation? Check all that apply.

What’s automation?

Why do we need to learn the syntax and semantics of a programming language?

Auto Draft

What are semantics when applied to programming code and pseudocode?

Which of these scenarios are good candidates for automation? Select all that apply

What’s the difference between a program and a script?

What’s the syntax of a language?