In the context of computer crimes, those who attempt to destroy the infrastructure components of governments and financial institutions are known as <u>d. cyber terrorists</u>.
<u>Explanation</u>:
Cyber crime means crime committed with the help of computer and internet. Cyber terrorism means crime that causes damage to infrastructure components of financial institutions and government office and causes threat to the society.
Cyber terrorists are person who involve in cyber terrorism. The systems used in the governments and financial institutions should be protected with hardware and software to avoid cyber terrorism.
This kind of cyber terrorism is very dangerous, as they hack the system and destroy the valuable information stored in it.
Answer:
1. Accessible to find information
2. Computer can store information you need
3. Communication world wide to connect with others
4. High tech learning
5. Many entertaining platforms and games
Explanation:
Hope that helps
Set them up from least to greatest or create a number graph with all the data.
What are the answer options?
Answer:
#here is code in python.
#main method
def main():
#read the initial position
in_pos=float(input("enter the initial position:"))
#read the initial velocity
in_vel=float(input("enter the initial velocity:"))
#read the acceleration
acc=float(input("enter the acceleration:"))
#read time
time=float(input("enter the time:"))
# final position =x+ut+(at^2)/2
fin_pos=in_pos+(in_vel*time)+(acc*(time**2)/2)
#print the final position
print("final position is: ",fin_pos)
#call the main method
main()
Explanation:
Read the initial position, initial velocity, acceleration and time from user.Then calculate final position as initial position+(initial velocity*time)+ (acceleration*time^2)/2. This equation will give the final position. print the final position.
Output:
enter the initial position:10
enter the initial velocity:20.5
enter the acceleration:5
enter the time:15
final position is: 880.0