Шукаєте відповіді та рішення тестів для 📚 Introduction to Algorithms - LIIEEng01EIntroductionToAlgorithmic? Перегляньте нашу велику колекцію перевірених відповідей для 📚 Introduction to Algorithms - LIIEEng01EIntroductionToAlgorithmic в moodle.ecam.fr.
Отримайте миттєвий доступ до точних відповідей та детальних пояснень для питань вашого курсу. Наша платформа, створена спільнотою, допомагає студентам досягати успіху!
What is the value saved in the variable names var?
a = 2
b = -1
c = -1
var = (-b + (b**2 - 4*a*c)**1/2)/2*a
/!\ Decimal are written with a dot (.) not a comma (,)Give your answer in decimal form, not as a fraction (ex: 0.25 rather than 1/4)
a = 5
b = 3
a = b
b = a
print(a, b)
What is the output of this script?
Which of these instruction asks a string to the user and saves it in the variable var?