Answer: New questions in Health
Which member of the multidisciplinary team would help a patient improve his flexibility in the joints after a knee-replacement surgery? A. a physiot…
What are two advantages of a multidisciplinary team approach? better diagnosis in complex cases shared responsibility for decisions more opportunit…
MARKING PEOPLE AS BRAINLIST PLEASEEE HELP Where is the carbon dioxide picked up and the oxygen unloaded in the body? A:Arteries B:Veins C:Capillar…
Which healthcare professional would be primarily responsible for treating a patient for his anxiety disorder after a surgery? A. a nurse B. a nutr…
Do Now: What might be a situation where it might be important to identify 3 points somebody? What are different strategies that scientists could use …
Explanation:
BRAINLIEST!!! HELP!!! 20 PNTS!!
Which is the correct way to add a border color?
A. border-color(red);
B. border-color: red;
C. red: border-color;
D. border-color = red;
Answer:
The answer you are looking for is "B.) border-color: red"
HTML and CSS coding is fairly simple, but to assign a border color to a certain tag, you would write
Tag Name (without <>'s)
{
border-color: red
}
Remember that your border color will affect all of the tags mentioned in this command.
Can we trust in Avast Antivirus ⊕?⊕
Answer:
yes we can
Explanation:
im also using avast antivirus and it was no fault in avast antivirus
Answer:
Avast is a good antivirus program. It is not a scam or malware. I personely use Avast a while back and they are now basically the same thing, only with a different user interface.
Explanation:
Hope It's answer you plz mark as Brainlist
What is a letter that is written by someone you know and is used by a college during the application process?
Answer:
Letters of recommedation ..
Explanation:
hey plz help, and thanks
Answer:D im pretty sure
Explanation:im sorry if get it wrong So sorry ok just sorry
how to find radius of the base examples
Answer:radius is half the diameter
Explanation:
ASCII is a common format for the representation of characters in writing code. How many characters can be represented in the standard ASCII encoding
Answer:
A total of 128 characters can be represented in the standard ASCII encoding.
Explanation:
The American Standard Code for Information Interchange (ASCII) was created to make an international standard for encoding the Latin letters. In 1963, ASCII was received so data could be deciphered between PCs; speaking to lower and upper letters, numbers, images, and a few orders.
Since ASCII is encoded using ones and zeros, the base 2 number framework, it uses seven bits. Seven bits permits 2 to the power of 7 = 128 potential blends of digits to encode a character.
ASCII consequently ensured that 128 significant characters could be encoded.
What do you mean by word-wrap?
Answer:
it is also know as line breaking
Explanation:
is breaking a section of text into lines so that it will fit into the available width of a page, window or other display area
Which background-repeat value represents this div?
repeat
repeat-y
repeat-x
no-repeat
Answer:
repeat-y ................ ..
If you got band from a local library, what would be the reason for it besides shouting and talking? You're answer has to fit you're personality?
Answer:
I would get a band from the library because I check out ten books and returned them in a week. I also would just be in the library all the time and they would get frustrated. That or I would spend hours talking to a librarian about my favorite books and they would get fed up with me.
Imagine you're in charge of managing an annual fest at your school. You have to select students and assign them different tasks. Write a short essay on the qualities and traits you would be looking for while selecting students. Explain why you think these qualities and traits are important. Also, describe how the lack of such qualities and traits would affect the work.
Answer:
Quality traits are important in many ways. A persons traits identifies them of how they treat you or how you might treat them. It is important to find good working people for the job. For example if one student is good at a specific task I might put them in that task or if another is good at stocking shelves or finding books I might put them in the library to help students find books. It is important as a supervisor to find people that listen and follow instructions not people that mess around and are unorganized. These qualities and traits are important to see the real potential of the employees. Finding the right people for the job will help the school and you as the supervisor to manage these employees. Making a application or employment sheet will help to find the right people making a sheet with some questions and have the potential employees fill it out to find their traits and skills.
Explanation:
Sorry I didn't have much background information on what you wanted me to write hope this works you can edit and change stuff though.
Also run this through Grammarly's plagiarism tester to see if it is plagiarism!
What is Microsoft Windows?
James wants to create a web page where he can write two paragraphs of text. The first paragraph of text should be colored red and the
second blue. Which snippet of code show the principle behind how James creates this page?
Answer:
The first code does it
Explanation:
Each of the attached code snippet is divide into two parts.
The CSS partThe html partFrom the four code snippets, the first one answers it.
The syntax to format the paragraph of an html text using css is:
p#paragraph-id{
color:color-name
}
Analysing each element
p# -> This implies that a paragraph is to be formatted
paragraph-id -> This represents the id of the paragraph
{} -> The open and close curly braces house the properties to be formatted
color:color-name -> implies that the color of the element be changed to color-name (e.g. red or blue)
In the body tag of the html code, the first paragraph has an id of para1 and the second has para2 as its id.
i.e. <p id = "para1">......
So, the first paragraph will be formatted red while the second will be blue
The Internet:
O A. only gives us access to our local communities.
O B. hinders our ability to influence people.
O C. limits us to local social networking sites.
O D. enables us to join global online communities.
Answer:
D- it enables us to join global online communities.
Explanation:
Thanks to social media and other websites, content you produce can be seen all over the world.
PLEASE HURRY!!
Look at the image below!
PLS HELP BEING TIMED!!!!
Why do prospective lenders only accept FICO credit reports that are one or two days old, at most?
O Good credit scores can plummet quickly
O Credit scores change on a daily basis.
O Bad credit scores can improve quickly.
O Credit reports expire after two days and are no longer valid.
Answer:
O Credit scores change on a daily basis.
Explanation:
8.10 Code Practice Question 3
Can someone please help cause this has me lost I took a picture of the question because that would be too much to try and type.
I’m sorry if the quality is bad I tried to get a good angle!
terms = ["Bandwidth", "Hierarchy", "IPv6", "Software", "Firewall", "Cybersecurity", "Lists", "Program", "Logic",
"Reliability"]
def swap(arr, in1, in2):
w = arr[in1]
arr[in1] = arr[in2]
arr[in2] = w
print(terms)
swap(terms, 5, 1)
swap(terms, 2, 4)
swap(terms, 3, 5)
swap(terms, 5, 6)
swap(terms, 6, 8)
swap(terms, 8, 9)
print(terms)
This is how I interpreted the question. If I need to make any changes, I'll do my best. Hope this helps though.
The program is an illustration of lists and list manipulation
ListsLists are variables that are used to hold multiple values in one variable name
Python ProgramThe program in Python, where comments are used to explain each line is as follows:
#This defines the swap function
def swap(arr, pos1, pos2):
myList = arr[pos1]
arr[pos1] = arr[pos2]
arr[pos2] = myList
#This initializes the list
terms = ["Bandwidth", "Hierarchy", "IPv6", "Software", "Firewall", "Cybersecurity", "Lists", "Program", "Logic", "Reliability"]
#This prints the list elements
print(terms)
#This swaps the second and the sixth list elements
swap(terms, 5, 1)
#This swaps the third and the fifth list elements
swap(terms, 2, 4)
#This swaps the fourth and the sixth list elements
swap(terms, 3, 5)
#This swaps the sixth and the seventh list elements
swap(terms, 5, 6)
#This swaps the seventh and the ninth list elements
swap(terms, 6, 8)
#This swaps the ninth and the tenth list elements
swap(terms, 8, 9)
#This prints the list elements
print(terms)
Read more about lists and list manipulations at:
https://brainly.com/question/24941798
just hellllllp me plzzzzzzzzzzzzz
it should increase the amount of thrust
Answer:
It is C.
Explanation:
Hope this helped have an amazing day!
Zack sees an online contest. He could win $10,000 instantly! On the sign-up form he enters his name and email address. He is also asked to enter his nickname, the name of any pets, and his mom's maiden name. Should he do it?
Answer:
Do not please! Online hackers and identity thieves can use such informations or clues to figure out Zack's passwords.
Explanation:
In this scenario, Zack sees an online contest stating that he could win $10,000 instantly! On the sign-up form he enters his name and email address. He is also asked to enter his nickname, the name of any pets, and his mom's maiden name.
Hence, it is advisable, that Zack shouldn't do it because online hackers and identity thieves can use such informations or clues to figure out Zack's passwords.
Basically, this type of cyber attack is simply known as baiting in social engineering.
Social engineering can be defined as a manipulative strategy or technique that involves the use of deceptive and malicious activities on unsuspecting victims in order to gain unauthorized access to their confidential or private information for fraud-related purposes. Some examples of social engineering are quid pro quo, phishing, baiting, tailgating etc.
Which best describes what databases do?
They guarantee users find needed data.
They create categories for data.
They identify important data.
They enable users to search for data.
Answer:
I think the first one
Explanation:
not sure you can also do some research bout it
put each sentence in the correct place please :)
the first image matches with the last sentence.
the second image (fireworks) match with the first sentence.
the third image (rocket) matches with sentence two.
and the last image matches the third sentence.
Answer:
sentence 1 -> picture in box 2
sentence 2 -> picture in box 3
sentence 3 -> picture in box 4
sentence 4 -> picture in box 1
Which term refers to the portion of the hard drive where print jobs are stored before going to the print device
Answer:
Print Queue.
Explanation:
I majored in Technology
Printer spoolers, which queue print jobs and send them one at a time to a printer, should not be confused with printer drivers.
What print jobs are stored before going to the print device?In order to enable control of print queue actions like stopping, restarting, or canceling tasks, a print queue provides users with printer management features. Some print queues let users rearrange the queue's order and assign print jobs a higher priority.
Messages that need to be printed are gathered in print queues. An Unspecific print queue can be started or canceled.
Applications can print with the help of printer drivers without having to be aware of the specific technical specifications of each printer model.
Therefore, The area of the hard disk where print jobs are kept before being sent to the printer is referred to as the print queue.
Learn more about print device here:
https://brainly.com/question/4005823
#SPJ6
Which examples demonstrate common education and qualifications for Manufacturing Production Process Development careers? Check all that apply. Answer: A. Hugo uses CAD software to create a product design. D. Latisha is a Mechanical Engineer with a bachelor's degree. E. Oliver carefully calculates the dimensions of a product.
Answer:
A D E
Explanation:
I got it right on Edge.
Answer:
A D E
Explanation:
just did the work
:)))))
what do you understand by the term "Artificial Intelligence "?
Answer:
Artificial Intelligence (AI) is the branch of computer sciences that emphasizes the development of intelligence machines, thinking and working like humans. For example, speech recognition, problem-solving, learning and planning.
What is a resistor?
O A switch
O A light bulb
O A battery
Answer:
A Battery would be the correct awncer
(Java)Write a program that calculates and displays the conversion of an entered number of dollars into currency denominations—20s, 10s, 5s, and 1s. Example output: $452 converted is 22 $20s, 1 $10s, 0 $5s, and 2 $1s.
Answer:
Below!
Explanation:
This is the code I have. I am not sure what I am missing that it won't accept -
import java.util.Scanner;
class Dollars {
public static void main(String[] args) {
int numTwenties,numTens,numFives,numOnes,dollarAmount;
Scanner sc= new Scanner(System.in);
System.out.println("Please enter a dollar amount: ");
dollarAmount = sc.nextInt();
numTwenties = dollarAmount/20;
numTens = (dollarAmount - 20*numTwenties)/10;
numFives = (dollarAmount - (10*numTens + 20*numTwenties))/5;
numOnes = (dollarAmount - (10*numTens + 20*numTwenties + 5*numFives));
System.out.println(+ dollarAmount + " converted is" + numTwenties + " $20s, " + numTens + " $10s, " + numFives + " $5s, and " + numOnes + " $1s.");
}
}
This is what it is giving me -
Test CaseIncomplete
Dollars 598
Input598
OutputPlease enter a dollar amount: 598
598 converted is29 $20s, 1 $10s, 1 $5s, and 3 $1s.
Results
$598 converted is 29 $20s, 1 $10s, 1 $5s, and 3 $1s
Expected Output
$598 converted is 29 $20s, 1 $10s, 1 $5s, and 3 $1s
It's mainly the price measure with one currency against the other, even as rate changes, money through one country can get relatively weak or powerful in comparison with the other currencies, and the further program can be defined as follows:
Program Explanation:
Import package.Defining a class Conversion .Defining an integer variable "twenties, tens, fives, ones, amount, n".After defining a variable, a Scanner class object is declared that inputs value in it.In the next step, a conditional statement is declared that checks value and hold its calcuated value.At the last, a print method is declared that prints its value.Program:
import java.util.*;//import package
public class Conversion //defining a class Conversion
{
public static void main(String ar[])//defining a main method
{
int twenties, tens, fives, ones, amount, n;//defining an integer variable
Scanner obcdf= new Scanner(System.in);//creating Scanner class object to input value
System.out.println("Enter amount: ");//print message
amount = obcdf.nextInt(); //input integer value
n = amount; //holding innput value
if(amount > 20)//using if block that check amount value greater than 20
{
twenties = (int)(amount/20); //using twenties that divides amount value by 20 and hold its integer value
amount = amount % 20;// holding modules value in amount variable
}
else //defining else block
{
twenties = 0;//holding 0 in twenties variable
}
if(amount > 10)//using if that check amount value greater than 10
{
tens = (int)(amount/10);//using tens that divides amount value by 10 and hold its integer value
amount = amount % 10;// holding modules value in amount variable
}
else //defining else block
{
tens = 0;//holding 0 in tens variable
}
if(amount > 5)//using if that check amount value greater than 5
{
fives = (int)(amount/5);//using tens that divides amount value by 5 and hold its integer value
amount = amount % 5;// holding modules value in amount variable
}
else //defining else block
{
fives = 0;//holding 0 in fives variable
}
if(amount > 1)//using if that check amount value greater than 1
{
ones = (int) amount;//holding amount value in ones variable
}
else //defining else block
{
ones = 0;//holding 0 in ones variable
}
System.out.println("$"+n+" converted is "+twenties+" $20s, "+tens+" $10s, "+fives+" $5s, and "+ones+" $1s."); //print value
}
}
Output:
Please find the attached file.
Learn more:
brainly.com/question/4448370
Major innovations made from the establishment of abucus to the 5th computer generation
Answer:
Cogs and Calculators
It is a measure of the brilliance of the abacus, invented in the Middle East circa 500 BC, that it remained the fastest form of calculator until the middle of the 17th century. Then, in 1642, aged only 18, French scientist and philosopher Blaise Pascal (1623–1666) invented the first practical mechanical calculator, the Pascaline, to help his tax-collector father do his sums. The machine had a series of interlocking cogs (gear wheels with teeth around their outer edges) that could add and subtract decimal numbers. Several decades later, in 1671, German mathematician and philosopher Gottfried Wilhelm Leibniz (1646–1716) came up with a similar but more advanced machine. Instead of using cogs, it had a "stepped drum" (a cylinder with teeth of increasing length around its edge), an innovation that survived in mechanical calculators for 300 hundred years. The Leibniz machine could do much more than Pascal's: as well as adding and subtracting, it could multiply, divide, and work out square roots. Another pioneering feature was the first memory store or "register."
Apart from developing one of the world's earliest mechanical calculators, Leibniz is remembered for another important contribution to computing: he was the man who invented binary code, a way of representing any decimal number using only the two digits zero and one. Although Leibniz made no use of binary in his own calculator, it set others thinking. In 1854, a little over a century after Leibniz had died, Englishman George Boole (1815–1864) used the idea to invent a new branch of mathematics called Boolean algebra. [1] In modern computers, binary code and Boolean algebra allow computers to make simple decisions by comparing long strings of zeros and ones. But, in the 19th century, these ideas were still far ahead of their time. It would take another 50–100 years for mathematicians and computer scientists to figure out how to use them (find out more in our articles about calculators and logic gates).
Explanation:
If you had three extra siblings, what would be your birth order and what personalities would you like them to have?
Answer:
mixed personalities l
that will be cool
Answer:
I already have 4 step brothers, 2 real brothers, 1 step sister, and a half sister, so 3 more people would be a lot. If I got to pick their personalities and gender, I would want 1 more sister and 2 more brothers. I would watn a more alt brother, a more fem brother, and an indie sister. Kinda just an aesthetic type for them.
Question #5
Multiple Choice
Suppose this is your user-defined data type.
class player:
life = 3
magic = False
name = "
Which statement creates an instance of your data type?
O myPlayer = player()
O myPlayer.player()
O myPlayer = new player()
O myPlayer = player
Answer: myPlayer = player()
Explanation: correct edge answer 2020
Answer: myPlayer = player()
Explanation: got it right on edgen
objets will never appear to have more than one vamishing point
true or false
Answer: it’s True
Explanation:
Can someone help me get spotify premium
Answer:
Yes just go to spotify and pay for spotify premium.
Explanation:
Answer:
Buy it, go to the app store or google play and it will surely pop up like a sign saying premium.
Explanation:This is so hard :/