NEW
Font size
WorksheetsQuiz tentang Google Colab
Total questions: 20
Worksheet time: 15mins
What is the main function of Google Colab?
Edit images
Run Python scripts in the cloud
Create websites
Manage emails
Google Colab is a service from...
Microsoft
Amazon
IBM
The default file of Google Colab has the extension...
.ipynb
.py
.colab
.txt
To run a single code cell in Google Colab, the key combination is...
Ctrl + Enter
Alt + Enter
Shift + Enter
Esc + Enter
The following is an example of the addition arithmetic operator in Python:
*
+
-
%
Which one is the modulus operator in Python?
//
**
%
/
The function of the ** operator in Python is...
Division
Exponentiation
Modulus
Square root
The output of 3 + 2 * 2 in Python is...
10
7
12
8
The output of 10 // 3 in Python is...
3.33
3
4
3.0
In Google Colab, external libraries can be installed with the command...
apt install
pip install
import
open
The programming language commonly used in Google Colab is...
Java
C++
Python
PHP
Case sensitive means...
Does not distinguish between uppercase and lowercase
Makes the program faster
Requires additional code
Distinguishes between uppercase and lowercase
Variables Name and name in Python are considered...
The same
Not the same
Depends on the content
Depends on the data type
What is the result of 4 ** 2 in Python?
6
8
16
12
Google Colab can access files in Google Drive with the command...
import drive
mount drive
from google.colab import drive
run drive
What does 5 % 2 mean in Python?
2.5
1
3
0
The function of the # sign in Python is...
Looping
Addition
Comment
Variable
The command print("Hello") in Google Colab will...
Save the file
Display "Hello"
Close the program
Run an error
To calculate the square root of 16 using the exponent operator, the correct syntax is:
16 * 0.5
16 / 2
16 ** 0.5
16 ^ 0.5
If the variable A = 10, then A += 5 means...
A remains 10
A becomes 5
A becomes 15
A becomes 50
