In this exercise, we examine how data dependences affect execution in the basic 5-stage pipeline described in Section 4.5. Problems in this exercise refer to the following sequence of instructions:
or r1, r2, r3
or r2, r1, r4
or r1, r1, r2
Also, assume the following cycle times for each of the options related to forwarding:
Without Forwarding 300ps
With Full Forwarding 300ps
With ALU-ALU Forwarding Only 290 ps
4.9.1 [10] <§4.5> Indicate dependences and their type.
4.9.2 [10] <§4.5> Assume there is no forwarding in this pipelined processor. Indicate hazards and add nop instructions to eliminate them.
4.9.3[10] <§4.5> Assume there is full forwarding. Indicate hazards and add nop instructions to eliminate them.

Answers

Answer 1

Full forwarding allows an ALU instruction to safely forward a value to the next instruction's EX stage. An ALU instruction can forward to the following instruction with ALU-ALU-only forwarding.

Full forwarding allows an ALU instruction to safely forward a value to the next instruction's EX stage.

Full forwarding allows an ALU instruction to safely forward a value to the next instruction's EX stage. A load cannot, however, advance to the next instruction's EX stage (by way of the instruction that follows). The following code replaces these risks with NOP instructions:

I1: or r1, r2, r3, I2: or r2, r1, r4, and I3: or r1, r1, r2.

Full forwarding allows an ALU instruction to safely forward a value to the next instruction's EX stage. An ALU instruction can forward to the following instruction with ALU-ALU-only forwarding.

To know more about ALU instruction click here:

https://brainly.com/question/4340055

#SPJ4


Related Questions

how does network computer differ from workstation.​

Answers

Answer:

Workstations are laptops and PCs that quickly perform complex, technical tasks such as digital content creation and detailed analysis. Servers are software and hardware that store data, manage network resources, and fulfill client requests.

virtual conections with science and technology. Explain , what are being revealed and what are being concealed​

Answers

Some people believe that there is a spiritual connection between science and technology. They believe that science is a way of understanding the natural world, and that technology is a way of using that knowledge to improve the human condition. Others believe that science and technology are two separate disciplines, and that there is no spiritual connection between them.

What is technology?
Technology is the use of knowledge in a specific, repeatable manner to achieve useful aims. The outcome of such an effort may also be referred to as technology. Technology is widely used in daily life, as well as in the fields of science, industry, communication, and transportation. Society has changed as a result of numerous technological advances. The earliest known technology is indeed the stone tool, which was employed in the prehistoric past. This was followed by the use of fire, which helped fuel the Ice Age development of language and the expansion of the human brain. The Bronze Age wheel's development paved the way for longer journeys and the development of more sophisticated devices.

To learn more about technology
https://brainly.com/question/25110079
#SPJ13

You have purchased an LED monitor and connected it to the HDMI port on your computer using an HDMI cable. You configure the screen resolution to 1280 x 1024 with 32-bit color. The geometry of the images displayed on the screen appear to be distorted. What should you do to correct the problem

Answers

Answer:

Change the screen resolution to the native resolution of the monitor

Explanation:

Every monitor has a native resolution that shows pixels and colors best. Modern monitors are usually 1920x1080 or higher. If the resolution given to the monitor is not native to the monitor, then the pixels on the screen will appear pixelated or distorted.

Sending a message to a reference variable before the corresponding object has been instantiated will cause what

Answers

Null Pointer
Source: Quizlet

write a program named makechange that calculates and displays the conversion of an entered number of dollars into currency denominations—twenties, tens, fives, and ones. for example, if 113 dollars is entered, the output would be twenties: 5 tens: 1 fives: 0 ones: 3.

Answers

A program named makechange that calculates and displays the conversion of an entered number of dollars into currency denominations—twenties, tens, fives, and ones is given below:

The Program

public static Dictionary<string, int> Denominations(int amount)

{

   var denominations = new Dictionary<string, int>();

   denominations["twenties"] = amount / 20;

   amount = amount % 20;

   denominations["tens"] = amount / 10;

   amount = amount % 10;

  denominations["fives"] = amount / 5;

   amount = amount % 5;

   denominations["ones"] = amount;

  return denominations;

}

Read more about programming here:

https://brainly.com/question/23275071

#SPJ1

Okay, guys, I know this one will be very hard however while trying to finish this assignment I got overwhelmed and lost by the sheer size of it! Alrighty! Here are the instructions:
/////////////////////////////////////////////////////////////
Modify the TaxReturn class with fields that hold a taxpayer’s Social Security number (snn), last name (last), first name (first), street address (address), city (city), state (state), zip code (zipCode), annual income (income), marital status (status), and tax liability (tax). Include a constructor that requires arguments that provide values for all the fields other than the tax liability. The constructor calculates the tax liability based on annual income and the percentages in the following table.

Income Single Married
0 - 20,000 15% 14%
20,001 - 50,000 22% 20%
50,001+ 30% 28%

In the TaxReturn class, also include a display method that displays all the TaxReturn data.

Implement the PrepareTax application that prompts a user for the data needed to create a TaxReturn. Continue to prompt the user for data as long as any of the following are true:

• The Social Security number is not in the correct format, with digits and dashes in the appropriate positions—for example, 999-99-9999.

• The zip code is not five digits.

• The marital status does not begin with one of the following: S, s, M, or m.

• The annual income is negative.

After all the input data is correct, create a TaxReturn object and then display its values.

An example of the program is shown below:

Enter your Social Security number
999-99-9999
Enter your first name
Jane
Enter your last name
Doe
Enter your address
1961 Mulberry Street
Enter your city
Springfield
Enter your state
Massachusetts
Enter your Zip code
01101
Enter marital status
Single
Enter your annual income
20000
Taxpayer ssn: 999-99-9999 Jane Doe
1961 Mulberry Street
Springfield, Massachusetts 01101
Marital status: S
Income: $20000.0 Tax: $3000.0
////////////////////////////////////////////////////////////////
I also want to point out that this assignment has two different files with one being PrepareTax.java and the other being ReturnTax.java!

Answers

Enter your information ℹ️

TaxReturn.java: Pt. 3

// Write your code here

}

public void display() {

System.out.println("Taxpayer ssn: " + ssn + " " + first + " " + last + "\n" +

address + "\n" + city + ", " + state + " " + zipCode +

"\n Marital status: " + status + "\n" +

"Income: $" + income + " Tax: $" + tax);

What is program?

A computer can run multiple programs simultaneously, and each program can be in a different state. There are three states a program can be in: running, blocked, and ready. If a program is running, it means that it is currently using the computer's resources, such as the processor, memory, and I/O devices, to perform its tasks.

On the other hand, if a program is blocked, it means that it is waiting for a resource to become available, such as a file, network connection, or input from the user. In the scenario you mentioned, "Program A" is in the running state, meaning it is actively using the computer's resources.

Therefore, Program B" is in the blocked state, meaning it is waiting for a resource to become available so it can continue to run.

Learn more about program on:

brainly.com/question/30613605

#SPJ3

python

how do I fix this error I am getting

code:

from tkinter import *
expression = ""

def press(num):
global expression
expression = expression + str(num)
equation.set(expression)

def equalpress():
try:
global expression
total = str(eval(expression))
equation.set(total)
expression = ""

except:
equation.set(" error ")
expression = ""

def clear():
global expression
expression = ""
equation.set("")


equation.set("")

if __name__ == "__main__":
gui = Tk()



gui.geometry("270x150")

equation = StringVar()

expression_field = Entry(gui, textvariable=equation)

expression_field.grid(columnspan=4, ipadx=70)


buttonl = Button(gui, text=' 1', fg='black', bg='white',command=lambda: press(1), height=l, width=7)
buttonl.grid(row=2, column=0)

button2 = Button(gui, text=' 2', fg='black', bg='white',command=lambda: press(2), height=l, width=7)
button2.grid(row=2, column=1)

button3 = Button(gui, text=' 3', fg='black', bg='white',command=lambda: press(2), height=l, width=7)
button3.grid(row=2, column=2)

button4 = Button(gui, text=' 4', fg='black', bg='white',command=lambda: press(2), height=l, width=7)
button4.grid(row=3, column=0)
button5 = Button(gui, text=' 5', fg='black', bg='white',command=lambda: press(2), height=l, width=7)
button5.grid(row=3, column=1)
button6 = Button(gui, text=' 6', fg='black', bg='white',command=lambda: press(2), height=l, width=7)
button6.grid(row=3, column=2)
button7 = Button(gui, text=' 7', fg='black', bg='white',command=lambda: press(2), height=l, width=7)
button7.grid(row=4, column=0)
button8 = Button(gui, text=' 8', fg='black', bg='white',command=lambda: press(2), height=l, width=7)
button8.grid(row=4, column=1)
button9 = Button(gui, text=' 9', fg='black', bg='white',command=lambda: press(2), height=l, width=7)
button9.grid(row=4, column=2)
button0 = Button(gui, text=' 0', fg='black', bg='white',command=lambda: press(2), height=l, width=7)
button0.grid(row=5, column=0)


Add = Button(gui, text=' +', fg='black', bg='white',command=lambda: press("+"), height=l, width=7)
Add.grid(row=2, column=3)

Sub = Button(gui, text=' -', fg='black', bg='white',command=lambda: press(2), height=l, width=7)
Sub.grid(row=3, column=3)

Div = Button(gui, text=' /', fg='black', bg='white',command=lambda: press("/"), height=l, width=7)
Div.grid(row=5, column=3)

Mul = Button(gui, text=' *', fg='black', bg='white',command=lambda: press("*"), height=l, width=7)
Mul.grid(row=4, column=3)

Equal = Button(gui, text=' =', fg='black', bg='white',command=equalpress, height=l, width=7)
Equal.grid(row=5, column=2)

Clear = Button(gui, text=' Clear', fg='black', bg='white',command=clear, height=l, width=7)
Clear.grid(row=5, column=1)

Decimal = Button(gui, text=' .', fg='black', bg='white',command=lambda: press("."), height=l, width=7)
buttonl.grid(row=6, column=0)

gui.mainloop()

Answers

Answer:

from tkinter import *

expression = ""

def press(num):

global expression

expression = expression + str(num)

equation.set(expression)

def equalpress():

try:

 global expression

 total = str(eval(expression))

 equation.set(total)

 expression = ""

except:

 equation.set(" error ")

 expression = ""

def clear():

global expression

expression = ""

equation.set("")

if __name__ == "__main__":

gui = Tk()

 

equation = StringVar(gui, "")

equation.set("")

gui.geometry("270x150")

expression_field = Entry(gui, textvariable=equation)

expression_field.grid(columnspan=4, ipadx=70)

buttonl = Button(gui, text=' 1', fg='black', bg='white',command=lambda: press(1), height=1, width=7)

buttonl.grid(row=2, column=0)

button2 = Button(gui, text=' 2', fg='black', bg='white',command=lambda: press(2), height=1, width=7)

button2.grid(row=2, column=1)

button3 = Button(gui, text=' 3', fg='black', bg='white',command=lambda: press(3), height=1, width=7)

button3.grid(row=2, column=2)

button4 = Button(gui, text=' 4', fg='black', bg='white',command=lambda: press(4), height=1, width=7)

button4.grid(row=3, column=0)

button5 = Button(gui, text=' 5', fg='black', bg='white',command=lambda: press(5), height=1, width=7)

button5.grid(row=3, column=1)

button6 = Button(gui, text=' 6', fg='black', bg='white',command=lambda: press(6), height=1, width=7)

button6.grid(row=3, column=2)

button7 = Button(gui, text=' 7', fg='black', bg='white',command=lambda: press(7), height=1, width=7)

button7.grid(row=4, column=0)

button8 = Button(gui, text=' 8', fg='black', bg='white',command=lambda: press(8), height=1, width=7)

button8.grid(row=4, column=1)

button9 = Button(gui, text=' 9', fg='black', bg='white',command=lambda: press(9), height=1, width=7)

button9.grid(row=4, column=2)

button0 = Button(gui, text=' 0', fg='black', bg='white',command=lambda: press(2), height=1, width=7)

button0.grid(row=5, column=0)

Add = Button(gui, text=' +', fg='black', bg='white',command=lambda: press("+"), height=1, width=7)

Add.grid(row=2, column=3)

Sub = Button(gui, text=' -', fg='black', bg='white',command=lambda: press("-"), height=1, width=7)

Sub.grid(row=3, column=3)

Div = Button(gui, text=' /', fg='black', bg='white',command=lambda: press("/"), height=1, width=7)

Div.grid(row=5, column=3)

Mul = Button(gui, text=' *', fg='black', bg='white',command=lambda: press("*"), height=1, width=7)

Mul.grid(row=4, column=3)

Equal = Button(gui, text=' =', fg='black', bg='white',command=equalpress, height=1, width=7)

Equal.grid(row=5, column=2)

Clear = Button(gui, text=' Clear', fg='black', bg='white',command=clear, height=1, width=7)

Clear.grid(row=5, column=1)

Decimal = Button(gui, text=' .', fg='black', bg='white',command=lambda: press("."), height=1, width=7)

Decimal.grid(row=6, column=0)

gui.mainloop()

Explanation:

I fixed several other typos. Your calculator works like a charm!

pythonhow do I fix this error I am gettingcode:from tkinter import *expression = "" def press(num): global

Compare and contrast the NIST digital signature scheme with the
Elgamal and schnorr digital signature schemes?

Answers

The NIST digital signature scheme, ElGamal, and Schnorr digital signature schemes are all cryptographic algorithms used for digital signatures.

The NIST digital signature scheme is based on the Digital Signature Standard (DSS) developed by the National Institute of Standards and Technology (NIST). It uses the Digital Signature Algorithm (DSA) and is widely adopted in various applications. It provides strong security and efficient signature verification.On the other hand, ElGamal and Schnorr are both based on the discrete logarithm problem. The ElGamal signature scheme is a probabilistic algorithm that generates a pair of values as the signature. It offers high security and is particularly suitable for applications where signer anonymity is desired. However, it requires a larger key size compared to other schemes.The Schnorr signature scheme, named after its inventor Claus Schnorr, is a deterministic algorithm that produces a shorter signature compared to ElGamal. It offers strong security and is known for its simplicity and efficiency. Schnorr signatures also support additional features like multi-signatures and interactive protocols.While all three schemes are used for digital signatures, they differ in terms of their underlying mathematics, security levels, and efficiency. The NIST digital signature scheme is widely recognized and adopted due to its standardized nature and strong security. ElGamal offers signer anonymity but requires larger key sizes. Schnorr, on the other hand, provides shorter signatures and additional features like multi-signatures.In summary, the NIST digital signature scheme, ElGamal, and Schnorr digital signature schemes each have their own strengths and characteristics, catering to different security and efficiency requirements in various applications.

Learn more about digital signature scheme

brainly.com/question/31971616

#SPJ11

1.Which one of the following buttons returns a window to its original size?

A.
Maximize button

B.
Close button

C.
Minimize button

D.
Restore button
2.What is the name used to identify the pointer that is controlled by the mouse?

A.
Alert

B.
Boot

C.
Cursor

D.
Drag
3.What is the process called when information from your computer is transferred to another computer?

A.
Upload

B.
Copy

C.
Transfer

D.
Download
4.Which one of the following indicates a file's format?

A.
Icon

B.
Extension

C.
Platform

D.
Driver

5.What term refers to a single directory that can hold a collection of files? A. Platform B. Folder C. Extension D. Icon
6.6.
What term refers to a single directory that can hold a collection of files?

A.
Platform

B.
Folder

C.
Extension

D.
Icon
7.What is the common term used to describe a single computer document?

A.
Driver

B.
File

C.
Screenshot

D.
Icon
8.
What is the main piece of computer software on which every other piece of software relies?

A.
Desktop

B.
Operating system

C.
Database

D.
Driver
BUT DOES ANYONE HAVE AL 20 ANSWERSSSSS I'LL MARK YOU THE BRAINLIEST PLEASEEEE HELPPPP

Answers

Answer:

1. D

2.C

3. D

4. A

5. B

6.B

7.B or D

8.C

Explanation:

Not 100% sure about 3,4, 8

why do applications have a white screen that pops up for a few seconds before showing the applcaition

Answers

Your SD card may be the source of the white screen of death problem if you have relocated your programs there and are using them from that location.

What does a white blank screen mean?This error typically results from one of the following causes: There is a hardware issue with your device. A crucial driver or drivers—usually the graphics card driver—are malfunctioning. They can be tainted or simply out of date. The system's operation is being hampered by a background program.Your SD card may be the source of the white screen of death problem if you have relocated your programs there and are using them from that location. By relocating the programs to the internal storage, you can resolve this. Download the Move app to SD card app for free on your phone.

To learn more about screen refer to:

https://brainly.com/question/4413732

#SPJ4

When team members are sarcastic or ostracize another member for not meeting team norms, they are using power. reward coercive charisma expert

Answers

When team members are sarcastic or ostracize another member for not meeting team norms, they are using coercive power.

What is power?

Power refers to the capacity or ability to direct or influence the behavior of others or the course of events. Power, in a nutshell, is a force used to influence others to achieve desired results. Power can be described in a variety of ways, and each definition reflects a different viewpoint or philosophy regarding power. In leadership, power is critical since it is what allows a leader to lead and influence people.  

Coercive Power Coercive power is the ability to impose punishments or unpleasant consequences on others. When team members are sarcastic or ostracize another member for not meeting team norms, they are using coercive power. Coercive power is frequently implemented in workplaces where workers who fail to follow the company's rules and regulations are subject to penalties. Coercive power is frequently employed by team leaders who utilize a negative or heavy-handed approach to exert influence. The threat of losing their job is the most frequently used coercive power. Other forms of coercive power include punishment, rejection, humiliation, criticism, and other tactics that emphasize a person's vulnerability and dependence. Therefore, the correct answer is: When team members are sarcastic or ostracize another member for not meeting team norms, they are using coercive power.

Learn more about coercive power Here.

https://brainly.com/question/10384985

#SPJ11

true/false wake tech students can download the most recent microsoft office 365 products to their device(s) free of charge.

Answers

Tech students can download the most recent Microsoft office 365 products to their device(s) free of charge is true.

What is included in Office 365 for Students?

With the use of this subscription, students may set up Office software on up to 5 PCs or Macs, as well as Windows tablets and iPads®. They can also install Word, Excel, PowerPoint, Outlook, OneNote, Publisher, and Access on additional mobile devices. Additionally, the subscription provides 1TB of managed OneDrive storage.

Therefore, as of recent, Office 365 Education, which offers free access to Word, Excel, PowerPoint, OneNote, and now Microsoft Teams as well as extra classroom tools, is available to instructors and students at qualifying institutions.

Learn more about Microsoft office from

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

Analysis tools that support viewing all or selected parts of data, querying the database, and generating reports include query-by-example as well as a specialized programming language called

Answers

Analysis tools such as query-by-example and a specialised programming language called SQL facilitate examining all or selected data, querying the database, and generating reports.

Data collection and analysis technologies are used to collect, evaluate, and present data for a range of applications and industries. They take unprocessed data and turn it into meaningful knowledge that businesses can use to make better choices. A data analyst may operate in a range of sectors, including operations, marketing, and finance. For instance, their findings might result in lower shipping costs. different viewpoints on consumer behaviour. Among the numerous types of data analysis tools, three categories stand out as particularly essential: Applications for Excel, R, Python, and business intelligence (BI).

Learn more about Analysis tools from

brainly.com/question/13994256

#SPJ4

Which kinds of sites are not credible because anyone can change the information on them?.

Answers

Answer:

Yes

Explanation:

Non-credible websites may have poor design, broken links, and grammar and spelling errors. They may lack author, date, and/or source information. They will not be associated with credible institutions, organizations, or entities. They may contain unbelievable or incorrect information.

g what value is returned by the following expression? !isnan(12.345) group of answer choices true false nan undefined

Answers

True. The expression is asking if the input, 12.345, is "not a number" (i.e. not NaN). Since 12.345 is not a special value like NaN, the expression will return true.

What is expression?

Expression is a way of communicating thoughts, feelings, and opinions through words, facial expressions, gestures, and other forms of nonverbal communication. It is an important part of how we share our ideas and experiences with the world around us. Expressions can be used to express joy, sorrow, anger, surprise, disappointment, and a wide range of other emotions. They can also be used to convey information, such as facts, opinions, and stories. Expression is an important part of communication and can help to make our interactions with others more meaningful.

To learn more about expression
https://brainly.com/question/18689671
#SPJ1

In which kind of governance model are new roles (outside of IT or a central authority) introduced such as Site Administrators, Data Stewards, and Content Authors with increasing collaboration between IT and business users?

Answers

The governance model that introduces new roles such as Site Administrators, Data Stewards, and Content Authors.

In a federated governance model, there is a decentralized approach to governance where responsibilities and decision-making authority are shared across different departments or business units. This allows for greater flexibility and agility in responding to the needs of the organization. The introduction of new roles, such as Site Administrators, Data Stewards, and Content Authors, reflects the need for specialized expertise in managing specific areas of the organization's operations. This approach also promotes greater collaboration between IT and business users, as they work together to develop and implement governance policies and procedures. Overall, a federated governance model can help organizations better manage their data and content, while also promoting greater agility and collaboration across different departments or business units.

learn more about data here:

https://brainly.com/question/13650923

#SPJ11

how to rosh review login

Answers

Log in at app.roshreview.com to access , regardless of whether you have a trial account or a paid subscription. Go to the Create Exam tab to get to the Qbank and start creating.

How can I obtain a free review of Rosh?

Absolutely! By making a free account (no billing information needed—we swear), you may test out a number of sample questions in the actual app. You will receive an account that is permanently functional and has a certain quantity of questions.

How do I modify my Rosh review password?

Register with your account. Go to the Account Settings tab. On the Manage Profile area, enter your new password and/or email address. To update your profile, click the red Update Profile button at the bottom of the page.

To know more about Rosh Review visit :-

brainly.com/question/30326515

#SPJ4

Question 5 of 10 Which example best demonstrates an impact of computers on the economy? A. Entertainment is delivered instantly to users via streaming video to televisions and smartphones. B. Over a million people in the United States are employed in online sales and advertising. C. Smartphones and other smart devices have changed the way we research topics for school assignments. O D. Content you post online may be used against you, hurting your chances of employment. MUN​

Answers

Answer:

The answer is B.

Explanation:

Economy is the key word here. B talks about the number of people employed due to computer advertisements. Thus answering how computers impacted the economy.

use humorous and monster in a sentence.

Answers

Answer: Here are a few...

1) The monstrous elephant trampled through the jungle crushing everything in its path.

2) Because it was so monstrous, the maid often got lost in the massive home she cleaned.

3) Monstrous amounts of foods are needed to feed the hundreds of refugees who showed up at the soup kitchen.

Explanation:

I hope this helps :D

browsers assume that if no folder information is given, the file is in the same folder as the current document. True or false?

Answers

True. Browsers assume that if no folder information is given for a file, the file is in the same folder (directory) as the current document being accessed.

When referencing a file or resource within a webpage, developers can use relative paths to specify the file's location relative to the current document. If no specific folder information is provided, the browser assumes that the file is located in the same folder as the current document. For example, if you have a webpage called index. html and you want to include an image file called  that is located in the same folder, you can simply use as the source path without specifying the folder. The browser will understand that the file is in the same directory as the HTML file and load it accordingly.

Learn more about browser here:

https://brainly.com/question/19561587

#SPJ11

Which force is exerted on an object by a person or another object​

Answers

An applied force is a force that is applied to an object by a person or another object. If a person is pushing a desk across the room, then there is an applied force acting upon the object. The applied force is the force exerted on the desk by the person. (Caution: do not confuse weight with mass

You are asked to optimize a cache design for the given references. there are three direct-mapped cache designs possible, all with a total of eight words of data:

Answers

Answer:

Computer Science. Computer Science questions and answers. You are asked to optimize a cache design for the given references. There are three direct-mapped cache designs possible, all with

Explanation:

Computer Science. Computer Science questions and answers. You are asked to optimize a cache design for the given references. There are three direct-mapped cache designs possible, all with

compare and discuss between electromechanical and electronic era of computer​

Answers

Answer:

The difference between electromechanical and electronic era of computer​ is that electomaechanical era was between the date of 1840 and 1940.These are the beginnings of telecommunication.While electronic era of computer​ was The electronic age is wha we currently live in. It can be defined as the time between 1940 and right now. The ENIAC was the first high-speed, digital computer capable of being reprogrammed to solve a full range of computing problems.

you have just downloaded a game onto your laptop. when you are not using the device, it unexpectedly downloads new content. which of these is the most likely cause of the issue

Answers

Answer:

deceptive software installed with the game.

Explanation:

which keyboard shortcut copies information to the clipboard?

Answers

Answer:

Ctrl+C for PC or Command+C for Mac

How many gigabytes would it take to download only 10 photos

Answers

Answer:

It depends on the size of the picture and multiple different factors

Explanation:

How do you choose the best point of view for your own narratives?

Answers

Answer:

If you want to write the entire story in individual, quirky language, choose first person. If you want your POV character to indulge in lengthy ruminations, choose first person. If you want your reader to feel high identification with your POV character, choose first person or close third.

Explanation:

Which composer below was not part of the classical period?
A. Beethoven B. Bach
C. Mozart

Answers

Explanation:

B. Bach

Thanks for your point

Computer engineering is a career that......

Answers

Answer:

Computer engineering is a career that works on the development and research of new technology-related things.

Explanation:

Why you should observe proper conduct in your communication in the different social networking sites? (3-5 sentences) ​

Answers

Answer: reputation

Explanation:

One must take care in posting to social media sites because, especially with followers, someone can take screenshots of an unsavory post. Then, the photo is stored locally on their phone (and even worse, can be automatically uploaded to the cloud, making chances of completely eradicating something embarrassing even slimmer). If this is shared around, it may hurt one's career or reputation. Thus, it would be better safe than sorry to pay attention to what you post.

Other Questions
find x and y plssss help Norma owns and operates an accounting business as a sole proprietor. She purchased several computers at a cost of $9,000 for use in her business. Her business produced $120,000 of net income. Assume that she purchased the computers (5-year property) and placed them into service on January 11th of the current year. What is the amount of the cost recovery deductions for the first 3 years under MACRS? [The MACRS Table is shown under Course Supplement Materials.] (Be sure to show your work). Calculate the cost recovery deduction for the first 3 years if Norma elects straight-line depreciation. (Show your work). What is the cost recovery deduction she can use for each year under Section 179? The aircraft in the picture above possesses potential and kinetic energy.TrueFalse a worldwide geopraphic area structure is an organizational form in which Pain that radiates to the right lower quadrant from the umbilical area, nausea and vomiting, and anorexia are MOST indicative of: When working with food personal items suc as cell phone should be Analyze why the trade empires in the Indian Ocean region succeed while the Ottoman, Safavid, and Mughal Empires declined. Read this sentence from the passage. "They have no fear of the English plague, only disdain for English stink." 1. PART A: In the context of this sentence, what does disdain mean? * WHAT MAKES YOU SAD AND DEPRESSED How the term "Karma" has been defined in Vaisesika andNyaya philosopy? Provide teo examples?Note this concept is different from the other philosophies A marble is randomly from a bag containing 3 red 3 blue and 3 green Please choose the correct definition of a line flower. Can we consider cell wall as a difference between Eukaryotic cells and Prokaryotic cells ? Angles one and two are supplementary. angle one measures 64 degrees more than angle two What is angle 2? Girl Scout Troop has an order for 48 cases of cookies; each case contains 12 boxes. They just received a new order for 576 boxes of cookies. How many additional cases of cookies do they need? Please show your calculations! GENERAL CHEMISTRY 12. A proposed mechanism for the production of Ais Step 1: 2 AA (Slow) Step 2: A8 A8 (Fast) (a) What is the molecularity of Step 1 (b) What is the elementary rate low for Step 17 (e) Which of the following is an example of the Doppler effect?A. Two identical musical instruments being played next to each other will produce a sound twice as loud as if only one were played.B. The siren of a police car sounds different when the car is coming toward you than it does when it passes you.C. A hiker shouts "hello" into a canyon and hears it repeated back several times before it fades away.D. Vibrations from a tuning fork pass through the air and cause a nearby dish of water to produce ripples of the same frequency. Which is not a good way to get started on your tasks? what are a few different ways that the supermarket chain could incorporate farm-to-table principles into its operations while still meeting consumer demands? the reason the united states spends so much on the military is based on the theory of