Explain three causes of repetitive stress injuries (RSI)​

Answers

Answer 1

RSI can occur when you do repetitive movements. Those movements can cause your muscles and tendons to become damaged over time.

Some activities that can increase your risk for RSI are:

● stressing the same muscles through repetition

● maintaining the same posture for long periods of time

● maintaining an abnormal posture for an extended period of time, such as holding your arms over your head

● lifting heavy objects

● being in poor physical condition or not exercising enough


Related Questions

In most places of work, how long should it take someone to respond to an e-mail?

no obligation to respond

one hour

twenty-four hours

one week

Answers

Answer:

24 Hours

Explanation:

Now Ideally, someone when they are working should respond immediately, but its 24 hours because, if someone is in a different Timezone, Or you sent an email late and tehy read it at 12pm or something it allows them good wiggle room while giving you a dcently fast reply.

Answer: 24 hours

Explanation: It's correct

what is mainframe computer​

Answers

Answer:

Explanation:

it's a computer that is used by large companies for applications. For example, a census taker might use a mainframe computer. It's mainly used for bulk data processing .

What is GIGO ?
plz answer me​

Answers

Answer:

Garbage in, garbage out

Explanation:

In computer science, garbage in, garbage out is the concept that flawed, or nonsense input data produces nonsense output or garbage

The ability to understand a person's needs or intentions in the workplace is demonstrating
personnel
perception
speaking
listening

Answers

Answer:

perception i do believe is the answer

Select the correct answer. Which sign or symbol will you use to lock cells for absolute cell reference?
A.
ampersand
B.
asterisk
C.
dollar sign
D.
exclamation mark

Answers

Answer:

A. ampersand

Explanation:

Answer:

C. Dollar Sign

Explanation:

ABC IF U HAVE A LEGENDARY PET ON ADOPT ME OR ANYTHING COOL!! <3

Answers

Answer:

ABC PLEASE

Explanation:

Answer:

ABC i have mega owl and neon cow and mega frost <3

50 PTS
in Java
Write a program with a method called passwordCheck to return if the string is a valid password. The method should have the signature shown in the starter code.

The password must be at least 8 characters long and may only consist of letters and digits. To pass the autograder, you will need to print the boolean return value from the passwordCheck method.

Hint: Consider creating a String that contains all the letters in the alphabet and a String that contains all digits. If the password has a character that isn’t in one of those Strings, then it’s an illegitimate password!

Answers

import java.util.Scanner;

public class JavaApplication46 {

   public static boolean passwordCheck(String pass){

       String alphanum = "abcdefghijklmnopqrstuvwxyz1234567890";

       boolean legit = true;

       if (pass.length()>= 8){

           for(int i = 0; i < pass.length(); i++){

               if (alphanum.indexOf(pass.charAt(i)) != -1 && legit != false){

                   legit = true;

               }

               else{

                   legit = false;

               }

           }

       }

       else{

           legit = false;

       }

       

           return legit;

   }

   public static void main(String[] args) {

       Scanner scan = new Scanner(System.in);

       System.out.print("Enter a password: ");

       String password = scan.next();

       System.out.println(passwordCheck(password));

   }

   

}

I hope this helps!


a.
Define a computer with its proper meaning.​

Answers

Answer:

Computer

Explanation:

a programmable electronic device designed to accept data, perform prescribed mathematical and logical operations at high speed, and display the results of these operations.

Answer:

computer

Explanation:

An electronic machine that processes, stores data, and does calculations.

can anyone answer this ​

Answers

Answer:

I dont see the question

Explanation:

The meaning of docile can be determined by the... context clue. synonym atonym or explanation

Answers

Answer:

Synonym

Explanation:

I'm pretty sure it's either synonym or explanation, but if there isn't an explanation, it's almost always synonym... so... synonym is correct.

Answer:

it is explanation

Explanation:

trust me

PLEASE HELP!!
Computer networks allow computers to send information to each other. What is the term used to describe the basic unit of data passed from one computer to another?


message


package


packet


transmission

Answers

Answer:

Paquete de red o paquete de datos es cada uno de los bloques en que se divide la información para enviar, en el nivel de red. Por debajo del nivel de red se habla de trama de red, aunque el concepto es análogo. En todo sistema de comunicaciones resulta interesante dividir, la información a enviar, en bloques de un tamaño máximo conocido. Esto simplifica el control de la comunicación, las comprobaciones de errores, la gestión de los equipos de encaminamiento (routers), etcétera.

Al igual que las tramas, los paquetes pueden estar formados por una cabecera, una parte de datos y una cola. En la cabecera estarán los campos que pueda necesitar el protocolo de nivel de red; en la cola, si la hubiere, se ubica normalmente algún mecanismo de comprobación de errores.

Explanation:spero  teyaudee

Answer:

Packet

Explanation:

A data packet is the precisely formatted unit of data that travels from one computer to another.

(Confirmed on EDGE)

I hope this helped!

Good luck <3

Complete the sentence.
A _______ error might appear when you are attempting to view a secure web page

Answers

Answer:

An internal server error

Assignment 4: Evens and Odds

Answers

n = int(input("How many numbers do you need to check? "))

even = 0

odd = 0

for x in range(n):

   num = int(input("Enter number: "))

   if num % 2 == 0:

       print(str(num) + " is an even number.")

       even += 1

   else:

       print(str(num) + " is an odd number.")

       odd += 1

print("You entered "+str(even)+" even number(s).")

print("You entered "+str(odd)+" odd number(s).")

This works for me. Best of luck.

The program checks if user supplied integers are even or odd and displays the appropriate value. The program is written thus in python 3 ;

n_check = int(input("How many numbers do you need to check? "))

#number of values user wishes to test

even_count = 0

odd_counts = 0

for n in range(n_check):

num = int(input("Enter number: "))

if num % 2 == 0:

#even numbers leave no remainder when divided by 2

print(str(num) + " is an even number.")

even_counts+= 1

#increase count of even numbers

else:

print(str(num) + " is an odd number.")

odd_counts += 1

print("You entered "+str(even_counts)+" even number(s).")

print("You entered "+str(odd_counts)+" odd number(s).")

#display the number of even and odd numbers entered.

Learn more : https://brainly.com/question/24171161

Can someone answer the first question for me please I will give brainliest

Answers

Answer:

wired because if its wireless the the CONNECTION could break up and people would make people mad and it will be a better result in the long run

Four common types of distractions are

Answers

Visual Driving Distraction

PLEASE HURRY!!
Look at the image below

Answers

Answer:

Second part:

answer = multiply(8, 2)

First part:

def multiply(numA, numB):

 return numA * numB

Third part:

print(answer)

Explanation:

When creating a function, we always start with def function_name(): so the code for the first line is:

def multiply(numA, numB):

 return numA * numB ( * symbol refers to multiplication)

We are now left with two pieces of code: answer = multiply(8, 2) and print(answer). Since we need to always define a variable before using it, answer = multiply(8, 2) will come before print(answer).

Resulting Code:

def multiply(numA, numB):  <- first part

 return numA * numB

answer = multiply(8, 2)  <- second part

print(answer)  <- third part

Hope this helps :)

Problems that are undecidable and algorithms that are unreasonable both touch on the limits of the kinds of computing
that a computer can accomplish. In your own words, explain the difference between undecidable problems and
unreasonable time algorithms.

Answers

Answer:

An unsolvable problem is one for which no algorithm can ever be written to find the solution. An undecidable problem is one for which no algorithm can ever be written that will always give a correct true/false decision for every input value.

Undecidable problems simply describes problems which do not have the algorithm to produce the required 'yes' or 'no' solution while unreasonable time algorithm are those problems which run time grows exponentially.

A problem is tagged as Undecidable if no algorithm exists to allow such problem produce a 'yes' or 'no' solution. Hence, undecidable problems would sometimes run infinitely or give a wrong output in some cases.

Unreasonable time algorithm describes problems whose run time increases in an exponential nature. Such programs increases in run time very quickly due to the nature of the of the computation. Example ; 10^n.., where n is a range of values.

Therefore, both undecided and unreasonable time algorithm affects the limits of computing attainable by different computer systems.

Learn more :https://brainly.com/question/21242780?referrer=searchResults

While an image is still being editing, it is best to save it as a PDF. Group of answer choices True False

Answers

Answer:

f

Explanation:

No because when you save it, the new editing will not count.

The sales of last 6 months are stored in a list,
as follows
list1 = (12500, 35000, 12000, 40000, 55000,
60000]
How can you calculate the average sales?​

Answers

list1 = [12500, 35000, 12000, 40000, 55000,60000]

print(sum(list1)/len(list1))

We take the sum of all the elements in the list and divide the sum by the quantity of the elements. You can put however many elements in this list and you'll always get the average using the algorithm above.

Does anyone have a leg pet on adopt me? Ty!

Answers

Answer:

no

Explanation:

I have a legendary pet in adopt me, these are the legendaries im TRADING:

frost furry, ride or fly kitsune, mega neon owl (Traded), and kangeroo (traded).

are you interseted in anything?

Question 1 (10 points)


When using MLA format your font type and font size should be what?
Question 1 options:


Rockwell 12


Calisto 11


Times New Roman 11


Times New Roman 12
Question 2 (10 points)


What tab would you go to to add citations to your paper so you can include your source information?
Question 2 options:


Insert


Design


View


References
Question 3 (10 points)


What tab do you go to to put a header on your paper
Question 3 options:


References


Insert


Layout


Home
Question 4 (10 points)


When the same word is used in multiple locations or a word is used that was not quite appropriate, a thesaurus can be used to look up a (n) ____________ or word similar in meaning.
Question 4 options:


Synonym


Homonym


Antonym


Metronym
Question 5 (10 points)


In Word you can force a page break
Question 5 options:


By positioning your cursor at the appropriate place and pressing the F1 key


By hitting the enter key twice really fast


By clicking the Insert Tab and selecting Page Break in the ribbon


By changing the font size of your document
Question 6 (10 points)


In your ruler there are two triangles. The triangle on top that points down is called
Question 6 options:


First Line Indent


Hanging Indent


Tab


Left Indent
Question 7 (10 points)


Which would you choose to save a document with a new name?
Question 7 options:


Press Ctrl+S


Click File, Save


Click Tools, Options, Save


Click File, Save As
Question 8 (10 points)


To put a ruler on your screen to help you with spacing and alignment on your paper you would go to this tab
Question 8 options:


Insert


References


Design


View
Question 9 (10 points)


User can use ______ commands to search for and correct words in a document
Question 9 options:


Copy and Paste


Find and Replace


Header and Footer


Print and Print preview
Question 10 (10 points)


What tab do you go to for the spelling and grammar check?
Question 10 options:


Home


Review


Insert


File

Answers

Answer:

Find and replace header and footer

Someone plz im begging for ur help plzz??

Answers

Answer:

woah what subject is this-

Explanation:

Prepare a profile on major universities in the country Nepal ​

Answers

Answer:

Formal higher learning in Nepal began with the establishment of Tri-Chandra College in 1918, the first college in the country. Until 1985, Tribhuvan University (TU) was the only university in the country. The second university to be founded was Mahendra Sanskrit University. The inception of this university was soon followed by Kathmandu University in 1990, and Purbanchal and Pokhara Universities in 1995 and 1996, respectively. Many schools and colleges are run privately but none of the universities in Nepal are private.

This list includes all notable universities and colleges/campuses in Nepal. Entries are organised by courses offered, and listed in alphabetical order. Some entries that provide multiple courses may be duplicated in each of the relevant categories.

There are fourteen universities in Nepal. They are: Khwopa University (Proposed)

Agriculture and Forestry University in Chitwan

Far-western University in Kanchanpur

Gandaki University in Tanahun

Kathmandu University in Dhulikhel

Lumbini Bouddha University

Madan Bhandari University of Science and Technology

Manmohan Technical University in Biratnagar

Mid Western University in Birendranagar

Nepal Open University[1][2] in Lalitpur

Nepal Sanskrit University

Pokhara University in Pokhara

Purbanchal University in Biratnagar

Rajarshi Janak University in Janakpurdham

Tribhuvan University in Kirtipur

The university that will be profiled in their case is the Agriculture and Forestry University, Chitwan, Nepal.

The Agriculture and Forestry University, Chitwan, Nepal offers undergraduate, graduate, and PhD programs in agricultural sciences.

The university has several faculties such as the faculty of agriculture and animal sciences, fisheries, and aquaculture.

Learn more about universities on:

https://brainly.com/question/25853486

Select the correct answer.
What does a script supervisor do?
O A. supervises the final edits of the script
OB.
helps the video editor to segregate useful clips from the junk
Ос.
revises the initial script before the process of logging
D. keeps a close watch on the monitor
E.
carries out assembly editing for a production house

Answers

Answer:

B

Explanation:

How do information systems help organizations?

Answers

Answer:

Information systems assist in disseminating information by allowing managers and other organization leaders to store data in folders and documents that can be seamlessly shared with the appropriate employees.

Explanation:

who invite computer ?​

Answers

Answer:

Charles Babbage, an English mechanical engineer and polymath, originated the concept of a programmable computer. Considered the "father of the computer", he conceptualized and invented the first mechanical computer in the early 19th century.

If you meant who ‘invented’ computers, it was Charles Babbage.
Hope this helps!

I NEED HELP ASAP IM BAD AT THIS

Answers

A float is a floating point number. This means that's the number has a decimal place. Numbers with or without decimal places can be stored in a float variable but more commonly numbers with decimal points.

The correct choices are 1 and 3.4

What is the output of the following code:
lang=
['Python','C','C++, JAVA,ASP'PHP',VB', Oracle
'MySQL)
list1 = lang(2:-2]
list2 = langl-2:-5)
list3 = langl: : 3]
print(list)
print(list)
print(list3)​

Answers

Answer:

Syntax error.

Explanation:

There are many typing mistakes in this source code.

Order the steps for accessing the junk email options in Outlook 2016
Select Junk Email Options
Click the Junk button
Select a message
Choose one of the protection levels
Locate the Delete group on the ribbon​

Answers

Answer:

To access the the junk email options in Outlook 2016, follow the following steps.

1. Click the Junk Button

This will take you to the Junk messages that you have.

2. Select a message

Select a junk message from the list.

3. Locate the Delete group on the ribbon

The Junk email options is located in the 'Delete' group on the ribbon in the Home tab.

4. Select Junk Email Options

Click on the Junk email options button and a popup window will appear.

5. Choose one of the protection levels

Select the protection level you want from the various options listed including low, high, automatic etc.

Answer:

select a message, locate the Delete group on the ribbon, click the junk button, select junk email options, choose one of the protection levels.

Explanation:

What sorts of changes have you been observing in your society in your society in comparison in last 3 years​

Answers

People care less about their own opinions an more abt others
Other Questions
what is its important for the general public Use the following excerpt to answer the question."To help manage the national government, monarchs hired loyal civil servants typically born in the towns and educated at local universities. Their perspectives were national, not regional. The state, in the person of the monarch, now had sovereignty, or the utmost authority in decision making and in maintaining order. Everyone, including the nobles, was subordinate to that authority. . . .With sovereignty, the monarch now had the right to make laws for the entire nation and all its people."How did the establishment of nations expand the power and reach of government? -5+22=r-4+3r+5I need help please and thank u Andys sandwich consists of a20-gram piece of cheese, a 60-grampiece of turkey, and two 30-gram slices ofbread. What is the total weight ofAndys sandwich, in kilograms? lupita and kevin walk to school.lupita walks 3/5 mi.kevin walks 0.65 mi.who walks a greater distance to school?how much greater? i'm doing a math worksheet and its asking me to describe the stair of a slope. what does that mean?? Meditation upon a BroomstickWhich essay would BEST connect to this text?A) An essay that compares a sponge to human nature in a somewhat humorous wayB) An essay that describes the pros and cons of sweeping with different kinds of broomsC) An essay that compares a stray dog in the street to the author's own childhood pet dogD) An essay that argues that brooms are better than vacuums since they are more traditional Omar is about to start his final semester of college, and he doesn't have enough money saved to afford the $750 he needs in books. He's 21, so he's going to open his own credit card to pay for the books, and then not use it again. His plan is to pay $100 per month toward his bill, until it's paid off. Which credit card offer is the best offer for Omar? PLz HELP I BEG I GIVE U BRAINLYEST You use ________________ to communicate a risk and the resulting impact.A. risk management plansB. CBAsC. risk statementsD. POAMs Byron's MP3 player holds 75 songs. He has space for 26 more songs. Write an equation to find how many songs are already on Byron's MP3 player.A.) 75 + s = 26 B.)75/s = 26 C.) 26s = 75 D.)s + 26 = 75 Which example illustrates international interdependence? To be eligible for Bright Futures, you must submit a statement explaining how all money will be repaid submit a plan of action for all courses throughout college take at least three remedial credits in the first semester take at least six non-remedial credits per semesterplease only answer if you know what your talking aboutand if your right i will give brainiest. Describe 2 types of age roles What would be the best diet to your knowledge? $482.56 divided by 8 A square lawn has a area 98ft a spin keeper placed at the center of the lawn sprays water in a circular pattern that just covers the lawn what is the radius of the circle Write the equation of the following line 6. Afl termenul necunoscutUn puncta+ 5762= 8753*Oa= 2999Oa= 2919Oa= 2991 A collection of the same kind of cells working together to do the same job