TechnologyProfessionTest
Sort by
Newest
Most popular
Last review
Filter by
Published
3641
To review
24
TechnologyProfessionTest
Sort by
Newest
Most popular
Last review
Filter by
Published
3641
To review
24
36 questions
Hard
5 votes1956 runs0 comment
Write a Python program to open a file in binary mode and write a string to it.
Antoine Brennerat Dec 2, 2021
Hard
5 votes271 runs0 comment
Hard
4 votes1958 runs0 comment
What is the output of the following Python code? ``` G = '123' print(G + 1) ```
Antoine Brennerat Dec 2, 2021
Hard
4 votes1958 runs1 comment
Why is the output of the following code undefined? ``` def f(n): return n + 1 f(n) ```
Antoine Brennerat Dec 2, 2021
Hard
4 votes1956 runs0 comment
In Python, what is the output of the following code? `valueA = 10; valueB = 10; valueA is valueB`
Antoine Brennerat Dec 2, 2021
Hard
4 votes1954 runs0 comment
Write a Python code that will wait for 40 seconds.
Antoine Brennerat Dec 2, 2021
Hard
4 votes1948 runs0 comment
Hard
3 votes1966 runs0 comment
Write a Python function that returns a list of the first n numbers of the Fibonacci sequence.
Antoine Brennerat Dec 2, 2021
Hard
3 votes1940 runs0 comment
Python: Decorator that prevents the creation of an instance of a class
Antoine Brennerat Dec 2, 2021
Hard
3 votes1218 runs0 comment
Hard
3 votes400 runs0 comment
Hard
2 votes1944 runs1 comment
Hard
1 vote1996 runs0 comment
What is the output of the following code? ``` print("\u0041") ```
Antoine Brennerat Dec 2, 2021
Hard
1 vote1980 runs0 comment
What is the value of valueA after the following code is executed? ``` valueA = 10 valueB = 20 valueA = valueB ```
Antoine Brennerat Dec 2, 2021
Hard
1 vote1936 runs2 comments
Medium
1 vote268 runs1 comment