Posts

Showing posts from July, 2022

Aktu python quiz 1-answers

Image
        Aktu python quiz 1- answers Que -1.  What is the first step in write a program? (a): Run Code (b): Write Code (c): Edit Code (d): Check the Code Answer:(b) Write Code Que -2.  Logical solution is a ____and clear _____procedure to solve the problem, known as _____. (a): problem description, step-by-step, flowchart (b): expression, assignment statement, identifier (c): finite, step-by-step, Algorithm (d): finite, assignment statement, algorithm Answer: (c) finite, step-by-step, Algorithm Que -3. Python is a/an___________ language (unlike C, C++, Java). (a): Logical programming (b): Interpreted programming (c): Compiled programming (d): Complex programming Answer:(b) Interpreted programming Que- 4. What is the extension of a python file? (a): .py (b): .pyt (c): .py (d): pthn Answer: (c) .py Que- 5. Which statement is correct? (a): print(hello world) (b): print “hello world!” (c): printf(“hello world!”) (d): print(“hello world”) Answer: (d) print(“hello...