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. assignment operator






2. A keyword that does nothing but fill space to indicate code which will be written later.






3. Symbol to multiply things






4. turns an object into a string






5. A data type for representing numbers with fractional values.






6. ,multi-line comment hard-code,Fix (data or parameters) in a program in such a way that they cannot easily be altered by the user.






7. divide AND assignment operator






8. floor division AND assignment operator






9. Binary Ones Complement Operator is unary and has the efect of 'flipping' bits. (~a ) will give -60 which is 1100 0011






10. Greater than symbol






11. Greater than or equal symbol.






12. turns an object into an integer






13. 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






14. single line comment






15. exponent AND assignment operator






16. A statement that displays a value on the screen.






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






18. unction to read one line of a file






19. Adds a new line character






20. This keyword begins a header for a body that repeats until the condition is no longer true.






21. Binary XOR Operator copies the bit if it is set in one operand but not both. (a ^ b) will give 49 which is 0011 0001






22. 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.






23. Writes stuff to the file.






24. The keyword beginning a header that will create a new function.






25. This keyword attempts to do something that would cause the program to crash if it were not for this statement.






26. square root






27. Function to read the contents of a file






28. writes stuff to the file






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






30. Symbol to subtract things from each other






31. prints its parameter to the console






32. turns an object into an integer






33. unction to read one line of a file






34. End header line.






35. Called Logical AND operator. If both the operands are true then then condition becomes true. (a and b) is true.






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






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






38. Greater than or equal symbol.






39. A statement that assigns a value to a variable.






40. This statement exits a function. The remaining lines of the function are not executed.






41. adds an item to a list






42. modulus AND assignment operator






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






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






45. Turns a line into a comment instead of executable code.






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






47. assignment operator






48. returns the length of a string (number of characters)






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






50. Less than symbol