Unit 6 - Practice Quiz

INT108 50 Questions
0 Correct 0 Wrong 50 Left
0/50

1 Which function is used to open a file in Python?

A. read()
B. start()
C. open()
D. file()

2 What is the default mode when opening a file using the open() function?

A. Binary ('b')
B. Write ('w')
C. Append ('a')
D. Read ('r')

3 Which file mode opens a file for writing and creates the file if it does not exist, but truncates it if it does?

A. 'x'
B. 'w'
C. 'a'
D. 'r'

4 To write a variable that is an integer to a text file, what must be done first?

A. Pickle it
B. Cast it to a float
C. Write it directly
D. Cast it to a string

5 Which method is used to read the entire content of a file as a single string?

A. readline()
B. readlines()
C. read()
D. scan()

6 What is the return type of the readlines() method?

A. Dictionary
B. String
C. List of strings
D. Integer

7 Which keyword is used to handle file closing automatically in Python?

A. with
B. for
C. try
D. do

8 Which module allows you to interact with the operating system to handle directories?

A. os
B. file
C. sys
D. dir

9 Which function is used to create a new directory?

A. os.mkdir()
B. os.newdir()
C. os.create_dir()
D. os.make()

10 What does 'Pickling' refer to in Python?

A. Compressing a file
B. Converting a byte stream back into an object
C. Converting an object hierarchy into a byte stream
D. Encrypting a file

11 Which module is required to perform pickling?

A. json
B. os
C. pickle
D. serialize

12 Which file mode must be used when writing pickled data to a file?

A. 'r'
B. 'rb'
C. 'wb'
D. 'w'

13 Which function is used to deserialize a byte stream back into a Python object?

A. pickle.dump()
B. pickle.load()
C. pickle.push()
D. pickle.write()

14 What exception is raised when a number is divided by zero?

A. ZeroDivisionError
B. TypeError
C. ArithmeticError
D. ValueError

15 Which block contains the code that might raise an exception?

A. finally
B. except
C. try
D. else

16 When is the code inside the 'else' block of a try-except statement executed?

A. When the try block fails
B. Always
C. When no exception occurs
D. When an exception occurs

17 What exception is raised when trying to open a file that does not exist in read mode?

A. IOError
B. FileError
C. FileNotFoundError
D. NameError

18 Which of the following correctly handles a specific exception named 'MyError'?

A. catch MyError:
B. handle MyError:
C. except MyError:
D. try MyError:

19 What is the primary purpose of the 'finally' block?

A. To execute code regardless of errors
B. To handle errors
C. To return a value
D. To stop the program

20 How can you access the error message associated with an exception?

A. catch Exception e:
B. except Exception with e:
C. except e in Exception:
D. except Exception as e:

21 Which module supports Regular Expressions in Python?

A. re
B. regexp
C. regex
D. pyre

22 What does the special character '^' represent in a regular expression?

A. End of string
B. Any character
C. Start of string
D. Escape character

23 Which regular expression quantifier matches 0 or more occurrences of the preceding character?

A. ?
B. *
C. .
D. +

24 What does the pattern '.' (dot) match?

A. Start of string
B. Any digit
C. Only a literal dot
D. Any character except a newline

25 Which function searches for a pattern only at the beginning of a string?

A. re.search()
B. re.findall()
C. re.match()
D. re.find()

26 What does the special sequence '\d' match?

A. Any alphabet
B. Any digit (0-9)
C. Any non-digit
D. Any whitespace

27 Which function returns a list of all non-overlapping matches in the string?

A. re.findall()
B. re.match()
C. re.search()
D. re.group()

28 What does the quantifier '+' match?

A. Exactly 1 occurrence
B. 0 or 1 occurrence
C. 0 or more occurrences
D. 1 or more occurrences

29 Which character is used to define a range of characters, like 'a' through 'z'?

A. ()
B. <>
C. {}
D. []

30 What is the output of re.sub()?

A. A match object
B. A boolean
C. A string with replacements made
D. A list

31 Which regex pattern would match a valid email address roughly containing an '@' symbol?

A. \w#\w
B. \w+@\w+.\w+
C. \d+@\w+
D. email:\w

32 In the context of web scraping with regex, what are usually targeted to extract links?

A. href attributes
B. src attributes
C. <div> tags
D. span tags

33 What does the '?' quantifier signify?

A. Match 0 or more times
B. Match 0 or 1 times
C. Match 1 or more times
D. Match exactly 1 time

34 Which special sequence matches any whitespace character (space, tab, newline)?

A. \W
B. \S
C. \s
D. \w

35 Why are raw strings (r'text') preferred for regular expressions in Python?

A. They allow binary data
B. They avoid conflict with Python's escape characters
C. They run faster
D. They match case insensitively

36 What method of a match object returns the string matched by the regex?

A. match()
B. get()
C. return()
D. group()

37 Which flag is used to perform case-insensitive matching?

A. re.A
B. re.C
C. re.I
D. re.M

38 How do you define a 'group' within a regular expression to extract specific parts?

A. Using []
B. Using ()
C. Using ||
D. Using {}

39 What happens if re.match() does not find a match?

A. Returns -1
B. Returns False
C. Returns None
D. Raises an error

40 In Web Scraping, why might regex be used on HTML content?

A. To render the page
B. To connect to the server
C. To extract text matching specific patterns
D. To execute JavaScript

41 What is the function os.getcwd() used for?

A. Generate Code Working Directory
B. Get Current Write Directory
C. Get Count Working Directory
D. Get Current Working Directory

42 Which method is used to check if a file exists at a specified path?

A. os.exists()
B. os.check()
C. file.exists()
D. os.path.exists()

43 To write a list of strings to a file, which method is most direct?

A. write()
B. writelines()
C. putlines()
D. print()

44 What does the '$' symbol represent in regex?

A. Currency
B. Variable
C. Start of string
D. End of string

45 Which of the following is NOT a valid file mode?

A. rb
B. w+
C. ab
D. z

46 If a try block raises an exception that is not defined in the except block, what happens?

A. The program crashes (terminates)
B. It is ignored
C. The else block runs
D. The try block repeats

47 Which regex pattern matches any non-digit character?

A. \d
B. \w
C. \n
D. \D

48 What is the purpose of the re.split() function?

A. To split a string by the occurrences of a pattern
B. To find duplicates
C. To remove patterns
D. To join strings

49 When using pickle.dump(obj, file), what is the 'file' argument?

A. The file path string
B. A string of data
C. The directory name
D. A file object opened in binary write mode

50 What is the standard Python library used to fetch URLs for web scraping before using regex?

A. sys
B. os
C. urllib
D. pickle