Edhesive 11.4 code practice

Answers

Answer 1

Answer:

<!DOCTYPE html>

<html>

<body>

<h2>Billboard Hot 100 Songs 1980</h2>

<p>1. Blondie - “Call Me“</p>

<h2>Billboard Hot R&B/Hip-Hop Songs 1980</h2>

<p>1. Michael Jackson - “Rock with You“</p>

<h2>Billboard Hot Country Songs 1980</h2>

<p>1. Kenny Rogers - “Coward of the County”</p>

</body>

</html>

Mainly for edhesive users

100% on edhesive code practice 11.4


Related Questions

Which of the following is true of how packets are sent through the Internet?

Packet metadata is only included on important packets to indicate they should get access to faster paths through the network

Packet metadata is used to route and reassemble information travelling through the Internet

Information sent through the internet is only encapsulated in packets if the message is too large to be sent as a datastream

Information sent through the internet is split into two packets, one which contains the message and another which contains the metadata

Answers

Packet metadata is used to route and reassemble information travelling through the Internet

-scav

Wesellyoubuy, a consumer electronics company, received consumer complaints about its employees not being able to communicate with consumers properly. After investigating the prime reason behind these complaints, the management found that the consumer service employees were following the same strategy to address all types of consumer issues. The management immediately started a new training program for the consumer service employees where they were trained to respond to every possible query a consumer might have. Eventually, their service ratings and sales showed improvement. In this scenario, the consumer service team improved _____.

Answers

Answer:

customer satisfaction

Explanation:

The consumer electronics company started a new training program for the consumer service employees as the company found that the consumer service employees were following the same strategy to address all types of consumer issues due to which they were not able to communicate with consumers properly.

This leads to improvement in service ratings and sales.

In this scenario, the consumer service team improved customer satisfaction

compare and contrast the typewriter with that if the computer keyboard pls help omg​

Answers

Answer:

Typewriters use  paper and ink

and computers keyboards is an electroic typing

Explanation:

Which character is used to create an absolute reference to a cell?

Answers

Sadness refer to it as a mitochondria since it’s blue and it can represent as something

Answer:

$ - The dollar sign

Explanation:

The dollar sign creates an absolute reference in a cell. Absolute reference refers to an actual fixed location on a worksheet in Excel.

New technology is NOT vital to businesses in which of the following ways?

Add to a product portfolio

Decrease market share

Help businesses stay competitive

Attract new customers

Answers

Answer:

The only option that would best fit this situoaion is Decrease market share, both Help businesses stay competitive and Attracting new customers are kind of similar and depend on new tech about 60-80% of the time usually, the first option dose no have any major connection with new technology.

hope this helps :)

what would be the most constructive response

Answers

Answer:

we cant tell what your talking abt please repost with at pitcher or a exolination

Explanation:

Question 3 of 10 A compressed file containing visual data is called O A. a track O B. a video O C. an audio file . O D. an image file
it's called an image file​

Answers

[tex]\huge{\textbf{\textsf{{\color{pink}{An}}{\red{sw}}{\orange{er}} {\color{yellow}{:}}}}}[/tex]

D. An image file.

ThanksHope it helpsPls mark as brainliest

A software development company has created an application called FileCleanUp. When the application is run on a user device, it searches for all files (including pictures, videos, and documents) that have not been accessed in the past month, stores them on the company’s Web server, and deletes them from the user device. The application runs once each day. Users have the ability to manually retrieve files from the server if they are needed.
Which of the following is most likely to be a harmful effect of using FileCleanUp?
A. It prevents users from accessing frequently used files when there is no Internet connectivity.
B. It prevents users from accessing infrequently used files when there is no Internet connectivity.
C. It prevents users from accessing frequently used files when there is reliable Internet connectivity.
D. It prevents users from accessing infrequently used files when there is reliable Internet connectivity.

Answers

Answer:

B

Explanation:

The app will delete files that have not been accessed in the past month and store them on a web server. This means that the user cannot access those files unless they have an internet connection

The app will delete files that have not been accessed in the past month and store them on a web server. This means that the user cannot access those files unless they have an internet connection.

What is Software development?

Supercomputing and other computing methods are sometimes used interchangeably. Yet, there are times when the synonyms aren't clear. To assist clarify some similarities and differences between various computer types, here are some common analogies.

While supercomputing typically refers to the process of complex and massive calculations used by supercomputers, high-performance computing (HPC) is the utilization of several supercomputers to execute difficult and huge computations.

Supercomputers are often known as parallel computers since they can perform parallel processing. Parallel processing is the simultaneous use of many Processors to solve a single calculation.

Therefore, The app will delete files that have not been accessed in the past month and store them on a web server. This means that the user cannot access those files unless they have an internet connection.

To learn more about Software, refer to the link:

https://brainly.com/question/985406

#SPJ6

Hey does anyone think nervegear would be possible? (Just asking)

Answers

Answer:

Depends

Explanation:

Technology is not advanced yet, so building a fully functional nerve gear is difficult. It could be possible in a few years though.

Answer:

No, the Nerve Gear cannot be possible at the moment. However, in Japan, they are creating the Nerve Gear and is to be released in May 2022 told by the creator, Kayaba Akihiko. So, the Nerve Gear cannot be possible in 2020 but in 2022. We just have to wait for two more years.

Explanation:

please choose me as brainliest if that is ok ;)



What spreadsheet tool could be used to add together the numbers in a
selected group of cells?

Answers

Answer:

=SUM(range)

example:

=SUM(A3:A9)

Explanation:

- range refers to a selected group of cells

- SUM is a function (predefined formula) for adding up cells or range

What is the relationship between optical drives and WORMs?

Optical drives are advanced versions of WORMs.
WORMs do not affect optical drives.
Optical drives are susceptible to WORMs.
WORMs are types of optical drives.

Answers

Answer:

When data is written to a WORM drive, physical marks are made on the media surface by a low-powered laser and since these marks are permanent, they cannot be erased. Rewritable, or erasable, optical disk drives followed, providing the same high capacities as those provided by WORM or CD-ROM devices.

Explanation:

Good luck

PLEASE HELP Write a program that loads one three-digit number and prints the root of its largest
digits in python.​

Answers

Answer:

num1 = float(input("Enter first digit of number: "))

num2 = float(input("Enter second digit of number: "))

num3 = float(input("Enter third digit of number: "))

if (num1 > num2) and (num1 > num3):

  largest = num1

num_sqrt = num1 ** 0.5

elif (num2 > num1) and (num2 > num3):

  largest = num2

num_sqrt = num2 ** 0.5

else:

  largest = num3

num_sqrt = num3 ** 0.5

print("The square root of largest digit of the three digit number is",num_sqrt)

Explanation:

num1 = float(input("Enter first digit of number: "))

num2 = float(input("Enter second digit of number: "))

num3 = float(input("Enter third digit of number: "))

if (num1 > num2) and (num1 > num3):

  largest = num1

num_sqrt = num1 ** 0.5

elif (num2 > num1) and (num2 > num3):

  largest = num2

num_sqrt = num2 ** 0.5

else:

  largest = num3

num_sqrt = num3 ** 0.5

print("The square root of largest digit of the three digit number is",num_sqrt)

The photograph shows a way individuals work together in groups a the photograph​

Answers

Answer:

D. Administrators

Explanation:

Hope it helps

#CarryOnLearning

1. Samantha uses the RSA signature scheme with primes p = 541 and q = 1223 and public verification exponent e = 159853. (a) What is Samantha's public modulus? What is her private signing key? (b) Samantha signs the digital document D = 630579. What is the signature?

Answers

Answer:

Why is samantha asking us? She should find out herself smh

Explanation:

The purpose of project management is _____. executing a requirement improvement working toward a common goal completing a project

Answers

Answer:

working toward a common goal.

Explanation:

Project management can be defined as the process of designing, planning, developing, leading and execution of a project plan or activities using a set of skills, tools, knowledge, techniques and experience to achieve the set goals and objectives of creating a unique product or service.

Generally, projects are considered to be temporary because they usually have a start-time and an end-time to complete, execute or implement a project plan.

Furthermore, the main purpose of project management is working toward a common goal.

This ultimately implies that, project managers should ensure adequate attention and time is taken to identify, analyze and manage capital, raw materials, people, system of tasks and other resources, so as to effectively and efficiently achieve a common goal with all project stakeholders.

The fundamentals of Project Management which are universal across all fields and businesses includes;

1. Project initiation.

2. Project planning.

3. Project execution.

4. Monitoring and controlling of the project.

5. Adapting and closure of project.

In conclusion, it is very important and essential that project managers in various organizations, businesses and professions adopt the aforementioned fundamentals in order to successfully achieve their aim, objectives and goals set for a project.

The ability to retrieve previously published data and research rather than each organization paying for or collecting their own data to analyze is an example of?

Answers

Answer:

open access

Explanation:

Think of an aspect of HTML that you found challenging to master. Why is that aspect of HTML important? What are some future situations that you could use it in?

Answers

Answer:

it will help in future by a situation if you want to do software engineers in that situation it will help you and also

If the cell to the right of the cell you are typing in is ________, the data can "bleed" over that cell.
A. Full
B. Numerical
C. Empty
D. Formatted
**ATTENTION** If you send me a file, or a link for something to download your answer will be reported. Please answer through text. Thank you!

Answers

The answer to the question is c

List three features of the third generation of computers

Answers

Explanation:

Features:

1.They were small and efficient than previous generation.

2.They use integrated circuits as main electronic circuit.

3.The operating speed was increased unto nano seconds.

Hope it helps and have a good day.

Complete the statement about WYSIWYG editors when you use a WYSIWYG editor you typically specify the continent and blank A.layout B.Html Code C. Meta tags while the editor generates the blank A.layout B. Html code C. Meta tags

Answers

Answer:

When you use a WYSIWYG editor you typically specify the content and layout while the editor generates the HTML code

Explanation:

Required

Complete the blanks

In WYSIWYG, the user of the application provides contents to the WYSIWYG software and also designs the appearance; The appearance is referred to as the layout.

Throughout the design, the user will not use HTML codes; it is the duty of the WYSIWYG editor to generate HTML code based on the input designs by the user.

Other Questions
what does confederation mean? b. If the radius of a circle is r m, whatis the measure of its circumference? Easy points for Brainliest What technique are they using to weave the rug? Fluffing Sewing Embroidering Pile Weave A recent hailstorm caused $1200 worth of body damage to Karen's car. Basedon Karen's insurance policy given below, how much money will Karen receiveafter she files her claim?SummaryComprehensive Deductible: 333Collision Deductible: 5550Premium of $625 for 4 monthsA. $625B. $825O C. $375 D. $1200 Define 1.epiphyllous stamens2.staminode Finerly Corporation sells cosmetics through a network of independent distributors. Finerly shipped cosmetics to its distributors and is considering whether it should record $220,000 of revenue upon shipment of a new line of cosmetics. Finerly expects the distributors to be able to sell the cosmetics, but is uncertain because it has little experience with selling cosmetics of this type. Finerly is committed to accepting the cosmetics back from the distributors if the cosmetics are not sold. How much revenue should Finerly recognize upon delivery to its distributors Gaining or losing energy changes the temperature of a substance is that true or false. What lie did Macbeth tell Banquo? The talk-time battery life of a group of cell phone is normally distributed with a mean of 5 hours and a standard deviation of 15 minutes. A) What percent of the phones have a battery life of at least 4 hours and 45 minutes? NOTE PUZZLE: IF YOU GET IT CORRECT I'LL GIVE BRAINLIEST: Which side lengths could form a triangle? Check all that apply.A) 20,6,15B) 8,8,17C) 2,11,12D) 19,34,15 HELP ME PLEASE1. What is Ms. Romans employment background?2. What statistics from police academies in the state of New Jersey were alarming to Ms. Roman?3. What was a major reason for women failing at the police academies?4. What had these police recruits been required to do in order to reach the point in the process that allowed them to take the physical fitness test?5. What data does Ms. Roman share about women serving as police officers? What data does she share about women working as police chiefs?6. How are other countries doing when it comes to female representation in the police force compared to the US?7. According to research, what are some positive results to having female police officers on the force?8. What does Ms. Roman define as the main problem with the different policy agencies and their standards?9. What should police academies also focus on, aside from physical strength, when recruiting officers?10. What are some ways to encourage more female recruits to join the police force? How must the testing process be changed to ensure women are not unfairly excluded from the force? Kelly's team won 85% of the games they played in a season. The team lost 12 games. How many games did Kelly's team win in the season? Assess the reasons why some countries are more vulnerable than others to the impacts of tropical cyclones? (8) markerThe case studies are hurrican katrina and cyclone Alia Please help me with this question. Von de som en bona pays 1. West End the stor 10 years when it isThe balance after 10 years is $ In how many ways can 5 different novels, 4 different mathematics books, and 1 biology book be arranged on a bookshelf if: (a) The books can be arranged in any order? Your answer is: 3628800 (b) The mathematics books must be together and the novels must be together? Your answer is : 6 (c) The mathematics books must be together but the other books can be arranged in any order? Your answer is: 5040 Decide if each expression represents one third the sum of 5 and 4. choose yes or no for each expression. 2. What is the meaning of manifest destiny?A) The belief that the United States had a right to control all land reaching to the PacificOceanB) The push for the abolition of slavery in the West.C) The belief that all Native Americans should be placed on federal reservationsD) The belief that Native Americans must relinquish (give up) all guns and ammunition tothe government Read the passage below carefully and then choose the correct answer.(from speech by Winston Churchill, The Approaching Conflict, 1909)They see that much has been done in other countries. They know that this country is the richest in the world. They wonder why so little has been done here. They demand that more shall be done; and in my sincere judgment the British democracy will not give their hearts to any party that is not able and willing to set up that larger fuller more elaborate, more thorough social organisation, without which our country and its people will inevitably sink through sorrow to disaster, and our name and fame fade upon the pages of history.The selection in bold is an example of logos ethos pathos