Which sentence uses parallel structure correctly?
A. Texting while driving causes automobile accidents, people are
distracted, and it is bad.
B. The death penalty is cruel, really expensive, and criminals still
commit crimes.
OC. Animal testing has helped discover medicines, saves lives, and will
make people healthy.
OD. Processed foods are bad for you, are high in fat, and are the cause
of serious health issues.

Answers

Answer 1

Answer: Correct option is Option D.

Explanation:

Processed foods are bad for you, are high in fat, and are the cause of serious health issues.

Parallel structures are those structures where words are used in same pattern in a sentence to show that two given ideas/phrases are of similar significance.

This sentence uses parallel structure correctly.

Parallel structure in the sentence are -

are bad for you

are high in fat

are the cause of serious health issues

Answer 2

The sentence, which uses parallel structure correctly is "Animal testing has helped discover medicines, saves lives, and will make people healthy." The correct option is C.

What is parallel structure?

Parallel structure, also known as parallelism, is a grammatical structure in which words, phrases, or clauses in a sentence have a similar form and function. This means that elements within a sentence that are similar in meaning should be expressed in a similar way grammatically. The purpose of parallel structure is to create a balanced and cohesive sentence structure that is easy to read and understand.

For example, in the sentence "She likes hiking, swimming, and running," the verbs "hiking," "swimming," and "running" are all in the same gerund form, making them parallel in structure. Similarly, in the sentence "The dog chased the cat, barked at the mailman, and dug up the garden," the verbs "chased," "barked," and "dug" are all in the same past tense form, making them parallel in structure.

Parallel structure is important because it creates a sense of symmetry and balance in a sentence, making it easier to understand and remember. It also helps to emphasize the similarity or difference between two or more ideas or items, making them more noticeable to the reader or listener.

Therefore, The sentence that uses parallel structure correctly is option C. "Animal testing has helped discover medicines, saves lives, and will make people healthy." In this sentence, all the verbs are in the same form, and the sentence follows a consistent structure with the use of parallelism.

To learn about Jalen folded click:

https://brainly.com/question/8055410

#SPJ7


Related Questions

Calvin is creating a 3D shell of a turtle. He is creating a sculpted, intricate design for the pattern he wants on the shell, but wants it to tile across the surface of the shell. What tool can he use to do this?

A.
Dynamic Topology

B.
Symmetry

C.
Remesh

D.
Masking
(This is a question from edmentum's 3d modeling class)

Answers

A is right I did this

What are the reasons for breaking up a long data transmission into a number of frames?

Answers

Answer:

Buffer size may be limited.

Which of the following is an example of how high student loan debt can
impact a person's life decisions?

Answers

Student loan debt is the debt owed by the students to a financial institution. The person has to choose public transportation over a personal vehicle as they cannot afford a downpayment.

What is the impact of the student loan?

Students loan are the debt that is incurred by the students for educational purposes and affects the quality of the life of a person as they need to save money to pay the debt.

The student owing money cannot afford to buy their vehicle because of the downpayment and will choose to use public transportation over buying a car to save money.

Therefore, high student loans will lead to the use of public transportation instead of buying cars.

Learn more about loans here:

https://brainly.com/question/27205887

#SPJ1

You are creating a game in which players lose their silver if they are robbed by pirates. Which line of code would remove the silver from the list of treasures? O A. treasures.pop("silver") O B. treasures.remove("silver") OC. treasures.pop["silver"] O D. treasures.remove["silver"]​

Answers

The  line of code that would remove the silver from the list of treasures is treasures.remove("silver").

What is needed to create a game?

In the development of a game, it's vital to know what is needed in the creation of that  game. Especially in the area of inputs such as coding.

Conclusively, The  line of code that would remove the silver from the list of treasures is treasures.remove("silver"). as it contains the information on the silver removal.

Learn more about game from

https://brainly.com/question/857914

#SPJ1

advantages and disadvantages of memory mapped I/O?

Answers

Explanation:

Advantages : The advantage of memory mapped I/O is that all instructions and addressing modes can be used for I/O access. This makes programming easier. When Direct I/O is supported, many microprocessors provide limited instructions and addressing modes for I/O access.

Dis Advantages : But there are also disadvantages: An I/O error on a memory-mapped file cannot be caught and dealt with by SQLite. Instead, the I/O error causes a signal which, if not caught by the application, results in a program crash.

Which of the following questions should you ask when testing your website? Choose all answers that are correct.
A. How can I insert an e-mail hyperlink?
B. Do all elements of my website work?
C. Does my website look the way I want it to?
D. Is my website user-friendly?​

Answers

Answer:

B

C

D

Explanation:

give brainliest pls

The questions that are important to ask, while testing a website are all options. Therefore, options A, B, C, and D are correct.

What is a website?

A website is a collection of web pages that are hosted on a server and can be accessed via the Internet using a web browser. A website is typically used to provide information about a business, organization, or individual, or to offer products or services to customers.

It can contain various types of content, such as text, images, videos, and interactive features. Websites can range in complexity from simple static pages to dynamic web applications that offer advanced functionality and interactivity.

They are an important tool for individuals and organizations to communicate with their audience, share information, and conduct business online. Thus, options A, B, C, and D are correct.

Learn more about websites, here:

https://brainly.com/question/6107621

#SPJ2

what is network days function

Answers

Answer:

The NETWORKDAYS Function calculates the number of workdays between two dates in Excel. When using the function, the number of weekends are automatically excluded. It also allows you to skip specified holidays and only count business days. It is categorized in Excel as a Date/Time Function.

explain the pros and cons of touchscreen, non-touchscreen, and hybrid devices:

Answers

Answer:The customer reviews of touchscreen laptops like the Lenovo Ideapad 3 Laptop show that it allows faster navigation. It is based on touch-screen technology that improves the functionality of your computer. This allows you to perform tasks that are difficult to do on a traditional laptop. It is easy to use and you can operate it without requiring any additional attachment.

Explanation:

A touch screen laptop is easier to use, fun to navigate, and comes in sleeker models. The non-touch laptop is a traditional laptop variant that takes input from the built-in touchpad and keyboard. Both the laptops are similar in many aspects. At first, the touchscreen feature was only available in high-end business laptops, but now you can buy a touch screen laptop at an affordable price. In this blog, we compare Touch Screen Vs Non-Touch Laptops and help you understand their advantages and disadvantages.

CodeHS Python: Using a while loop, print out a list of numbers from 5 to 55 by fives

Answers

Answer:

i = 5

while i < 56:

 print(i)

 i += 5

Explanation:

I basically started off with a value and said keep adding on to this value by 5, while not going past 55.

Identify the calculation performed by the following code.
function calcArea(length, width) {

var rectArea = length*width;

return rectArea;

}

var x = 8;

var y = 6;

calcArea(x, y);

a.
48
b.
96
c.
28
d.
56

Answers

Answer:

48

Explanation:

The function returns length * width

In the function call, the values are legnth: 8 and width: 6 this means the function is returns 8 * 6 wich is 48.

what does it mean by an operating system plays the 'middle person's role between the hardware and the application software?​

Answers

Answer:

The hard ware holds the operating system, and the operating controls the application software.

Explanation:

100 PTS! The first network was called:

A. the Internet
B. ARPANET
C. the network
D. networking

Answers

Answer:

B

Explanation:

.....................

Answer: B. ARPANET

Explanation:in full Advanced Research Projects Agency Network, experimental computer network that was the forerunner of the Internet.

Customized packages are a type of application software true or false

Answers

Answer:

donno, but i guess its true

Explanation:

u dont need a external hardware or plug something to have them, u can just install

How to write a C++ program that lets the user guess if a randomly generated integer is even or odd then the computer lets them know if they are correct or incorrect

Answers

#include <iostream>

using namespace std;

int main() {

 string input;

 string rand_type;

int number=rand()%100+1; //number between 1 and 100

if ( number % 2 == 0)

   rand_type= "even";

 else

  rand_type="odd";

 cout << "your guess: ";

 cin >> input;

 if ( input== rand_type)

   cout << "correct.\n";

else

   cout << "incorrect.\n";

 return 0;

}

3. Which part of the computer is used
for typing?
a. Mouse
b. Keyboard

Answers

Hey!

Your answer is B.Keyboard

-Whats a keyboard?-

-A keyboard is something we use for typing. Infact, im typing on a keyboard right now.-

Keyboards are used for almost all devices..

They are used on..

laptopstabletsphones sometimes even tvs!

Hope this helps!

_natty_

fghfghgfhgfhgfhfghgfhgfhfghgfhgfh

Answers

Answer:

Stay safe, stay healthy and blessed.

Have a good day !

Thank you

Answer:

are you okay

Explanation:

just want to know

In cell E4, enter a formula using relative cell references that multiply cell C4 by cell D4

Answers

Enter this formula into cell E4 (even the equals is needed)

=PRODUCT(C4:D4)

What is the purpose of a host operating system?

It allows one guest to access software at a time.
It controls who can access software.
It stands between the guest OS and the hardware.
It is used to monitor network traffic.

Answers

Answer:

It controls who can access software.

Explanation:

what is e-bidding? explain in 3 lines​

Answers

Answer:

An ‘‘‘electronic bidding system ‘‘‘ is an electronic bidding event according to defined negotiation rules. A buyer and two or more suppliers take part in this online event.

What kind of internal factors influence the process of business enterprise

Answers

Answer:

The three main internal factors are:

Human resources

Finance

Current or modern technology

Explanation:

Financial resources like funding, investment opportunities, and sources of income.

Physical resources like the company's location, equipment, and facilities.

Human resources like employees, target audiences, and volunteers.

Which statement describes a difference between front-end and back-end databases?

Answers

Answer:

So a statement could be the front-end is what we see and the back-end is what we don't see, the behind the scenes. Like a play, we see the characters and them acting out a story but we dont see who is doing the lights, playing the music, fixing the costumes and makeup etc..

Explanation:

The term front-end means interface while the term back-end means server. So imagine you go on your social media app, what you can see like your friends list and your account and the pictures you post, who liked the pictures and all of that is called the front-end and is what you as a user can interact with; front-end development is the programming that focuses on the visual aspect and elements of a website or app that a user will interact with its called in other words the client side. Meanwhile, back-end development focusing on the side of a website users can't see otherwise known as the server side, its what code the site uses and what it does with data and how a server runs and interacts with a user on whatever device surface they're using.

Answer:

B is the answer

Explanation:

Some one in the first response said it not me but he just saved me from a C

The question is provided in the image below.

Answers

Answer: b

Explanation:

You can save your work in bluegriffon using either _____ or _____
A. The format: Primary toolbar; the menu bar
B. The format: Secondary toolbar; Wysiwg view
C. Hyperlink; the "View" dropdown menu bar
D. Source view; a hyperlink

Answers

Answer:

A-the format: primary toolbar, the menu bar

Discusse five advantages of utilising DBMS over a file based system

Answers

Answer:

Data concurrency – ...

Data searching – ...

Data integrity – ...

System crashing – ...

Data security –

Explanation:

How APIs can be useful for data collection ?​

Answers

Answer:

These softwares are a program that is a connection between computer networks, which can be useful for storing data.

Which of the following best describes the impact of Creative Commons?

Creative Commons gives creators of digital content the ability to indicate how their works can be legally used and distributed, enabling broad access to digital information.

Creative Commons gives Internet users the right to legally use and distribute any previously copyrighted work, enabling broad access to digital information.

Create Commons provides lossless transmission of messages, enabling reliable distribution of digital information.

Creative Commons provides private transmission of messages, enabling secure distribution of digital information.

Answers

Answer:

it’s just a screenie hope it helps

Which of the following statements about markup languages is true?
• Markup languages are used to write algorithms.
Markup languages are used to structure content for computers to interpret
JavaScript is an example of a markup language.
Markup languages are a type of programming language.

Answers

The most widely used markup languages are SGML (Standard Generalized Markup Language), HTML (Hypertext Markup Language), and XML (Extensible Markup Language).

B .Markup languages are used to structure content for computers to interpret is true.

What is a markup language in programming?

A markup language is a type of language used to annotate text and embed tags in accurately styled electronic documents, irrespective of computer platform, operating system, application or program.

What does a markup language used to identify content?

Hypertext markup language is used to aid in the publication of web pages by providing a structure that defines elements like tables, forms, lists and headings, and identifies where different portions of our content begin and end.

To learn more about A markup language, refer

https://brainly.com/question/12972350

#SPJ2

I just need the flowchart and pseudocode.No need program.

Q1.Write a program to process a collection of savings account transactions (deposits or withdrawals). Your program should begin by reading in the previous account balance and then read and process each transaction. Enter a positive value for a deposit and a negative value for a withdrawal. For each transaction, print the message “Withdrawal” or “Deposit” and the new balance. Print an error message if a withdrawal would result in a negative balance and do not change the balance. Use a sentinel value of 0 to signal end of the transactions.

Answers

The pseudocode algorithm for the given program is:

PROCESS saving account transactionsREQUEST for previous account balanceFOR every deposit made, (+)FOR every withdrawal made (-)

What is a Pseudocode?

This refers to the use of plain language to describe the sequence of steps for solving a problem in human language.

Hence, we can see that the complete step is given below:

5. DISPLAY "Withdrawal" when (-) is used.

6. DISPLAY "Deposit" when (+) is used

7. ELSE

8. PRINT "Error"

#SPJ1

Read more about flowcharts and pseudocodes here:

https://brainly.com/question/24735155

The Greater Than sign (>) is an example of
operator.

Answers

Answer:

logical

Explanation:

the greater than sign (>) is an example of logical operator.

A > sign asks if the first value is greater than the second value. That is, is the value or expression to the left of the > sign greater than the value or expression to the right side? For example, the statement (A > B) is true if A is greater than B

https://brainly.in/question/6901230

Which CPT icon should be considered when entering CPT codes into a spreadsheet for numerical sorting

Answers

Answer:

##

Explanation:

Hashtag (#) symbols identifies codes out of numerical sequence. These codes are listed in Appendix N. Star symbols identify codes that, when appended by modifier 95, can be used to report telemedicine services.

Other Questions
Nine of the numbers 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 are to be put in two groups so that the sum of the numbers in each group is a multiple of four.What is the largest number that could be left out? In lines 6-8, how do the two instances of alliteration impact the meaning of the poem?They express the speaker's irritation with his feelings of being overworked, overwhelmed, and underappreciated.They express the speaker's irritation with his feelings of being overworked, overwhelmed, and underappreciated.They indicate the moment when things become overwhelming and then the speaker regains composure, reevaluates, and begins again.They indicate the moment when things become overwhelming and then the speaker regains composure, reevaluates, and begins again.They help to bring a lighthearted moment to the stressful situation being described by the speaker.They help to bring a lighthearted moment to the stressful situation being described by the speaker.They highlight the speaker's hesitation in trying to gain an objective perspective on his list of responsibilities.They highlight the speaker's hesitation in trying to gain an objective perspective on his list of responsibilities. A firm offloads some of its production costs to 3rd parties. This would contribute to market failure because Which expression shows 48 + 36 written as a product of two factors HELP TAKE YOUR TIME!!!FOR MY SISTER You have been hired as a security administrator. While analyzing your organization's personnel policies, you notice the presence of multiple orphaned accounts. How should you handle this situation Determine the equation for a circle in standard form with a radius of 18, and center (18,-18). the best one ill give brainless or maybe the fastest oneChosse a poemtell me the name of the poemanswer these questionsWhat images stand out to you or repeat in this poem? Why are those images important to the poem? What makes you think that?If there is an image in the poem, try to change it with another one that works as well or better. AgC2H3O2 + K2CrO4 = Ag2CrO4 + KC2H3O2 How many moles of silver chromate, Ag2CrO4 are produced in this reaction A rival of Bernini's was one of the leading Baroque architects in Italy. Thestructures he designed and created are more complex than Bernini's, and heoften manipulated the classical forms in innovative ways. Who was thisarchitect?A John Singleton CopleyB Sir Peter Paul RubensC Francesco BorrominiD Thomas Gainsborough Which of the following describes the Gestalt law of closure? a. When I look at a partial image, I can still see the intended composition; I percieve more detail in an image than what is visible. b. When similar pieces of a composition are repeated near one another, I read all of those parts as one structure. c. When I see symmetric parts of a composition, I read those parts as one message due to the balance achieved on a reflected axis. d. When I see like parts of a composition repeated throughout, I recognize those parts as sharing similar traits and being of the same grou whats the minimum and maximum value of f(x)=3(x+8)^210 find the area plssssssssssssssssss Crea oraciones originales con los elementos de las columnas. Une los elementos usando por y para.(No) fuimos a la tienda por/para comprar tabletas por/para ?(No) fuimos a las montaas por/para tres das por/para ?(No) fuiste a Medelln por/para razones de trabajo por/para ?(No) fueron a Buenos Aires por/para tomar el sol por/para ? Solve the inequality 20 6x < -10. How long does it take for mosquito bites to go away. Pls help me in this khan academy exercise For x2 + 3x - 18 = (x - 3)(x + a), what valueof a would make this equation true? What is one way a woman's family can achieve social mobility in the caste system? :( Help please #1 The term "endosymbiotic" means...A. inside and helping each otherB. inside and attacking anotherC. outside and attacking anotherD. outside and helping each other#2 The most difficult step for science to explain about how early life formed is...A. how molecules could self replicate.B. how selectively permeable membranes formed.C. how organic molecules formed.D. how nucleic acids like DNA began working with amino acids to make proteins.