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. file()
B. open()
C. read()
D. start()

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

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

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. 'a'
B. 'r'
C. 'w'
D. 'x'

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

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

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

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

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

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

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

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

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

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

9 Which function is used to create a new directory?

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

10 What does 'Pickling' refer to in Python?

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

11 Which module is required to perform pickling?

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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. regex
C. regexp
D. pyre

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

A. Start of string
B. Escape character
C. End of string
D. Any 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. Any digit
B. Start of string
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.match()
B. re.findall()
C. re.find()
D. re.search()

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

A. Any non-digit
B. Any alphabet
C. Any digit (0-9)
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.group()
D. re.search()

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 list
B. A string with replacements made
C. A match object
D. A boolean

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

A. \w+@\w+.\w+
B. \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. span tags
C. <div> tags
D. src attributes

33 What does the '?' quantifier signify?

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

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

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

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

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

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

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

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

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

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 extract text matching specific patterns
B. To connect to the server
C. To execute JavaScript
D. To render the page

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

A. Get Current Write Directory
B. Generate Code Working 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. file.exists()
B. os.check()
C. os.path.exists()
D. os.exists()

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

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

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

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

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

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

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

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

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 join strings
B. To remove patterns
C. To split a string by the occurrences of a pattern
D. To find duplicates

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

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

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

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