Game Preview

Debugging & Syntax -Text Based Programming

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