In hypertext poetry, a poem is:
A. always conveyed with words ony.
B. rarely read the same way twice.
C. always in iambic pentameter.
D. never read on the lnternet.

Answers

Answer 1

Answer:

im going to go with c because you can read those on the internet

Answer 2

Answer:

the answer is a

Explanation:

in hypertext poetry, a poem is: a.)rarely read the same was twice b.) always in iambic pentameter c.) always conveyed with words only d.) never read on the internet​

 you always want to convey sentences and words on ure own way because it could be copyright for taking someone else words or stories or etc.


Related Questions

Given a list of integers called package_weights, write code that counts the number of values in the list that are greater than 50. Store the result in a variable named heavy_count. Assume that the list has been initialized.

Answers

As the list has been initialized.

heavy_count = 0

for i in package_weights: #counting the package_weights more than 50.

if i > 50:

heavy_count += 1

Learn more about functions here:

https://brainly.com/question/11624077

#SPJ4

Write code that creates a variable called count that has the value of 102. The code then prints the value of count.

Answers

I'm not really sure what language you want this in but since the usual language learnt in HS in C++, I'll do it in C++ and C

In C++ :

#include <iostream>

using namespace std;

int main()

{

     int count = 102;

     cout << "The value of count is" << count << endl;

    return 0;

}

In C:

#include <stdio.h>

int main()

{

    int count = 102;

    printf("The value of count is %d", count);

    return 0;

}

Which of the following expressions would produce an error in python? a. print( "one"+"2" )
b. print( 3 + 4 )
c. print( "7" + 'eight' )
d. print( '5' + 6 )

Answers

Answer:

c. print( "7" + 'eight' )

Explanation:

From the options listed in the question the only one that would produce an error would be option c. print( "7" + 'eight' ). This is because the second element being added is a string that says eight but it is being represented as a char variable. The ' ' is only used for single-digit character variables while the " " is used for words or strings of characters like the word eight.  In this piece of code the system will try to read this as a Char variable but will detect more than one char and produce an error.

To indent the first line of a paragraph, which key should you use?
O Shift key
O Tab key
O Enter key
O Space key

Answers

You push the tab key to indent the first line of a paragraph!
You would click the Tab key to indent the first line of a paragraph. Just make sure the cursor is where you want to indent it.

To inspire unit 1 App

Answers

is there more to this or ?

Convert pounds to ounces.
(1 pound = 16 ounces)


14 pounds = _________ × (1 pound)


= _________ × ( _________ ounces)


= _________ ounces +BrainList

Answers

Answer: yt can work

Explanation:

that  will help

Answer:

All your questions got removed

Explanation:

dont give  points next time

With the development of personal computers and the internet, the ability of organizations like save the children to operate successfully around the globe represents which phase of globalization?

Answers

Answer:

The forth phase

Portrait and Landscape are

Page layout


Page size


Page orientation


All of the above

Answers

Answer:

a page layout

Explanation:



A software license gives the owner the___
to use software.

Human right
Understanding
Password
Legal right

Answers

Answer:

the legal right

Explanation:

hope that helps

Answer:

Human right

Explanation:

Tell me if I'm wrong

First time using this site so be mindful if I make any mistakes
For Micro Econ AP I am having a problem with this one question
It goes:
In what ways do households dispose of their income? How is it possible for a family's persoal consumption expenditures to exceed its after-tax income?

Answers

Answer:

Okay... Well

I will. help you out dear

jenny is preparing to install windows 10 on a system that has a version of windows 8.1 installed. this version of windows 8.1 runs slowly and crashes occasionally. the optical drive also does not work, so jenny decides to use a flash drive to install windows 10. jenny wants to remove all the programs and data from the computer and start over with windows 10. what type of installation should jenny perform? a. repair installation b. in-place upgrade c. recovery installation d. custom installation

Answers

The type of installation that Jenny need to perform based on the above is known to be called  D) Custom installation.

What is Custom installation of windows 10?

Custom installation is known to be a kind of an Administration Server installation that is known to often take place if a person or a computer user is known to have been prompted to click on some parts so that they can be able to install and tell the folder where the application need to  be installed.

Therefore, based on the above, The type of installation that Jenny need to perform based on the above is known to be called  D) Custom installation

Learn more about installation from

https://brainly.com/question/13033768

#SPJ1

is an impact printer makes contact with the paper. ​

Answers

Answer:

Yes

Explanation:

because the name impact

What is the meaning of the term filtering in spreadsheet?

Answers

Explanation:

Filtered data displays only the rows that meet criteria that you specify and hides rows that you do not want displayed.

If a computer company develops a touchscreen tablet with the intent that it will have to be replaced within two years by the consumer, this is known as which of the following? consumer fraud supply and demand planned obsolescence innovative commerce

Answers

Answer:

b

Explanation:

demand planned obsolescence

The _________ covers installing and configuring operating systems, expanded security, software troubleshooting, and operational procedures.
COMPTIA NETWORK+


COMPTIA SECURITY+


COMPTIA EXCEL


COMPTIA A+

Answers

The COMPTIA A+ covers installing and configuring operating systems, expanded security, software troubleshooting, and operational procedures.

What is certification?

Certification can be defined as a process which describes the formal recognition that is given to a graduate student for the successful completion of an academic programme, course of study such as the following:

FinanceEducationSoftware engineeringInformation technology consultant.Information systems manager.Information security analyst.Computer engineering

Generally speaking, the COMPTIA A+ 220-1002 is a type of certification programme which extensively covers the installation and configuration of operating systems (OS), expanded information security (IS), troubleshooting of software, as well as operational procedures.

Read more on certification here: brainly.com/question/13412233

#SPJ1

Edhesive unit 2 lesson 5 coding activity 1 Write code which creates three regular polygons with 11, 14 and 19 sides respectively. All side lengths should be 1.0. The code should then print the three shapes, one on each line, in the order given (i.E. The one with 11 sides first and the one with 19 sides last). Sample run: regular hendecagon with side length 1.0 regular tetrakaidecagon with side length 1.0 regular enneadecagon with side length 1.0

Answers

Answer:

public class Polygon {

   private String name;

   private int sides;

   private double sideLength;

   public Polygon(String name, int sides, double sideLength) {

       if (sideLength <= 0) throw new IllegalArgumentException("Length cannot be zero or negative.");

       if (sides <= 0) throw new IllegalArgumentException("Sides cannot be zero or negative.");

       this.name = name;

       this.sides = sides;

       this.sideLength = sideLength;

   }

   public String getName() {

       return name;

   }

   public void setName(String name) {

       this.name = name;

   }

   public double getSideLength() {

       return sideLength;

   }

   public void setSideLength(double sideLength) {

       if (sideLength <= 0) throw new IllegalArgumentException("Length cannot be zero or negative.");

       this.sideLength = sideLength;

   }

   public int getSides() {

       return sides;

   }

   public void setSides(int sides) {

       this.sides = sides;

   }

   (use the at sign here)Override

   public String toString() {

       return "regular " + name + " with side length " + String.format("%.1f", sideLength);

   }

}

public class TestPolygon {

   public static void main(String[] args) {

       Polygon sides11 = new Polygon("hendecagon", 11, 1);

       Polygon sides14 = new Polygon("tetrakaidecagon", 14, 1);

       Polygon sides19 = new Polygon("enneadecagon", 19, 1);

       System. out. println(sides11);

       System. out. println(sides14);

       System. out. println(sides19);

   }

}

Explanation:

This java source code defines a class that creates a regular polygon based on the number of sides given to it.

Below is a screenshot of the program code and output.

Which of the components of the box model is transparent and does not take a background color? content padding border margin

Answers

Answer:

the answer is

ও d- margin

Explanation:

⁂ just did the cumulative exam review, hope this helped ☺

Margin is the component of the box model which is transparent and does not take a background color. Thus, the correct option is D.

What is background color?

The background color is, in most of the cases, displayed in the form of an RGB triplet or a hexadecimal code of colors. The three separate pairs of different numbers which are given in the command, represent the different set of color values of the RGB spectrum. The first value in this set stands for the red color, the second color stands for the green color and the last one stands for the blue color.

The background style of the content, padding, and border areas of a box model are specified by the background property of the generating element of the system. Margin backgrounds are the elements which are always transparent in color.

Therefore, the correct option is D.

Learn more about Background color here:

https://brainly.com/question/14928554

#SPJ2

An unbalanced force on a body will always impact the speed of the object, true or false?​

Answers

Answer:

True

Explanation:

Asides from the fact that Unbalanced forces cause an object to move. It also causes the object to accelerates. Unbalanced force is known to change the speed and direction of an object.

This is evident in Newton's second law of motion which states that "An unbalanced force or net force simulating on an object makes it accelerates. The greater the unbalanced force or net force operating on the object the greater the acceleration of the object."

Hence, in this case, the correct answer is TRUE.

Write an expression that will cause the following code to print "greater than 20" if the value of userAge is greater than 20.

Answers

The code of the given query is presented below.

Program explanation:

Declaration of header file.Declaration of main method.Declaration of integer type variable.Enter a value.Use of if statement.

Program code:

#include <iostream>    //header file

using namespace std;

int main()   //main method

{

int userAge;

cin>>userAge;

if(userAge > 20)

{

cout<<"greater than 20" << endl;

}

else

{

cout<< "20 or less" <<endl;

}

return 0;

}

Output:

Find the attachment below.

Learn more about program code here:

https://brainly.com/question/17782638

What type of output does the Virtual Reality headset provide and why? (the four types of output are: text, graphics, audio, and video)

Answers

Answer:

Virtual reality (VR) means experiencing things through our computers that don't really exist. From that simple definition, the idea doesn't sound especially new. When you look at an amazing Canaletto painting, for example, you're experiencing the sites and sounds of Italy as it was about 250 years ago—so that's a kind of virtual reality. In the same way, if you listen to ambient instrumental or classical music with your eyes closed, and start dreaming about things, isn't that an example of virtual reality—an experience of a world that doesn't really exist? What about losing yourself in a book or a movie? Surely that's a kind of virtual reality?

HELP FAST PLS PLS

Put the steps in order to produce the output shown below.
Assume the indenting will be correct in the program.
'uno'
Line 2
Line 1
Line 3

Answers

Answer: the line numbers are different on mine, but these were correct

Explanation:

Following are the description on the three-line code:

In the first line, a dictionary "games" is declared that holds "key and value" in it.In the key, it holds an integer value, and in the value, it holds a string value.In the second line, the append method is declared that adds value to the dictionary.In the third line, it holds a value of 12.

Please find the attached file for the code.

Learn more:

brainly.com/question/20250851

______ creates a unique and fixed-length signature for a set of data. It involves converting a numerical input into another compressed numerical output.

Answers

Answer: Hashing

Explanation:

Hashing creates a unique and fixed length signature. Once hashing is performed, it is not possible to reverse the message. Hashing is used with authentication. This ensures that the given message cannot be modified.

Tom is trapped on the top floor of a department store. It’s just before Christmas


and he wants to get home with his presents. What can he do? He has tried


calling, even yelling, but there is no one around. Across the street he can see


some computer person still working away late into the night. How could he


attract her attention? Tom looks around to see what he could use. Then he has a


brilliant idea—he can use the Christmas tree lights to send her a message! He


finds all the lights and plugs them in so he can turn them on and off. He uses a


simple binary code, which he knows the woman across the street is sure to


understand. Can you work it out?

Answers

Answer:

tom wants to help her

Explanation:

Tom is rushing because he is at the top of a department store and he can't get a hold of her.  

Answer:

help im trapped

Explanation:

i solved it haha you have to use the code

16 8 4 2 1

and each little square equals one of the numbers

In addition to benchmark testing, performance measurements, called _____, can monitor the number of transactions processed in a given time period, the number of records accessed, and the volume of online data.

Answers

Answer:

metrics

Explanation:

Given that Metrics is Metrics is an accepted technique of measuring quantities of elements or commodities.

It is used in all facets of human activities particularly in value measurement such as production operation, financial assessment, comparison purposes, etc.

Hence, In addition to benchmark testing, performance measurements, called METRICS, can monitor the number of transactions processed in a given period, the number of records accessed, and the volume of online data.

Which of these is installed only on Apple smartphones and tablets?

Windows

Android

Linux

iOS

Answers

iOS. It's Apple's own custom OS system, built for their tech.
iOS, I don’t know much about I just know when I need to up date my phone it says I’m updating to iOS whatever number I’m updating to.

cookies that remain on your device indefinitely are called . a. resistant b. insistent c. constant

Answers

Cookies that remain on your device indefinitely are called: D. persistent.

What is a web browser?

A web browser can be defined as a type of software application (program) that is designed and developed to enable an end user view, access and perform certain tasks on a website, especially when connected to the Internet.

What are cookies?

In Computer technology, cookies can be defined as small files, which often include unique identifiers that are sent by web servers to a web browser.

In conclusion, cookies that remain on your device or web browser indefinitely are called persistent.

Read more on cookies here: https://brainly.com/question/26081942

#SPJ1

Complete Question:

Cookies that remain on your device indefinitely are called ______.

A. resistant

B. insistent

C. constant

D. persistent

What is the output?
class car:
model = "
age = 20
myCar = car()
myCar.age= myCarage + 10
print(myCarage)
Output:

Answers

Answer:

Following are the modified code to this question:

class car:#defining a class car  

   model = ""#defining a class

   age = 20#defining an integer variable that hold a value

myCar = car()#creating reference of class

myCar.age= myCar.age+ 10#Use reference to add value in age variable

print(myCar.age)#print age value

Output:

30

Explanation:

In the above code class care is defined, inside the car a string variable "model", and an integer variable "age" is defined that hold a value, in the next step, class reference myCar is defined, that used to add value in age variable an at the last we use print method to print age variable value.

an 82-year-old female complains of foul-smelling diarrhea, abdominal cramping, and loss of appetite. she developed an infection following knee surgery 2 weeks ago. she is prescribed antibiotics. what should you suspect as the infectious organism?

Answers

The infectious organism would be suspected as Clostridium difficile.

Clostridium difficile is a gram-positive, anaerobic bacteria that are usually present in the soil and air.

Infected Patients suffer from mild to moderate diarrhea and inflammation due to enterotoxin and cytotoxin produced by Clostridium difficile. In addition to diarrhea, infected patients can have the symptoms of severe abdominal cramping, vomiting, and anorexia. This type of infection can sometimes be life-threatening.

The risk factors for  Clostridium difficile infection include surgery, antibiotics, weakened immune system, and older age. The patients taking cephalosporin or fluoroquinolone antibiotics have more vulnerability to  Clostridium difficile infection. Antibiotics can kill the bacterias that are good and useful for the body resulting in unchecked growth of bacteria like Clostridium difficile in the body.

To learn more about Clostridium difficile, click here:

https://brainly.com/question/13552507

#SPJ4

what is hardware ? Name the four functional hardware of a computer system Define each of them with the help of a diagram​

Answers

Answer:

There are four main computer hardware components that this blog post will cover: input devices, processing devices, output devices and memory (storage) devices. Collectively, these hardware components make up the computer system.

Technician A says that a camshaft must open and close each valve at exactly the right time relative to piston position. Technician B says overhead cam engines can be belt-driven. Who is correct?

Answers

On single and double overhead cam engines, the cams are driven by the crankshaft, via either a belt or chain called the timing belt or timing chain. These belts and chains need to be replaced or adjusted at regular intervals.

There are lot of engineers that focuses on machines.  Both Technician A and B are correct.

Can overhead cam engines be belt driven?

A single overhead camshaft engine is known to often use one camshaft that is found above each bank of cylinders. The camshaft  is said to be driven by a chain or a toothed timing belt.

The timing of the opening and also the closing of valves is given by the extent or degree relative to the position of engine's pistons.

Conclusively, the Overhead camshaft are known to be set up to often open and close at a specific time, to give room for the engine to run efficiently in terms of speeds.

learn more about Machines  from

https://brainly.com/question/4435994

Other Questions
please help simplify ! Write the correct conjugation of each verb:(See Image Below) A The sky is blue.,B Most people like blue.,C The hydrosphere looks blue and covers three-fourths of the Earths surface. Read the passage.The Oldest and Youngest Places on EarthWhat is the oldest place on the earth? While the earth itself is estimated to be approximately five billion years old, most landforms are not nearly that old. Scientists debate what the oldest landform truly is, but it might be on Baffin Island. On this large northern Canadian island, which falls inside the Arctic Circle, rocks have been found that are believed to be over 4.5 billion years old. If these rocks truly are that old, then they have been around longer than the earths crust!It is hard to believe that any rocks could be older than the outer surface of the earth, but their discovery in 2016 has given scientists some interesting insights about how the earth was created. As melted mantle rose to the surface and the earths denser elements sunk toward its center to form its core, most of the first rocks were absorbed into the earths inner layers. But not the rock on Baffin Island.While there is still debate about whether Baffin Island is the oldest place on the earth, there is little question of where one of the youngest is. In December of 2014, an underwater volcano near the Pacific islands of Tonga erupted violently and continued to spurt lava and ash for over a month. When the volcano quieted, there was a new island in its place. Hunga Tonga-Hunga Ha'apai, as the island was named, was about one square mile in area and covered in black gravel.Its not unusual for small islands to be created by volcanoes, which erupt when the magma of the earths mantle breaks through the crust in the form of lava and ash. What is unusual is for those islands to remain longer than five years after they have been created. Hunga Tonga-Hunga Ha'apai was expected to dissolve back into the Pacific Ocean shortly after it was formed. But in 2020, the island was not only still around, but had developed a thriving ecosystem. From above, much of the dark gray island is now lush and green, and birds, such as owls and seagulls, make it their home. It is unknown whether the earths youngest island will last for long, but it has already exceeded expectations.What do the earths oldest and youngest places have in common? Both were created from volcanic rock. The same type of rock that hardened and remained above ground in Baffin Island also hardened to form Hunga Tonga-Hunga Ha'apai more than four billion years later.What connection does The Oldest and Youngest Places on Earth make between volcanic rock in the creation of landforms?It illustrates how volcanic rock contributed to the formation of two islands at different times in the earth's history.It illustrates how the heat and destructive power of volcanic rock prevents the creation of new landforms.It illustrates how volcanic rock plays a role in the creation of some islands, but not others.It illustrates how volcanic rock on Hunga Tonga-Hunga Ha'apai brought a thriving ecosystem to the surface. A .. no te gusta comer galletas How does the CPU interface with the device to coordinate the transfer? Can yall help me please?? How to find slope for 1.5 natural law and positive law are one and the same theories of moral standards. group of answer choices true false imprudential, incorporated, has an unfunded pension liability of $574 million that must be paid in 15 years. to assess the value of the firms stock, financial analysts want to discount this liability back to the present. if the relevant discount rate is 6.7 percent, what is the present value of this liability? (do not round intermediate calculations and enter your answer in dollars, not millions, rounded to 2 decimal places, e.g., 1,234,567.89) What step comes first in making a prediction about an article like Always to Remember: The Vision of Maya Ying Lin?modifyingverifyingpreviewingconcluding a pot of stew is placed on a stove to heat. the temperature of the liquid reaches 170f, and then the pot is taken off the burner and placed on a kitchen counter. the temperature of the air in the kitchen is 76f. if k Over half of those killed remain unidentified. How did soldiers attempt to deal with this fact? eleonora reviews their notes for psychology class several times a week. they also read the chapters each week before class. each weekend they look over the notes from the previous week. what study technique are they using? Which ordered pair, when graphed, would be on the same line as (1,3) and (4,9) ?Multiple choice question.cross outA)(1,3)cross outB)(2,3)cross outC)(2,4)cross outD)(3,6) Determine whether the following numbers are divisible by 2, 3, 4, 5, 6, 8, 9, and/or 10. Then,explain why. 1. 4502. 168Explain why can someone write a text about urbaization The Five Tribes were often grouped together because of the many qualities they held in common. Which of these thingsis not an example of a quality that the tribes shared? Using company Cs phone plan, the cost of an overseas phone call is a $0.80 connection fee plus 23 cents per minute. If the total cost of the call is 7.93, how long is the phone call? Find the value of c in the equation c3 = 1,728