Edit Game
Debugging & Syntax -Text Based Programming
 Delete

Use commas to add multiple tags

 Private  Unlisted  Public



 Save

Delimiter between question and answer:

Tips:

  • No column headers.
  • Each line maps to a question.
  • If the delimiter is used in a question, the question should be surrounded by double quotes: "My, question","My, answer"
  • The first answer in the multiple choice question must be the correct answer.






 Save   9  Close
Syntax used to print command to output your name and age
print("Name", " Age" ) or print("Name" ,+,"Age")
_________________is the process of removing unnecessary information and focusing on the important details of a problem.
Abstraction
Decomposition is the process of __________________________problems down into smaller, more manageable parts.
breaking
Computational thinking is a systematic approach to solving ___________________
Problems
Which type of software did you use to create the advance BMI calculator program?
Text-based programming
syntax for type casting an integer to string?
int(input(" statement :"))
syntax for the count -controlled loop to repeat the code three times
for count in range(1,4):
Syntax to use input command to input height to the program
height=input("Enter the height ")
Use a print command to output "Advance BMI program"
print("Advance BMI program")