Answer:
import string
all(c in string.hexdigits for c in s)
Explanation:
The hexadecimal number system, often abbreviated as "hex", is a numeral system which consist of 16 symbols (base 16). The standard numeral system we are all use to, called decimal (base 10) and utilizes ten symbols: 0,1,2,3,4,5,6,7,8,9.
Using python programming language
import the  string module
the second expression iterate through the digit in s and confirm if they all are within the rage of 0 -9 ad A -F. If yes , it returns True and else, it returns false
 
        
             
        
        
        
Answer:
\n
Explanation:
readline() method is used to read one line from a file. It returns that line from the file.     
This line from the file is returned as a string. This string contains a \n at the end which is called a new line character. 
So the readline method reads text until an end of line symbol is encountered, and this end of line character is represented by \n.
For example if the file "abc.txt" contains the lines:
Welcome to abc file.
This file is for demonstrating how read line works.
Consider the following code:
f = open("abc.txt", "r")  #opens the file in read mode
print(f.readline()) # read one line from file and displays it
The output is:
Welcome to abc file.      
The readline() method reads one line and the print method displays that line.                        
 
        
             
        
        
        
D. System Software 
is responsible for Manage activity