Python for everyone chapter 1Z时代2024-01-10分类:综合10 试题1. When Python is running in the interactive mode and displaying the chevron prompt (>>>) - what question is Python asking you?What is the next machine language instruction to run?What is your favourite color?What Python statement would you like me to run?What Python script would you like me to run?2. What will the following program print out:>>> x = 15>>> x = x + 5>>> print x20515"print x"x + 53. Python scripts (files) have names that end with:.exe.py.doc.png4. Which of these words is a reserved word in Python ?fornamespizzapayroll5. What is the proper way to say “good-bye” to Python?quit()#EXITwhile// stop6. Which of the parts of a computer actually executes the program instructions?Secondary MemoryMain MemoryInput/Output DevicesCentral Processing Unit7. What is "code" in the context of this course?A way to encrypt data during World War IIA sequence of instructions in a programming languageA password we use to unlock Python featuresA set of rules that govern the style of programs8. A USB memory stick is an example of which of the following components of computer architecture?Output DeviceCentral Processing UnitMain MemorySecondary Memory9. What is the best way to think about a "Syntax Error" while programming?The computer is overheating and just wants you to stop to let it cool downThe computer needs to have its software upgradedThe computer did not understand the statement that you enteredThe computer has used GPS to find your location and hates everyone from your town10. Which of the following is not one of the programming patterns covered in Chapter 1?Conditional StepsRandom stepsSequential StepsRepeated Steps以上是 Python for everyone chapter 1 的全部内容, 来源链接: utcz.com/z/387367.html