Answer:
Here's all I know
Explanation:
OSHA stands for the Occupational Safety and Health Administration, an agency of the U.S. Department of Labor. OSHA's responsibility is worker safety and health protection. The U.S. Congress created OSHA under the Occupational Safety and Health Act of 1970 (the OSH Act). Congress passed the law and established OSHA "to assure so far as possible every working man and woman in the nation safe and healthful working conditions and to preserve our human resources.
OSHA began because, until 1970, there were no national laws for safety and health hazards.
Help me! I'm timed!!!
60 POINTS IF YOU GET IT RIGHT
PLEASE HELP ASAP!!!!!!!!
I already did the trials, and I found the loudest sound.
I will ask another question that includes the rest of the screen shots.
Answer:
You said this was 60 points but it is only 30 points :(
Explanation:
PLEASE HELP!!! What is one game you think would be hard for computers to play? (AI)
Answer:
I would say the game "Go" because it requires intuition to play.
Explanation:
Answer:
I dont play much games but probaly a game you need to think outside of the box for
Explanation:
robots arent creative
Write a small program that takes in two numbers from the user. Using an if statement and an else statement, compare them and tell the user which is the bigger number. Also, consider what to output if the numbers are the same.
Test your program in REPL.it, and then copy it to your Coding Log.
(If you’re up for an extra challenge, try extending the program to accept three numbers and find the biggest number!)
And only give me a good answer not some random letters plz. ty
Answer:
4. Conditionals
4.1. The modulus operator
The modulus operator works on integers (and integer expressions) and yields the remainder when the first operand is divided by the second. In Python, the modulus operator is a percent sign (%). The syntax is the same as for other operators:
>>> quotient = 7 / 3
>>> print quotient
2
>>> remainder = 7 % 3
>>> print remainder
1
So 7 divided by 3 is 2 with 1 left over.
The modulus operator turns out to be surprisingly useful. For example, you can check whether one number is divisible by another—if x % y is zero, then x is divisible by y.
Also, you can extract the right-most digit or digits from a number. For example, x % 10 yields the right-most digit of x (in base 10). Similarly x % 100 yields the last two digits.
4.2. Boolean values and expressions
The Python type for storing true and false values is called bool, named after the British mathematician, George Boole. George Boole created Boolean algebra, which is the basis of all modern computer arithmetic.
There are only two boolean values: True and False. Capitalization is important, since true and false are not boolean values.
>>> type(True)
<type 'bool'>
>>> type(true)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'true' is not defined
A boolean expression is an expression that evaluates to a boolean value. The operator == compares two values and produces a boolean value:
>>> 5 == 5
True
>>> 5 == 6
False
In the first statement, the two operands are equal, so the expression evaluates to True; in the second statement, 5 is not equal to 6, so we get False.
The == operator is one of the comparison operators; the others are:
x != y # x is not equal to y
x > y # x is greater than y
x < y # x is less than y
x >= y # x is greater than or equal to y
x <= y # x is less than or equal to y
Although these operations are probably familiar to you, the Python symbols are different from the mathematical symbols. A common error is to use a single equal sign (=) instead of a double equal sign (==). Remember that = is an assignment operator and == is a comparison operator. Also, there is no such thing as =< or =>.
4.3. Logical operators
There are three logical operators: and, or, and not. The semantics (meaning) of these operators is similar to their meaning in English. For example, x > 0 and x < 10 is true only if x is greater than 0 and less than 10.
n % 2 == 0 or n % 3 == 0 is true if either of the conditions is true, that is, if the number is divisible by 2 or 3.
Finally, the not operator negates a boolean expression, so not(x > y) is true if (x > y) is false, that is, if x is less than or equal to y.
4.4. Conditional execution
In order to write useful programs, we almost always need the ability to check conditions and change the behavior of the program accordingly. Conditional statements give us this ability. The simplest form is the ** if statement**:
if x > 0:
print "x is positive"
The boolean expression after the if statement is called the condition. If it is true, then the indented statement gets executed. If not, nothing happens.
The syntax for an if statement looks like this:
if BOOLEAN EXPRESSION:
STATEMENTS
As with the function definition from last chapter and other compound statements, the if statement consists of a header and a body. The header begins with the keyword if followed by a boolean expression and ends with a colon (:).
The indented statements that follow are called a block. The first unindented statement marks the end of the block. A statement block inside a compound statement is called the body of the statement.
Each of the statements inside the body are executed in order if the boolean expression evaluates to True. The entire block is skipped if the boolean expression evaluates to False.
There is no limit on the number of statements that can appear in the body of an if statement, but there has to be at least one. Occasionally, it is useful to have a body with no statements (usually as a place keeper for code you haven’t written yet). In that case, you can use the pass statement, which does nothing.
if True: # This is always true
pass # so this is always executed, but it does nothing
Pls answer will give brainlest dont answer if you dont know
Upload your 300-word essay containing the following: the definition of methane an explanation of how it is produced a description of how methane can be used as an energy source an explanation of how farmers are using methane from farm animals as an energy source a specific example of an actual farm where this system is being used
Methane is often written as (CH4). It is known to be a part of the hydrocarbon family.
What is a methane known for?Methane is known to be a type of natural gas that is said to be odorless, and flammable in nature. It is used in the making of fuel.
Conclusively, it is known to be a a primary aspect of natural gas and it is also a greenhouse gas. Methane is said to be often emitted from a lot of of human-affected substance and natural sources.
Learn more about methane from
https://brainly.com/question/25649765
Which of the following statements can be used as evidence that ancient Greek beliefs and art has been influential? Select the three correct answers. A. The Metropolitan Museum of Art in Modern in New York City contains many abstract paintings. B. We read fables as children to learn moral lessons. C. Today sculptors and painters avoid realism in their art. D. The columns of the Lincoln Memorial in Washington D.C. provide balance and harmony. E. Comedies and dramas are popular types of theater on Broadway.
Fist one will mark brainlyest
Answer:
A, B, D
Explanation:
I'm gonna go with these few answers because, well I'm not an expert with this stuff but the Metroplian Museum of Art has the Greek Design on the walls. And B, children are required in school to read such things for this reason. And D, seams like the correct answer for this better than the other ones.
Hope I helped you out, Reza106157
Answer:
B
Explanation:
When the prompt function is used in JavaScript, _____ appears.
A.
an error message
B.
a pop-up box
C.
a data warning
D.
a password request
Answer:
B
Explanation:
instructs the browser to display a dialog with an optional message prompting the user to input some text, and to wait until the user either submits the text or cancels the dialog
Which of the following BEST describes when an animator creates a representation of a 3D object in lines and points?
Which of the following BEST describes when an animator creates a representation of a 3D object in lines and points?
wire-frame model
kinetic model
motion graphic
infographic
what are some basic commands to remember in terminal? windows 10
please help if you know
Answer:
If you just need a few, maybe this can help.
Explanation:
Cat - The cat command means 'Concatenate'. It prints the contents of a file or files to stdout. It's frequently used in Linux commands.
Touch - Using the 'Touch' command, you can create a file, or possibly just modify or generate a timestamp.
Move - The 'mv' command stands for 'Move'. As the name says, we can use this command to move files and directories from one place to another.
Chsh - The chsh command changes a user's login shell attribute. If you want to change the shell of another user, execute the command with root permissions.
Sudo - 'Sudo', or 'super user do', is a command that allows you to elevate your user privileges while executing the command to administrator privileges.
List the different computer industries, and what they do.
(Like the part makers, people who assemble it and stuff not the companies)
Answer:
There are several different industries that are involved in the production and use of computers. These industries include:
Hardware manufacturers: These companies design and produce the physical components of computers, such as the motherboard, processor, memory, storage, and other peripherals.Software developers: These companies create the operating systems, applications, and other programs that run on computers.System integrators: These companies assemble and configure computers, often using components from multiple manufacturers, and sell them to consumers or businesses.Service providers: These companies provide support and maintenance services for computers, including repair, installation, and training.Data centers: These companies operate large facilities that host and manage the data and computing resources of other companies.Internet service providers: These companies provide access to the internet for businesses and consumers.Cloud computing providers: These companies offer computing services, such as storage, networking, and software, over the internet.Consulting firms: These companies provide advice and expertise on the use of computers and technology for business and organizational goals.Answer:
Hardware Manufacturers
Software Developers
System Integrators
Service Providers
Data Providers
ISP
Cloud Computing Providers
Consulting Firms
Explanation:
It is in order..
Which is the best approach to debugging?
A.
Don’t worry about it at all until after the program is written.
B.
Be sure the program will work perfectly before writing it.
C.
Anticipate errors before they happen, and find and fix errors that happen.
D.
Use an HTML encoder.
Dell XPS 15 or MacBook pro 13?
Answer:
MacBook Pro 13
Explanation:
Mostly cause of the brand.
And also I have a MacBook pro
Answer:
I think I would pick a MacBook Pro 13
Explanation:
The reason why is because personally I like apple products alot and Im not saying that Dell products are bad but I think apple products are just better. Also they do look the same but its really up to you to decide which brand you like better. If you had more experince with one brand you might want to stick with it or if you have experinced with both brands you should decide which you liked better.
hellpppppppppppppppp
Answer:
They can photograph from a safe area away from risks, and close to something they can escape to if something happens.
They can also put their printed photos into a plastic protective bag or case so that they won't be ruined.
maybe if the camera or whatever you were photographing with gets lost or destroyed, you should have the photo files backed up so that you can recover them.
Mark brainliest.
Answer:
I'm answering #2
Explanation:
Hector could have kept some distance from the water tank so he could ensure that he didn't accidently fall in
HELP ME?!!?!?!?!?!?
This is for BIM class and its due before 11:59 central time <333
24. Which of the following areas in the PivotTable Field List task pane should you place numerical values to be summarized?
A. FILTERS
B. VALUES
C. ROWS
D. COLUMNS
25. Brian wants to apply a different chart style to his PivotChart. Which of the following PivotChart Tools tabs should be used?
A. Analyze
B. Format
C. Styles
D. Design
Why is failure an important part of life and the engineering design process?
Answer:
Failure is something everyone goes through. In life, we experince failure in sports, school, hobbies, etc., but we learn from our mistakes. We learn to not repeat them again to have a better outcome. It's the same thing for the engineering design process. You try something, you fail, and try again. It's the process in most everything. In the engineering design process you fail, but you don't make the same mistakes again. Failure is apart of life, but it is there to force us to learn from our mistakes, and make it better.
Explanation:
Answer:
Failure is something everyone goes through. In life, we experince failure in sports, school, hobbies, etc., but we learn from our mistakes. We learn to not repeat them again to have a better outcome. It's the same thing for the engineering design process. You try something, you fail, and try again. It's the process in most everything. In the engineering design process you fail, but you don't make the same mistakes again. Failure is apart of life, but it is there to force us to learn from our mistakes, and make it better.
Explanation:
Explanation:
is it ok if your mom yells at you all the time for no reason
Answer:
well, I want to say know, but if they are anything like my mother, then they build up stress from everything in the world right now and they need to vent, which they sadly nitpick every little mistake and might take it out on their children. so don't feel bad, they are most likely stressed about something.
kleann
If I want to Save a file, what Menu do I go to? Question 1 options: Help View Insert Home
Answer:
ANS:- crtl s
Explanation:
crtl s is use to save a file in computer
Answer:
To save a file, you can click the Save icon in the top-left corner, click File>Save , or use the shortcut Ctrl+S (Command+S for Macs). Click the save icon (above) or File>New (below).
Why isn't my brainly post being answered?
Try deleting then reposting, it may not always pop up in new questions, I will have a look at the question anyway.
Hello. My Samsung tablet glitches and now its just a black screen. I've tried turning it on and off and holding down the power button but it just won't come on! Please help!
Answer:
press the volume up and down button while holding the power button, hold all three buttons til it turn on.
Explanation:
so this kinda gives the device like a reset/restart and or like it's refreshing itself!
Answer:
I tryed the 1st answer and it worked so give him brainliest.
Explanation:
Tests, fixes, and maintains network systems:
On the planet Mongo, each year has 15 months and each month has 26 days.
Write a function compute_mongo_age(birthYear, birthMonth, birthDay, currentYear, currentMonth, currentDay)
that residents of Mongo can use to compute their age. It should take 6 positive integers as input: the person's birthdate (year, month from 1 to 15, and day from 1 to 26) and the current date (year, month from 1 to 15, and day from 1 to 26), and return a float of the age of the person in years.
For example, print(compute_mongo_age(2879,8,11,2892,2,21)) should print 12.6256410256, the age (in Mongo years) of a person, who was born on the 11th day of the 8th month of the year 2879, is on the 21st day of the 2nd month of the year 2892.
Answer:
DateTime now = DateTime.Today;
int age = now.Year - bday.Year;
if (now < bday.AddYears(age))
age--;
So your helper method would look like:
public static string Age(this HtmlHelper helper, DateTime birthday)
{
DateTime now = DateTime.Today;
int age = now.Year - birthday.Year;
if (now < birthday.AddYears(age))
age--;
please describe the role of games in modern society!
(I made this up teehee) what anime is katski bakugo from
Create pseudocode to compute the volume of a sphere. Use the formula: V= (4/3)* π r3 where π is equal to 3.1416 approximately, where r is the radius. Display the result.
HELP PLZ
Answer:
In geometry, the area enclosed by a circle of radius r is πr2. Here the Greek letter π represents a constant, approximately equal to 3.14159, which is equal to the ratio of the circumference of any circle to its diameter.
Explanation:
Pseudocodes are simply false codes that are used as program prototype or models
The pseudocodeThe pseudocodes to compute the sphere volume is as follows:
StartInput rCalculate Volume, V = (4/3) * 3.1416 * r^3Display Volume VStopRead more about pseudocode at:
https://brainly.com/question/24953880
#SPJ9
what is 8 4/7 divided by 15
Answer: 4/7
Explanation:
8 4/7 ÷ 15
60/7× 1/15
=4/7
ok so...you first are going to convert the mix fraction 8 4/7 to improper fraction by multiplying the denominator and the whole number which is 56 then add the numerator 56 +4= 60 and put back the denominator which is going to be 60/7.
Then flip the fraction or the whole number 15 which is also 15/1 that is on the right which is going to be 1/15 and change the division sign to multiplication which is going to be 60/7 × 1/15.
then you can cancel, 15 go into 60, 4 times, so you are going to multiply 4 times 1 and 7 times one, which gives you 4/7.
I hope this help you to understand
Walt needs to ensure that messages from a colleague in another organization are never incorrectly identified as spam. What should he do?
A.Configure a safe recipient.
B.Configure a blocked sender.
C.Configure a safe sender.
D.Do nothing.
Answer:
C. Configure a safe sender
Explanation:
It’s dabest thing to do
As per the given scenario, Walt should need to configure a safe sender. The correct option is C.
What is configuration?A system's configuration in communications or computer systems refers to how each of its functional elements is organised in relation to their nature, number, and distinguishing features.
Configuration frequently involves picking the right hardware, software, firmware, and documentation.
A person, group, or organisation that starts the communication is known as the sender. The success of the message stems primarily from this source.
The communication is influenced by the sender's experiences, attitudes, knowledge, competence, perspectives, and culture.
Walt must take care to prevent messages from a colleague in a different organisation from ever being mistakenly classified as spam. He ought to set up a secure sender.
Thus the correct option is C.
For more details regarding configuration, visit:
https://brainly.com/question/13410673
#SPJ2
Q: Philip wants to be an architectural drafter, but he does not like working on computers. He prefers drafting by hand. Based on this lesson, what would be the best advice you could give Philip?
A. Become a drafter, and work by hand as part of a cultural project.
B. Learn the computer drafting programs. Computers are always going to be a part of your life
C. Become a drafter, and keep working by hand. Some people will always prefer “old-school” methods.
D. Find a different job for which you can use hand drafting skills, because they are not competitive in the drafting occupation.
PLEEZE I REALLY NEED THE RIGHT ANSWER! WORTH 20 POINTS AND WILL GIVE BRAINLIEST!
explain the history of computing of mechanical era
Answer:The Mechanical Era
Created a machine that could add and subtract numbers. Dials were used to enter the numbers. ... Designed a machine called the Analytical Engine. The design had all the basic components of a modern day computer. In addition, it was designed to be programmable using punched cards.
Explanation:Hope this helped
1. Why is it important to know how to create a slide?
2. How can you utilize the knowledge in making a slide as a student?
in own sentence pls
Answer:
1. Because slides help in improving visual aids. It improves understanding when teaching student.
2. You can make projects, shows, teach others, and play with it just for fun
Explanation:
Which of the following scenarios falls into the category of network crimes?
A) listening in on someone’s private online conversation
B) stealing classified information from someone’s computer account
C) knowingly sending an email with malware
D) sending a hurtful message to a friend
Answer:
B
Explanation:
Hope it helps!
The options A, B, and C fall into the category of network crimes.
A) listening in on someone’s private online conversation
B) stealing classified information from someone’s computer account
C) knowingly sending an email with malware
The category of network crimes?A) When you secretly listen to someone's private online conversation, it is called eavesdropping or unauthorized interception of communication. This is considered a type of cybercrime. It is against the law in many places to listen to private conversations without permission.
B) Taking secret information from someone's computer account: This is a very serious crime called "hacking" or "sneaking into computer systems without permission. " Going into someone's computer account without permission to take important or secret information is against the law.
Read more about network crimes here:
https://brainly.com/question/31589991
#SPJ3