Answer:
A. A handrail is required
Answer:
t think its A, a handrail is required
Jason would like to add visual representations to a table that will be used to easily show comparison data. Which option should he use?
conditional formatting
data bars
expression builder
field criteria
Answer:
a. conditional formatting
Explanation:
Create a function called biggestNum that returns the largest number in an array of integers. The function is passed only one parameter, an array. In main, ask the user the input eight integers. Each integer should be added to an array called nums. Then, call the function and output the largest number in the array.
This is for Python
def biggestNum():
array = []
for i in range(8):
number = int(input('Enter number: '))
array.append(number)
return max(array)
print(biggestNum())
Find the total cost of a $125 coat purchased in Los Angeles County where the sales tax is 9%. Use the expression c + 0.09c
A
$11.25
B
$112.50
c
$126.25
0 $136.25
Price of ETH coin right now?
Don't answer if u don't know.
Answer:
58,715.40
Explanation:
Anyone who know how to use canva .com please make a logo of the name : Deadly Sins
Answer:
Yes ma'am as in the anime?
Explanation:
Cuz there's a anime show called 7 deadly sins or just deadly sins?
Answer:
hello give the person above brainlist
Explanation:
Help! Will add the brainliest.
Which of the following is a tip for getting a good pet photograph?
A. Always stand when taking the picture to keep the pet away from the camera.
B. Show the pet's personality.
C. Avoid having others with you.
D. All of the above
Answer:
Show the pet's personality
Explanation:
You want to get to know an animal when you look at their photo. If they are smiling then that will show how happy they are! Also, A is incorrect because sometimes you want to be on the same level as your animal. So crouch down and take that close up! And C is wrong because sometimes it is helpful for someone else to be there.
In a single paragraph, write about the connections between web servers and web pages. Select and differentiate between their various characteristics and how they work together.
Edge please don't copy paste, 20 points
Answer:
web servers hold all the info that the website has on it, most servers hold multiple websites
Explanation:
Answer:
web servers hold all the info that the website has on it, most servers hold multiple websites
Explanation:
what advice can you give to learners to achieve their goals
Answer:
Never give up, take your time, don't get distracted easily, lock your electronics in a box until you finish your work.
Reach for the stars! Always go the extra mile! Never give up!
In a sentence
If you wanted to become a police officer and you had to read boring books and you wanted to give up, but always think "I should always push myself past my limits, If I gave up then how would i know what I could have become?
Trademark
Owned by me
Write the function greeting that takes a string as input. That string will be formatted as Name Age Hobby, without any punctuation. greeting should split their response into list elements, then use index values to greet them by name and respond that you enjoy that hobby as well, with the format: ‘Hello, ! I also enjoy !' Make sure your output matches this format! For example, greeting('Jose 17 hockey') # => 'Hello, Jose! I also enjoy hockey!' greeting('Cindy 14 robotics') # => 'Hello, Cindy! I also enjoy robotics!'
Answer:
The function in Python is as follows:
def greetings(details):
details = details.split(' ')
print('Hello, '+details[0]+'!, I also enjoy '+details[2])
Explanation:
This defines the function
def greetings(details):
This splits the input string by space
details = details.split(' ')
This prints the required output
print('Hello, '+details[0]+'!, I also enjoy '+details[2])
After splitting, the string at index 0 represents the name while the string at index 2 represents the hobby
HELP mE PLZ
Gabby needs to perform regular computer maintenance. What should she do? Check all that apply.
Remove unwanted files.
Reboot the computer.
Back up her data.
Scan for viruses.
Delete the browsing history.
Answer:
scan for viruses
remove unwanted files
back up her data
Price of Tether coin right now?
Don't answer if u don't know.
Answer:
Honestly I believe its $1
Explanation:
It just stays on $1 don't know how tho
Tina reported a safety hazard at her workplace to OSHA. Representatives from OSHA came to her work and inspected the issue, then gave her employer a citation. The day after Tina's employer received the citation, Tina was given new jobs which were menial and difficult. Which of Tina's rights under OSHA was violated in this situation?
A) Freedom from retaliation for exercising safety and health rights
B) Knowledge of hazardous workplace conditions
C) Obtaining training as provided in the OSHA standards
D) Access to hazard exposure and medical records
Answer:A freedom from retaliation for exercising safety and health rights
Explanation:
Design a program that ask the user to enter a series of positive numbers. The user should enter a negative number to the series. After all the positive numbers have been entered the program should display their sum
Answer:
total = 0
while True:
number = float(input("Enter a number: "))
if number < 0:
break
total += number
print("The total of the positive numbers entered is", total)
Explanation:
*The code is in Python.
Initialize the total as 0
Create a while loop. Inside the loop:
Ask the user to enter a number. Check the number. If it is smaller than 0 (This means it is a negative number), stop the loop using break. Add the number to the total (cumulative sum). (This way your program keeps summing numbers until you enter a negative number)
When the loop is done, print the total