Test your basic knowledge |

Basic Python Programming

Subject : it-skills
Instructions:
  • Answer 50 questions in 15 minutes.
  • If you are not ready to take this test, you can study here.
  • Match each statement with the correct term.
  • Don't refresh. All questions and answers are randomly picked and ordered every time you load a test.

This is a study tool. The 3 wrong answers for each question are randomly chosen from answers to other questions. So, you might find at times the answers obvious, but you will see it re-enforces your understanding as you take the test each time.
1. multiply AND assignment operator






2. square root






3. square root






4. turns an object into an integer






5. sets the file's current position






6. absolute value






7. A string that begins with the % symbol and contains a sequence of printable characters and format specifiers that determine how values output should look.






8. Function to write something to a file






9. Function to empty the contents of a file - no recovery is possible






10. A logical operator which returns a value of True if either of the conditions is true.






11. Binary OR Operator copies a bit if it exists in eather operand. (a | b) will give 61 which is 0011 1101






12. unction to read one line of a file






13. prints its parameter to the console






14. Evaluates to true if it does not finds a variable in the specified sequence and false otherwise. x not in y - here not in results in a 1 if x is a member of sequence y.






15. Symbol to subtract things from each other






16. Prevents a runtime error from stopping the program.






17. Function to close a file - it will not be able to be used again unless the file is opened.






18. Less than symbol






19. The extension for Python scripts






20. multiply AND assignment operator






21. Argument variable






22. Function to read the contents of a file






23. Reads just one line of a text file.






24. asks the user for a response and returns that response






25. Empties the file - watch out if you care about the file.






26. Create a variable.






27. Function to empty the contents of a file - no recovery is possible






28. absolute value






29. add AND assignment operator






30. Adds something to a variable






31. asks the user for a response and returns that response






32. modulus AND assignment operator






33. A logical operator which compares two operands and produces True if they are equal and False otherwise






34. Symbol to multiply things






35. add AND assignment operator






36. exponentiation






37. floor division






38. This keyword begins the simplest form of a conditional statement.






39. Writes stuff to the file.






40. modulo






41. floor division AND assignment operator






42. floor division






43. This keyword in the body of a conditional - gives an alternative execution.






44. Where the parameters go. A necessary punctuation after any function even if it's empty.






45. Binary AND Operator copies a bit to the result if it exists in both operands. (a & b) will give 12 which is 0000 1100






46. Modulus operator. It's the remainder after division






47. Command to print to the screen






48. Symbol used to create comments






49. Binary Left Shift Operator. The left operands value is moved left by the number of bits specified by the right operand. a << 2 will give 240 which is 1111 0000






50. Greater than or equal symbol.