2. plan of action
3. logic schedule
4. algorithm
Answer:
1
Explanation:
c. CAD
b. Drafting
d. Landscape software
CAD provides the architect opportunity to electronically plan and place elements of a building. Correct answer: C CAD stands for Computer-Aided Design. CAD is a computer technology used by architects, engineers, drafters, artists, and others to designs a product and documents the design's process.
Answer:
I thinks its False, because it kinda doesn't make since for that to be a technology skill. Hope this helps!
Explanation:
1. Random secret number from 1 to 10 or any larger range if you want.
2. Two players will guess
3. Determine who was closest.
4. Display the results of the round in a neat and organized fashion.
5. Add some kind of style to your print outs so that your display is nice
In python 3+:
import random
secret_number = random.randint(1,10)
guess_one = int(input("Enter player one's guess: "))
guess_two = int(input("Enter player two's guess: "))
if abs(guess_one - secret_number) < abs(guess_two - secret_number):
print(f"The secret number is {secret_number} and player 1 was closest")
elif abs(guess_one - secret_number) > abs(guess_two - secret_number):
print(f"The secret number is {secret_number} and player 2 was closest")
else:
print(f"The secret number is {secret_number} and it was a tie")
I hope this helps!
Answer:
The following are the code for the constructor.
public Clock (Clock c) //define constructor
{
hours = c.hours; // holding the value in the hour variable
isTicking = c.isTicking;// holding the value in the hour variable
}
Explanation:
The following are the description of the code.