Answer:
5 c
6 a
Explanation:
kết thúc phiên là thoát ra nên chọn exit
nháy đúp chuột trái lên biểu tượng là mở chương trình
It should be noted that a primary risk to the Workstation Domain is the absence of a firewall and unauthorized access to the workstation.
<h3>
What is a workstation domain?</h3>
The Workstation Domain simply means an individual user's computer where his or her work takes place. It should be noted that computers operating systems have vulnerability which can be susceptible to hackers.
A primary risk to the Workstation Domain is the absence of a firewall and unauthorized access to the workstation.
Learn more about workstation on:
brainly.com/question/26097779
Answer:
what do you want your computer to do, how do you want your computer to look, how fast do you want your computer to run, etc
In python the input() function prompts the user to enter information.
Answer:
- import datetime
-
- def get_year_of_birth():
- age = int(input("Enter your age: "))
- current_year = datetime.datetime.now().year
- year_of_birth = current_year - age
- return year_of_birth
-
- print(get_year_of_birth())
Explanation:
Firstly, we import datetime module as we need it to get the current year (Line 1).
Next, create a function named it as get_year_of_birth (Line 3). Prompt user to input age and assign it to a variable (Line 4). Next, we use now() method from datetime module to get the current date and time and extract the year component (Line 5). At last, calculate the year of birth by subtracting the current_year with age and return it as output (Line 6-7).