What uses HTML hypertext links that users can click to access different locations or information?
A. Operating system
B. Domain name
C. Web page
D. Client program

Answers

Answer 1
I’m pretty sure it’s C. Web page
Answer 2

A computer program which uses hypertext markup language (HTML) hypertext links that users can click to access different locations or information is: C. Web page.

A hyperlink refers to an element in a hypertext markup language (HTML) document that provides a link (direct access) to another document, file, location, webpage, and an image.

In Computer science, a hyperlink can be used to directly link to the same path in a hypertext markup language (HTML) document or another HTML document such as a webpage.

Generally, you can insert a hyperlink that end users can click to access different locations or information in the following:

An email address A fileA webpage

In conclusion, a typical example of a hyperlink on a webpage is demonstrated below;

Learn more about hyperlink here: https://brainly.com/question/25760645


Related Questions

By default, your computer will organize your files in the order they were created.
True
False

Answers

true, most computers will do this but it depends on the computer and the program being used.

TRUE

True, but not for all operating systems.  

Can someone help me? Thanks.

Answers

Answer:with what exactly

Explanation:

what web 2.0 features allows users to subscribe to a data plan that charges for the amount of time spent on the internet?
a.Folksonomy b. long tail c.user participation d.application

Answers

Answer:

The answer to this question is given in the explanation section. The correct option is long tail

Explanation:

a.Folksonomy

Folksonomy is a way of organizing data and digital content. With Web 2.0, users can collaboratively manage and tag photos, journals and other media. As more users do this, creates a system of classification for the media and information.  so this option is not correct

b. long tail (correct option)

Some sites are able to offer services as well in which users can subscribe monthly or pay a fee every so often. An example of this would be Netflix.

c.user participation

All users have the free will to contribute to the site which makes many Web 2.0 pages public. With sites such as Wikipedia, anyone is open to the editing of articles. Information is provided two-way instead of solely from the site owner.

d.application

Web 2.0 applications that allow anyone to create and share online information or material they have created. As you know that there are number of different types of web 2.0 applications including wikis, blogs, social networking, folksonomies, podcasting & content hosting services.

The web 2.0 features that allows users to subscribe to a data plan is  b. long tail

Web 2.0  enables internet users to develop and share contents they have created on web pages.

Long tail enables users to subscribe to a data plan before they can have  access to contents online  which means that a user with no data plan cannot  access  those contents.

This Users will then be  charged based on the length of time they spent in  browsing or streaming movies.

Example a user that need to watch or stream movies on Netflix will need to have enough data or data subscription  as the users will be charge based on the time spent streaming the  movies on the internet.

Inconclusion The web 2.0 features that allows users to subscribe to a data plan is  b. long tail

Learn more about here:

https://brainly.com/question/17301234

Please help, this question is from plato.
Alison is having a hard time at work because her Inbox is flooded with emails every day. Some of these emails are unsolicited. Some of the others she doesn’t need. Which action should she take to better manage her emails?
She should move the unsolicited emails to the (trash , outbox , spam)
folder. She should move the emails she doesn’t need to the (trash , outbox , spam)
folder.

Answers

Answer:

Trash and Spam

Explanation:

Unsolicited emails need to go to spam, not only are they unwanted but they fill the inbox quick. Other emails that are not directed to her or the same thing (Text emails, app notifications, etc.) send to outbox. Separate places for notifications and text emails cannot be mixed with work/important emails that are essential everyday. Hope this helps!

Alison is having a hard time at work because her Inbox is flooded with emails every day. Some of these emails are unsolicited. Some of the others she doesn’t need. Which action should she take to better manage her emails? She should move the unsolicited emails to the Spam folder. She should move the emails she doesn’t need to the Trash folder.

HopeIhelped!!!

After Mila plugged her phone into the battery pack the amount of energy in the battery pack pack increase ,decrease or stay the same explain why

Answers

The amount of energy in the battery pack will decrease, because the phone is taking the stored energy from the battery pack. This will cause the phone to become charge and the battery pack to lose its energy.

Answer: The amount of energy in the battery pack is reduced as the phone receives energy stored from the battery pack. This will cause the phone to charge and the battery pack to lose power.

Explanation:

4.3 Code Practice: Question 1
Instructions
Grandma Ester normally gives you hugs for your birthday - one for every year old you are. When you turned 15, she squished you with 15 hugs! This year, she, unfortunately, cannot see you on your birthday, so instead, she wants to send you virtual hugs!

Create a program that prompts the user for how old they are turning and then using a loop, output a virtual hug for every year old they are.

The following prints a single “virtual hug.”

print("**HUG**")

Answers

in python 3:

age = int(input("How old are you turning? "))

i = 0

while i < age:

   print("**HUG**")

   i += 1

I hope this helps!

Use the drop-down menus to complete statements about managing meeting responses.

When you send meeting notifications, the responses usually come in the form of
.

If you are getting too many responses in your inbox, you can

meeting responses.


are turned off when you choose to remove meeting responses from your inbox.

Answers

Answer:

✔ emails

✔ turn off

✔ Tracking options

Explanation:

On edg

Answer:

Use the drop-down menus to complete statements about managing meeting responses.

When you send meeting notifications, the responses usually come in the form of  

emails

.

If you are getting too many responses in your inbox, you can  

turn off

meeting responses.

Tracking options

are turned off when you choose to remove meeting responses from your inbox.

Explanation:

[Edhesive] 4.1 Code Practice
Write a program that asks the user to enter a name, and then prints Nice to meet you NAME. Your program should repeat these steps until the user inputs Nope.

Sample Run:

Please enter a name: (Nope to end) Antonio
Nice to meet you Antonio
Please enter a name: (Nope to end) Jonathan
Nice to meet you Jonathan
Please enter a name: (Nope to end) Tyler
Nice to meet you Tyler
Please enter a name: (Nope to end) Brianne
Nice to meet you Brianne
Please enter a name: (Nope to end) Nope

Answers

Answer:

name = input("Enter a name, type Nope to end loop: ")

while (name != "Nope"):

   print("Nice to meet you " + name)

   name = input("Enter a name, type Nope to end loop: ")

   

   print("Done")

Explanation:

It works on python/Edhesive perfectly!

Following are the Python program to an input string value and print value with the message:

Program Explanation:

Defining the while loop that runs condition is true.Defining a variable "user_name" that uses the input method to input value from the user-end.After input value the if conditional block is used that checks input value is equal to "Nope" when the condition is true it uses the break keyword and print values with the message.

Program:

while True:#defining loop that runs when condition is true

   user_name = input('Enter your name:(Nope to end): ')#defining a variable user_name that input value

   if user_name == 'Nope':#defining if block that checks input string value equal to Nope  

       break#using break keyword

   print('Nice to meet you {}'.format(user_name))#print message

Output:

Please find the attachment.

Learn more:

brainly.com/question/18502091

Gina is using Outlook in the default cached mode and is connected to an Exchange server. What is the default file type used to store a cached version of Gina’s mailbox?

PST
OST
MSG
XML

Answers

Answer:

Its C. MSG

Explanation:

On edg

Answer:

c

Explanation:

took the test

Instructions
Click the links to open the resources below. These resources will help you complete the assignment. Once you have created your
file(s) and are ready to upload your assignment, click the Add Files button below and select each file from your desktop or network
folder. Upload each file separately.
Your work will not be submitted to your teacher until you click Submit.
Documents
Ways to Organize Text - Student Guide
Creation and Management of Lists - Student Guide
Insertion of Symbols Special Characters, and Images - Student Guide
File Upload
Accepted file types: .ppt, .pptx, xls, xlsx, doc, .docx, zip, pdf, .accdb, msg
Add Files
*
Delete All

Answers

answer:


explanation:
whats the question?

Question 3 / 5
True or False: Students should start drinking young to learn how to drink responsibly and safely.

Answers

Answer:

False

Explanation:

It is false that students should start drinking young to learn how to drink responsibly and safely.

What is the effects of alcohol consumption?

It includes problems with fertility like lower testosterone levels and lower sperm counts in men, brain damage and ailments connected to the brain, such as dementia and stroke.

Cardiac conditions such excessive blood pressure, damaged hearts, and heart attacks, and hepatic failure and liver cirrhosis.

In a national study, college students who binge-drank alcohol at least three times per week were about six times more likely than those who seldom consumption to do poorly on an exam or assignment.

Additional negative effects include attempted self-harm, health issues, injuries, unsafe intimate activity, drink driving, vandalism, property destruction, and engagement with the police.

Thus, the given statement is false.

For more details regarding alcohol consumption, visit:

https://brainly.com/question/14481017

#SPJ2

___________ system allows us to talk to any person in the world it any time​

Answers

World wireless system

Only 2 people answer this

Answers

Answer:

2

Explanation:

Which inserted element in an email message displays a graphic from a data source?

a chart
a hyperlink
SmartArt
a table

Answers

It is A the others ones does not make sense

A chart inserted element in an email message displays a graphic from a data source. The correct option is A.

What is a chart?

To make it simpler to grasp huge amounts of data and the relationships between various series of data, series of numeric data are displayed in a graphical fashion using charts.

When it comes to visualising data, a chart (sometimes referred to as a graph) uses symbols to represent the data, such as bars in a bar chart, lines in a line chart, or slices in a pie chart.

A chart's primary purposes are to present data and encourage deeper study of a subject. A visual from a data source is displayed in a chart that is an embedded element in an email message.

Thus, the correct option is A.

For more details regarding chart, visit:

https://brainly.com/question/15507084

#SPJ2

The OS that has a Dock is the
Linux
Mac
Windows
MS DOS

Answers

Mac OS. As verified in the picture.

While some distros of Linux have docks, Mac OS started and is known for using a dock.

Answer:

Mac.

Explanation:

Which of the following domain types is most trustworthy 1) .com 2) .tv 3).org 4) .edu

Answers

Answer:

.edu

Explanation:

Answer:

.edu

Explanation:

The order is (.edu)( .org) (. com)( .tv)

(just basic coding I can't wrap my around :L) Which of the following shows the assignment of a string to a variable? Select 3 options.

answer = input("How old are you? ")

answer = "23"

answer = (23)

answer = '23'

answer = 23
(ps, the coding platform used is python)

Answers

The first, second, and fourth are all strings. The double and single quotes helps us identify strings.

Answer:

12,4

Explanation:

The Event Viewer (Microsoft Windows) or Console (Apple Mac OS X) is used for what purpose?
to view and manage events scheduled in one or more user calendars
to configure system security features such as firewalls and antivirus scanners
to view incidents recorded in the Application, Security , and System logs
to manage user names and passwords on a network

Answers

Answer: Its C

Explanation:

The Event Viewer is a practical heritage feature in Windows 10 that collects event logs from programs and system components into a simple structure that you can then examine to diagnose and repair software or hardware issues with your computer. Thus, option C is correct.

What Event Viewer role in Microsoft and macOS?

A monitoring application called Microsoft Windows Server Event Viewer displays a log of events and can be used to diagnose problems on Windows-based systems. Information concerning application-related, security-related, system-related, and setup events is shown in the Event Viewer.

Crescendo is a real-time event viewer for macOS that leverages the ESF to display process executions and forks, file events, share mounting events, kernel extension loads, and IPC event data.

Therefore, to view incidents recorded in the Application, Security , and System logs is used for purpose.

Learn more about Event Viewer here:

https://brainly.com/question/25675228

#SPJ2

Please help!!
What does a for loop look for in the sequence of
data? Check all that apply
the first variable
the second variable
the third variable
the last variable

Answers

Answer:

The first and last variable

Explanation:

Answer:

A) the first variable and D) the last variable

Explanation:

because i said so, you're welcome !

Which option is considered a part of the document that is used to collect specific and predefined information?
O text box
O WordArt
O SmartArt
O form

Answers

I pretty sure it's a form but don't count me on it.

Answer:

Smart Art

Explanation:

You are adding specific data into a document.

If your computer is running slowly, which of the following is most likely to solve the problem?
Scanning, cleaning, and optimizing your hard drive
Checking to make sure all of the computer’s cords are plugged in
Reentering the serial numbers of the software programs the computer is running
Searching the hard drive for missing DLL files

Answers

Answer:

Purchase Anti-virus

Explanation:

Delete old files.

clear your temp

update to a ssd

Answer:

A. Scanning, cleaning and optimizing your hard drive

Explanation:

IM A DIFFERENT BREEED!

also... when your computer is slow, you usually scan and clean your computer files and delete unnecessary files you don't need so that your computer can run more smoothly and faster.

Which of the following courses would an aspiring film composer most likely take?
A. theories in classical composition
B. John Williams and the movies
C. music of the Renaissance
D. the art of film production

Answers

Answer:

The art and film of production

Explanation:

just took the test on edge

Answer:

B: John Williams and the movies

Explanation:

edg2021

John Williams is a famous composer that composed famous music for movies, such as the Star Wars movies. He is directly correlated with composing and how aspiring composers should act.

Carline is a teacher who uses PowerPoint. She wants to make sure all of her PowerPoints are set up the same way with the same theme. She saved her original theme for the first chapter. She is working on chapter 2. Which lists the correct steps for recovering her theme?
HELP ASAP!

Answers

Answer:

Click on file, select New, select themes and find saved theme

Identify methods to improve programming skills.

Answers

Establish goals for yourself. Setting goals can boost your productivity as a developer. ...Do it again… and again! Once you choose your goals, work on them as much as possible! ... Share what you learn/create. It's the best way to learn new things. ... Read code. ...Ask questions

I need help with a question on a computer science test.

Three of the following values could be stored as strings. When would you NOT use a string command?

To store decimal values.

To store a list of colors.

To store a word.

To store values NOT used for calculations.

Answers

Answer:

To store decimal values

Explanation:

Analyzing the given options.

(a)

Decimal values are digits and are to be treated as such. So, storing them as strings mean that they are no longer decimal values.

(b), (c) & (d)

List of colors, words and values that can't be used for calculations are all string values.

Take a for instance.

List of colors: "Red", "Yellow", "Blue",...

Words, "I", "am", "a", "boy"

Values that can't be used for calculations are non numerical data and as such, some of them could be strings.

Hence:

Option (a) answers the question

Answer:

To store decimal vaules is the correct choice.

Which design principle is the subject of a photo or image? ​

Answers

The focal point is where the eye is drawn to in a photo or image.

The content of a photo or image serves as the framing design principle, and the further discussion can be defined as follows:

This placement of the principal topic of a design about other components on the page is referred to as framing. It is most commonly used in cinematography or photography to define how the primary point of an image is located inside the overall image.

Therefore, the final answer is "Framing".

Learn more:

brainly.com/question/20307377

Complete each statement by choosing the correct answer from the drop-down menu.

The data type can hold whole positive and negative numbers.
The terms TRUE and FALSE are usually associated with data types.
Values such as 9.0, –1245.1, and 0.777 are examples of data types.

Answers

Answer:

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

Explanation:

The correct matching answers for this question are given below. In this question, it is asked to identify the data type of the given scenario.

Integer short and integer long data type:

These data types can hold whole positive and negative numbers. however, you can also store positive and negative values in float and double data type also.

Boolean data type:

Boolean data type usually stores true or false values such as yer or no, true or false etc. It stores binary values i.e 1 or 0.

Float and Double data type: float and double data type can store positive and negative numbers with decimals. But, the float data type can store 4 bytes of data and sufficient for storing 7 decimal digits. while double data type has a size of 8 bytes of data and sufficient for storing 15 decimal digits.

However, for the given scenario in the question,  the float data type can accomodate these values easily.

Answer: Integer, Boolean, Floating-Point!

Explanation:

I did it edge 2020

Question 4 / 5
A major reason why drinking can be especially dangerous for young people is because:

Answers

Answer:

it can damage you liver. and you can drink to much and bleed inside.

To access document templates, navigate to the
tab.
O File
O Home
O Page Layout
O Insert

Answers

Answer:

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

Explanation:

The correct option for this question is File.

If you want to apply different document templates, to access it you need to navigate to the File tab. Then click, on a new document, you will be provided a list of the different template under different categories.

while other options are no correct because in the home tab you can find the setting related to the font, paragraph, and style, etc. in the page layout, you can find related to document layout setting. While the insert tab has a different insertion related setting for a document.

What is the Finder?
0
the place where the most commonly used Mac applications reside
O
the default Mac application
the library used by software developers to create familiar interfaces for applications
the place where lists of commands can be found

Answers

I would say The place where apps reside.

Finder is the Mac version of a file explorer. One tab in the finder is where all install applications are.

(I'm typing this on a mac currently just saying.)

Other Questions
PLEASE HELP!!!!!!!!!!!!!!! HEALTHPractice the Skill1. Use the information on the grahamcracker label to answer these questions.a. Which ingredient in this food productis enriched? What is the base ingredientand what is it enriched with? Dylan took an applicant-paid job through an employment agency. The job pays $395 per week. Dylan must pay a fee to the agency. The fee is 20% of his first 4 weeks pay. How much does Dylan owe the employment agency? In what ways do we often have to seek freedom or change in our own family structures? Explain what this student is doing to go from x^26x3= 0 to (x3)^2 =12 is the following graph a function?A. yesB. no 22x^3 y^4+28x^2 y^5+34xy^4 Infrared radiation A) Heat from warm objects, used to detect the location of objects Microwaves B) All the radiation humans can see, ranging from red to violet Ultraviolet light C) Used in radar and to heat food Visible light D) Given off by very hot objects, such as the sun A 0.142 kg baseball on a 0.8 meter table has 1.11 J of potential energy. It falls. How much kineticenergy, in Joules, will it have on the way down when it reaches a height of 0.25 meters? Assumemechanical energy is conserved. Holly and Luke formed a partnership, investing $240,000 and $80,000, respectively. Determine their participation in the year's net income of $200,000 under each of the following independent assumptions: No agreement concerning division of net income; Divided in the ratio of original capital investment; Interest at the rate of 15% allowed on original investments and the remainder divided in the ratio of 2:3; Salary allowances of $50,000 and $70,000, respectively, and the balance divided equally; Allowance of interest at the rate of 15% on original investments, salary allowances of $50,000 and $70,000, respectively, and the remainder divided equally. Which one is NOT a trait of civilization? A.) Writing System B.) Organized Central Government C.) Job Specialization D.) Advanced Cities E.) Rivers15 points thank you I dont quite understand how to do this m - 6 > -9Solve the inequality Amber is traveling to he mom's house. The scale on the map is 2 inches=10 miles. She knows her mom lives 40 miles away. How far would that be on the map? EXTRA POINTS * how do you graph y=2x + 1 Item 3Read these lines from "The Rainy Day."Be still, sad heart! and cease repining;Behind the clouds is the sun still shining;Thy fate is the common fate of all,Into each life some rain must fall,Some days must be dark and dreary.What does the phrase "Into each life some rain must fall" mean?All lives eventually come to an end.Everyone faces times of unhappiness.Sometimes it's good to be unhappy.It is foolish to be unhappy. Keith Hernandez has asked Jerry and Kramer to help him move into a new apartment on Sunday morning. He has asked them both in case one of them does not show up. From past experience, Keith knows that there is a 41% chance that Jerry will not show up and a 31% chance that Kramer will not show up. Even though Jerry and Kramer know each other, their decisions can be assumed to be independent.a. What is the probability that both Jerry and Kramer will show up? (Round your answer to 2 decimal places.)Probability b. What is the probability that at least one of them will show up? (Round your answer to 2 decimal places.)Probability c. What is the probability that neither Jerry nor Kramer will show up? (Round your answer to 2 decimal places.)Probability Sanjays present age is y years. Form an algebraic expression for:a)Sanjays age 7 years from nowb)Sanjays brothers age is 4 years less than Sanjays presentagec)Sanjays mothers age is 3 times that of Sanjayspresentage.d)Sanjays grandfathers age is 30years more than Sanjays mothersage.e)Sanjays fathers age is 8 years more than 6 times Sanjays age. What if any are the inherent flaws of trying to prove gods existence through this type of argument Pls help me with this question I give out 20 points