Which of the following expression evaluate to True? (Select two answers)

Which of the following expression evaluate to True? (Select two answers)A . 'in not' in 'not'B . 'in' in 'Thames'C . 't' . upper ( ) in 'Thames'D . 'in' in 'in'View AnswerAnswer: C,D

December 4, 2020 No Comments READ MORE +

What is the expected out of the following code of the file named zero_length_existing_file is a zero-length file located inside the working directory?

What is the expected out of the following code of the file named zero_length_existing_file is a zero-length file located inside the working directory? A . 0B . -1C . an errno value corresponding to file not foundD . 2View AnswerAnswer: B

December 3, 2020 No Comments READ MORE +

What is true about the following snippet? (Select two answers)

What is true about the following snippet? (Select two answers) A . the code will raise an unhandled exceptionB . the siring I feel fine 'will be seenC . the string it's nice to see you will be seenD . the string what a pity will be seenView AnswerAnswer: B,D

December 3, 2020 No Comments READ MORE +

What is the expected output of the following code? def foo(x,y,z): return x(y) - x(z) print{f00(lambda x: x % 2, 2, 1) )

What is the expected output of the following code? def foo(x,y,z): return x(y) - x(z) print{f00(lambda x: x % 2, 2, 1) )A . 1B . 0C . -1D . an exception is raisedView AnswerAnswer: C

December 3, 2020 No Comments READ MORE +

With regards to the directory structure below, select the proper forms of the directives in order to import module_a. (Select two answers)

With regards to the directory structure below, select the proper forms of the directives in order to import module_a. (Select two answers) A . import pypack.module_aB . import module_a from pypackC . import module_aD . from pypack import module_aView AnswerAnswer: A,D

December 2, 2020 No Comments READ MORE +