_____ is the practice of using the internet to provide healthcare without going to a doctor’s office or hospital.
Telenurse
Telehospital
Telehealth
Teledoctor

Answers

Answer 1

Answer:

The answer to this question is given below in the explanation section.

Explanation:

The correct answer to this question is Telehospital.

Because Telehospital provides services where patients treated online by a physician. It is like providing medicine services remotely to patients.  

A live secure connection is established between patient and physician where physicians diagnose patient disease and recommend transcription.

It is the same as a typical visit to the hospital, except the doctor and patient are not on the same physical location. They are connected with each other remotely.

While other options are not correct because: telenursing is related to providing nursing services online, where telehealth is providing all health care services, it also includes education, training, and administrative services also. While teledoctor and telehospital used interchangeably.

But telehospital is the most and widely used term to diagnose patients remotely by physicians.

Answer 2

Answer- C: Telehealth

Explanation: Correct on Edg 2021


Related Questions

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

The spreadsheet prepared on the computer is called..........​

Answers

Answer:

electronic spreadsheet

Explanation:

I got it from google. Not 100% sure. Tell me if i'm wrong.

Answer:

Explanation:

electrion got it from goggle to sorry if it is wrong

After adding an image to her flyer, Danica played around to see which layout would look the best. At one point, her text was on top of her image. Which features can Danica use to fix the issue? Check all that apply. Position feature Wrap text feature Picture dialog box Insert tab Picture tools

Answers

Answer:

Position feature

Wrap text feature

Picture tools

Explanation:

Answer:

A.) Position Feature

B.)Wrap text feature

E.)Picture tools

Explanation:

What is the first priority when building or using vex robots

Answers

Hey I’m doing that too

Answer:

Make sure you add super glue to keep the structure without anything falling off.

Explanation:

4.5 code practice edhesive

Answers

Answer:

n= input("Please enter the next word: ")

x=1

while(n != "STOP"):

 print("#" + str(x) + ": You entered " + n)

  x=x+1

  n= input("Please enter the next word: ")

print("All done. " + str(x-1) + " words entered.")

Explanation:

What number will be output by the console.log command on line 7? *
2 points
Captionless Image

Answers

Answer:

The output is 100

Explanation:

See attachment for complete question

I'll be making reference to the attachment time to time.

On line 1 of the attachment, variable fizz was declared

On line 2, variable bop was declared

Variable bop was initialised to 10 on line 3

Variable fizz was initialised to 20 on line 4

On line 5, 100 was assigned to bop

On line 6, 200 was assigned to fix

The value of bop was printed on line 7.

Note that, the current value of bop is not 100 (as updated on line 5).

Hence, the output of the program at line 7 is 100

Based on the program command displayed in the console, the output displayed by the console.log command would be 100.

The variable bop is assigned a value of 10 based on the command in line 3

In line 5 however, an update has been made to the bop variable, and the variable has been update to 100.

The newly assigned varibale value on line 5 would be the value of the bop variable unless updated again.

Hence, the output would be 100.

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

True or false, USBs are slower than RAM.

Answers

Answer:

False

Explanation:

write the seven tasks of previntng maintenance?​

Answers

Answer:

These are testing, servicing, calibration, inspection, adjustment, alignment and installation. Every maintenance team member should be conversant with and apply them accordingly. A preventive maintenance is a crucial component of every company's TPM program.

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:

Dan frequently organizes meetings and would like to automate the handling of the meeting responses. What should he
do to automatically move those responses into a subfolder?
O Configure an automatic reply.
O Configure the default meeting request options.
O Configure a Meeting Response Rule.
O Nothing, Dan must respond individually.

Answers

Answer:

The correct option is;

Configure a Meeting Response Rule

Explanation:

Meeting Response Rule activates the sorting of incoming messages and filtering of the responses to meeting request (which by default are received in the inbox), to prevent the inbox from being filled with different meeting request response and rather, move the responses to another specified folder, thereby ensuring that the mailbox is not cluttered.

Answer:

c

Explanation:

PLEASE HELP asap 60 POINTS
needs to be in Java

A programmer has written a method called replaceLetter that counts the amount of times a letter is present in a word. Your job is to modify this existing method to fulfill a new purpose.

Rather than count the instances of a letter in a String, write a program that replaces all instance of one letter with another. You should directly modify replaceLetter to get this program to work. In the starter code, replaceLetter only has two parameter values. Your new version should have a third parameter to indicate which String value is replacing the existing letter.

For example,

replaceLetter("hello", "l", "y")
returns

"heyyo"
Sample output:

Enter your word:
hello

Enter the letter you want to replace:
l

Enter the replacing letter:
x
hexxo
Hint: The letters will be assigned from the user as String values. Make sure to use String methods to compare them!

Answers

import java.util.Scanner;

public class JavaApplication45 {

   public static String replaceLetter(String txt, String txt1, String txt2 ){

       char one = txt1.charAt(0);

       char two = txt2.charAt(0);

       String newTxt = "";

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

           char c = txt.charAt(i);

           if (c == one){

               newTxt += two;

           }

           else{

               newTxt += c;

           }

       }

       return newTxt;

   }

   public static void main(String[] args) {

       Scanner scan = new Scanner(System.in);

       System.out.println("Enter your word:");

       String word = scan.nextLine();

       System.out.println("Enter the letter you want to replace:");

       String txt1 = scan.next();

       System.out.println("Enter the replacing letter:");

       String txt2 = scan.next();

       System.out.println(replaceLetter(word,txt1,txt2));

   }

   

}

I hope this helps!

What would a digitizing application create?

a raster image

a curved-line vector

a pixel

a straight-line vector

Answers

A digitizing application create is option D: straight-line vector.

What is digitizing process?

The term digitization is the process of transforming analog signals or information in any form into a digital representation that is understandable by computer systems or electronic devices.

It is significant because, by its very nature, information in digital form is not fixed in the same way that text printed on paper is. Additionally, they are easily editable and leave no traces of erasures or emendations. Editing, formatting, and committing print are all pretty simple processes.

Therefore, Bits of information are arranged. In the end, a discrete sequence of points or samples from an object, image, sound, text, or signal one that is typically an analog signal and are represented by a string of integers. Hence, Information transformation techniques is done by option D.

Learn more about digitizing application from

https://brainly.com/question/16455891
#SPJ1

Answer:

A. a raster image

Explanation:

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?

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

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 .

In 3 sentence explain what is a spreadsheets.

Answers

Answer:

A spreadsheet is a computer application for organization, analysis and storage of data in tabular form. Spreadsheets were developed as computerized analogs of paper accounting worksheets. The program operates on data entered in cells of a table.

Hope this helped, have a good day

Why can it be helpful to perform mathematical calculations using programming? Choose the best answer.

Answers

Answer:

The answer is below

Explanation:

Given that there is no available option.

Hence, It can be helpful to perform mathematical calculations using programming because

1. Programming is more viable and efficient in solving mathematical problems.

2. It is faster in getting an answer and easier to manipulate

3. It can be cheaper than human and be most time readily available

4. It can save and quickly recalls a memory

Four common types of distractions are

Answers

Visual Driving Distraction

Hailey was working on a multimedia presentation that included both video and audio files. The file was huge, and she wanted to send it to her coworker in another office. She needed to reduce the size of the file so that it could be transmitted faster. The utility she used to do this was _____.

Answers

Answer:

a compression software such as WinRar

Explanation:

The utility she used to do this would have been a compression software such as WinRar. This software compresses large files or various files into a single ZIP or RAR file. This compressed file is much smaller than the original files that it contains, which is accomplished through a compression algorithm. This can also be encrypted with a password so that only specific individuals with access can open the file. Once unzipped or extracted, the original files are obtained in its original size.

PLEASE HURRY

In binary, an individual 0 or 1 is called a bit O True O False​

Answers

the answer is true !

Answer:

true

Explanation:

true

what important advice to include about spyware, viruses and other types of malware

Answers

Answer:

You should probably include the fact that most of these things will disguise themselves as fake downloads and that will most of the time claim to allow you to download something that costs money for free.

Explanation:

thats all i could come up with

The best antivirus that you need to stay safe from viruses, malware, and spyware is just common sense. Don't click suspicious links to places you don't know. Get a good antivirus. Don't click links with weird names at the end like .co or .it unless you are sure it is a safe website. Don't download weird stuff. Common sense my guys!

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:

Python Project Worksheet
Print | Save
Output: Your goal
You will write a program that asks a user to fill in a story. Store each response in a variable, then print the story based on the responses.

Part 1: Plan and Write the Pseudocode
Use the following guidelines to write your pseudocode for a fill-in story program.

Decide on a list of items the program will ask the user to input.
Your program should include at least four interactive prompts.
Input from the user should be assigned to variables and used in the story.
Use concatenation to join strings together in the story.
Print the story for the user to read.


Write your pseudocode here:











Part 2: Code the Program
Use the following guidelines to code your program.

Use the Python IDLE to write your program.
Using comments, type a heading that includes your name, today’s date, and a short description.
Set up your def main(): statement. (Don’t forget the parentheses and colon.)
Conclude the program with the main() statement.
Include at least two print statements and two variables.
Include at least four input prompts.
Use concatenation to join strings.
Follow the Python style conventions regarding indentation in your program.
Run your program to ensure it is working properly. Fix any errors you may observe.
Example of expected output: The output below is an example of a “Favorite Animal” message. Your specific results will vary depending on the choices you make about your message.

Output

The kangaroo is the cutest of all. It has 5 toes and a beautiful heart. It loves to eat chips and salsa, although it will eat pretty much anything. It lives in New York, and you must be super sweet to it, or you may end up as its meal!


When you've completed writing your program code, save your work by selecting 'Save' in the Python IDLE. When you submit your assignment, you will attach this Python file separately.

Part 3: Post Mortem Review (PMR)
Using complete sentences, respond to all the questions in the PMR chart.

Review Question Response
What was the purpose of your program?
How could your program be useful in the real world?
What is a problem you ran into, and how did you fix it?
Describe one thing you would do differently the next time you write a program.

Part 4: Save Your Work
Don't forget to save this worksheet. You will submit it for your assessment.

Print | Save

Answers

Answer:

I will do it and send it in a pic

Explanation:

give me a sec

Which of the following statements are true regarding Moore’s Law?
states that storage capabilities will triple every two years

is a purely abstract concept that does not clearly apply to the computing industry

was described by Gordon Moore in the early 2000s to predict growth in the fiber optic industry

relates to increases in processing power of computers and has been quite accurate since it was introduced in 1965

Answers

Answer:

The correct answer to this question is given below in the explanation section.

Explanation:

The question is about Moore's Law.

The given options in this question are:

states that storage capabilities will triple every two years is a purely abstract concept that does not clearly apply to the computing industry was described by Gordon Moore in the early 2000s to predict growth in the fiber optic industry relates to increases in processing power of computers and has been quite accurate since it was introduced in 1965

The correct option to this question is 4. i.e:

Moore's Law related to increases in the processing power of computers and has been quite accurate since it was introduced in 1965. This law was based on a prediction and made by American engineer Gordon Moore in 1965. And it states that the number of transistors per silicon chip doubles every year.

While the other options are not correct because:

It does not state the storage capabilities that will triple every two years, but this law state that computing power and transistors on chips become double every year. It is not a purely abstract concept but it is applied in computing and this law become more famous due to its value. This law was presented in 1965.

Answer:DExplanation:

relates to increases in processing power of computers and has been quite accurate since it was introduced in 1965

Which do you think is more important: Motorized vehicles like cars and airplanes or computers?

Answers

Answer:

I think computers are more important

Explanation:

The average person drives a vehicle to work to go and work on a computer.

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!

How has technology effected the way we communicate?

Answers

Indeed it has.

Advancements in technology and changes in communication generally go hand in hand. Landlines displaced the telegraph and cell phones replaced landlines. The arrival of the internet opened new doors of personal communication. E-mails replaced postal mails and social media took the place of text messages.

Communication technology, such as mobile phones, email, text messaging, instant messaging and social networking have had a profound effect on nearly everyone's business and personal lives. While technology makes communications faster and easier, at times it can also be intrusive and misinterpreted.

Increased isolation, reduced social interaction and social skills, and increased human-to-machine interactions are all a result of an overuse of technology, which has created a wall between many people globally.

Technology has the ability to enhance daily living from appliances to mobile devices and computers, technology is everywhere. ... In the rise of digital communication, technology can actually help communication skills because it allows people to learn written communication to varying audiences.

-Astolfo

short note on where do we use electronics in daily life

Answers

Answer:

our laptops to do school work etc

our phones- use them everywhere

Explanation:

Linux is a powerful and free OS®️
-True
-False

Answers

Answer:

TRUEE

Explanation:

It’s is true that Linux is powerful and free

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

Other Questions
Please help me, please can you help me here plz Color blindness occurs when a person doesn't have one or more types of cones. Based on the simulation, if a persondidn't have red cones, how would their perception of color change? i will brainliest right answer4. Where was Alexey when he created Tetris?a. Parisb. Russiac. The United States of America d. Germany I need this ASAP!!!Describe how Hinduism can be categorized as a religious system.Describe one way that Hinduism may be categorized as a social system. Which relation is a function?O A.{(5,2), (-2,-8), (7, -1) (-2, 6)}B.{(7, 1), (4,2), (4,-4), (7,3)}C.{(6,5), (3, 2), (6,4), (5,8)}O D.{(6,-4), (5, 8), (3,6), (-4,-4)} If Martha and Howard are 5 hours into the marathon, how far has each person run? Of the 482 graduating seniors at Palmdale High School, approximately 5/8 are going to college, and approximately 1/2 of those going to college are going to an in-state school. Which of the following is the closest estimate for how many of the graduating seniors are going to an in-state school? A Bee MysteryRecent surveys around the world have found some very sad and troubling news. Bees are not doing well. According to Time: Science & Space, "an estimated ten million beehives ... have been lost since 2006." What's worse, scientists are not sure why. Most beekeepers will tell you that bees tend to die in large numbers every spring. This is normal and necessary to keep a hive of bees healthy. But when the deaths add up to more than half the bees in an entire country, that is something altogether different and dire. Scientists have called this "colony-collapse disorder" or CCD. This name describes the effect, though, and not the cause of the die-out. Scientists simply do not know what is killing the bees.Many things make it hard for bees. Varroa mites move into a colony and weaken it. Further, these mites carry viruses that attack those that survive. In addition, a new bacterium was recently discovered that attacks bees intestinally and kills them. Beekeepers go to great lengths to protect bees from these invaders, and for many years have been able to control them. All these attackers and the methods used to combat them do stress the bees, however.Many feel the problem is not some new threat, but a decline in the habitat available to bees. Development of grasslands once home to wild flowers and food for bees has been universal. Pavement makes it easy to drive, but it replaces wild grasses and other food sources for bees. Perhaps, long before the mites and parasites moved in, humans took away enough of the bees' habitat to weaken their health. We plowed under a varied habitat and plantedin many casesa single plant like beets. Then we sprayed all kinds of chemicals on the beets to keep other bugs away and in doing so also harmed bees. Now, to treat all the mites and other invaders, bee keepers use additional chemicals to kill the invaders. These chemicals also shorten the life of the bees. Have the use of chemicals, loss of habitat, and invading parasites made life impossible for bees? Experts continue to argue various theories, but few have any answers.Colony collapse disorder is perhaps one of the most mysterious problems modern science has tried to solve. Whether the problem is environmental or an unknown disease, we will all feel the effects if bees continue to decline. Bees affect almost every aspect of the human food chain. From the fruits, vegetables, and grains we eat, to the grasses and grains we feed our livestock, we depend on bees to keep us healthy. According to the Natural Resources Defense Council, bees account for 15 billion dollars in crops. Honey is a treasure for sure, but the real gold is in the strawberries, apples, peaches, and green beans we eat and need to stay healthy ourselves. All told, the outlook for bees is not good. The outlook for humans may not "bee" so good either.Read this sentence from the text:Perhaps, long before the mites and parasites moved in, humans took away enough of the bees' habitat to weaken their health.How does this line function in the text?A. It adds a reason that supports the thesis.B. It provides general information about the topic.C. It is the thesis of the article.D. It concludes the ideas in the article.If you get this right you get 100 points and a brainliest.The sentence in a paragraph has the arrow symbol what was the quota system Identify the structure labeled X in the diagram Polypeptide (protein) made up of amino acidsDNA make up of nucleotides DNA made up of amino acids Messenger RNA made up of nucleotides PLEASE HELP Due TodayMatch the term with one of its characteristics.1. Automation software that enables servers to be provisioned automatically or with a few clicks of a mouse. 2. Log managers read your system logs and look for patterns and make reports. 3. Created an elastic infrastructure that expanded and contracted as demand changed. cloudmaintain securitydata center What type of stress occurs when a rock mass is pushed in opposite directions? What did Mary Hays and Margaret Corbin have in common?A)They were the first female officers in the Continental ArmyB)They shared the nickname, Molly.C)They took their fathers places in battle after their dads got hurtD)They were never allowed to touch the cannons, so they never fired them. 3. IDENTIFY the following reactions as Oxidation / Reduction reactions ?a) PbO + H2 --> Pb + H2Ob) ZnO + C --> Zn + COc) H2S + Cl2--> 2HCl + Sd) Fe203 + 3C0 --> 2Fe + 3CO2e) PbS + 4H202 --- PbSO4 + 4H2O Look at photo because I dont get it The system brings molecules to the cells. It includes blood vessels and the heart.respiratory systemdigestive systemcirculatory systemnervous system HELP HELP HELPARE MONOPOLYS POSITIVE OR NEGATIVE FOR SOCIETY Jordan has the following assets and liabilities:_______. Two cars $10,000 House $200,000 Mortgage $100,000 Cash $1,000 Car loans $3,000 Checking account balance $2,000 Credit card balance $1,000 What is Jordans wealth?a. $107,000b. $213,000c. $109,000d. $111,000 Read the excerpt from "Sinners in the Hands of an Angry God." Yea, God is a great deal more angry with great numbers that are now on earth; yea, doubtless with many that are now in this congregation, who it may be are at ease, than he is with many of those that are now in the flames of hell. What does this excerpt suggest about Edwards's opinion of society?