Looking for π Introduction to Algorithms - LIIEEng01EIntroductionToAlgorithmic test answers and solutions? Browse our comprehensive collection of verified answers for π Introduction to Algorithms - LIIEEng01EIntroductionToAlgorithmic at moodle.ecam.fr.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
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?