Christopher was looking at the TV while getting feedback on his opinion essay. What should he do differently? Don't get feedback from a trusted adult. Finish watching his TV show. Make sure the trusted adult likes the show on TV, too. Turn off the TV and face the person who is speaking.

Answers

Answer 1

Answer:

Turn off the TV and face the person who is speaking.


Related Questions

What are the vertical areas of the spreadsheet?

a
Verticies
b
Ventricals
c
Columns
d
Rows

Answers

Answer:

Columns

Explanation:

A spreadsheet may a explained as a tabular arrangement or arrays of cells which allows users to enter both numeric and string data for storage, manipulation and analysis. The spreadsheet program has both the vertical and horizontal cell arrangement with the vertical areas being reffered to as THE COLUMN which are labeled using alphabets arranged from A - AZ, AA - AZ, and so on to make up a total of 16384 columns on the Microsoft Excel spreadsheet program. Cells are located using a combination of column and row address. With row representing the horizontal area of the spreadsheet and labeled with digits. Therefore cells are usually refereed to as A1, (column A row 1) and so on.

my code get an input of 1900 and it should output not a leap year but it fails first line of code. It should output not a Leap any number with 1500 not divisble by 4 with/out a remainder should output (not a leap year. )


input_year = int(input())

if input_year % 4 == 0: #fails on this step, 1900 should be false
print(input_year, "- is Leap Year")

elif input_year % 100 == 0:
print(input_year, "- leap year")

elif input_year % 400 ==0:
print(input_year, "is a leap year")

else:
print(input_year, "- not a leap year")

Answers

Answer:

Explanation:

The code does not fail on the first step since 1900 divided by 4 is actually 475 and has no remainder, meaning that it should return True. The code won't work because the if statements need to be nested in a different format. The correct algorithm would be the following, which can also be seen in the picture attached below that if we input 1900 it would output is not a leap year as it fails on the division by 400 which gives a remainder of 0.75

input_year = int(input())

if input_year % 4 == 0:

   if input_year % 100 == 0:

       if input_year % 400 == 0:

           print(input_year, "is a leap year")

       else:

           print(input_year, "- not a leap year")

   else:

       print(input_year, "is a leap year")

else:

   print(input_year, "- not a leap year")

Three reasons Why we connect speakers to computers

Answers

1. Some computers do not have speaker therefore we connect speakers

2. Some speakers don’t have clear audio so to fix that we connect new ones

3. What do you do if your speaker inside the computer is broken..... connect new speakers

Answer:

we connected speakers with computers for listening voices or sound .. because the computer has not their own speaker..

Explanation:

Write a template that accepts an argument and returns its absolute value. The absolute entered by the user, then return the total. The argument sent into the function should be the number of values the function is to read. Test the template in a simple driver program that sends values of various types as arguments and displays the results.

Answers

Answer:

In python:

The template/function is as follows:

def absval(value):

   return abs(value)

Explanation:

This defines the function

def absval(value):

This returns the absolute value of the argument using the abs() function

   return abs(value)

To call the function from main, you may use:

print(absval(-4))

Suppose Alice downloads a buggy browser that implements TLS incorrectly. The TLS specification says that, during the handshake, the browser should send a random 256-bit number RB. Instead of picking RB randomly the browser always sends all zeros. Describe an attack that is possible against this buggy browser and how to update the browser so that this attack is no longer feasible.

Answers

Solution :

It is given that Alice downloads the buggy browser which implements a TLS incorrectly. The specification of a TLS states that during a handshake, the browser sends a 256 bit number of RB randomly.

So in this case, a man-n-the-middle attack is possible. It can compromise the confidentiality of Alice. Updating the browser by visiting the website and checking its latest version of the browser or installing some other browser which has a more trust in the market for its security features.

briefly explain 5 software which is either free or fee​

Answers

Answer:

65

Explanation:

Answer:

65

Explanation:

12. But not parallelism, it is achievable to have concurrency in operating system threading?

Answers

Answer:

Yes, it is possible to have concurrency but not parallelism. Concurrency: Concurrency means where two different tasks or threads start working together in an overlapped time period, however, it does not mean they run at same instant.

Number the steps to describe how Tristan can complete
this task.
Cut the Television and related equipment row.
Paste the Television and related equipment row.
Click the plus sign on the left side of the table between
the last two rows.

Answers

Answer:

Cut the Television and related equipment row.Click the plus sign on the left side of the table between  the last two rows.Paste the Television and related equipment row.

Explanation:

In order to move the row, Tristan should first select the row and then cut it. This will ensure that the row will be moved completely instead of copied.

Tristan should then hover with the mouse between the last two rows and click on the plus sign on the left side. It will add a new row to the sheet. between the last two rows.

Tristan should then select the topmost cell and click paste. The television row will be pasted there and Tristan would have successfully moved it.

Answer:

2 3 1 Your Welcome

Explanation:

wassup anybody tryna play 2k

Answers

Answer:

u dont want the smoke my boy u dont

Explanation:

Answer:

I only play 24k B)))))))))

Write a program that asks the user to enter an international dialing code and then looks it up in the country_codes array (see Sec 16.3 in C textbook). If it finds the code, the program should display the name of the corresponding country; if not, the program should print an error message. For demonstration purposes have at least 20 countries in your list.

Answers

Answer:

Explanation:

The following code is written in Python, it prompts the user for a country code, look it up and if found prints out the corresponding country name. If not it prints out an error message stating "Code not found"

country_codes = {"Argentina": 54, "Bangladesh": 880,

        "Brazil": 55, "Burma (Myanmar)": 95,

        "China": 86, "Colombia": 57,

        "Congo: Dem. Rep. of": 243, "Egypt": 20,

        "Ethiopia": 251, "France": 33,

        "Germany": 49, "India": 91,

        "Indonesia": 62, "Iran": 98,

        "Italy": 39, "Japan": 81,

        "Mexico": 52, "Nigeria": 234,

        "Pakistan": 92, "Philippines": 63,

        "Poland": 48, "Russia": 7,

        "South Africa": 27, "South Korea": 82,

        "Spain": 34, "Sudan": 249,

        "Thailand": 66, "Turkey": 90,

        "Ukraine": 380, "United Kingdom": 44,

        "United States": 1, "Vietnam": 84}

user_code = int(input("Enter Country code: "))

keys = list(country_codes.keys())

vals = list(country_codes.values())

if user_code in vals:

   print(keys[vals.index(user_code)])

else:

   print("Code not found")

6
Suppose the following formula is inputted into Excel:
=MROUND(1/4,100)
The output in the cell will be:
0
0.25
0.2500
1

Answers

Answer:

the output in the cell will be 0,2500

This unit is used to print the picture on a paper

Answers

Answer:a printer

Explanation:

It prints things


Open Office software is an example of what software

Answers

Answer:

Application software

Explanation:

OpenOffice.org (OOo), commonly known as OpenOffice, is a discontinued open-source office suite. ... OpenOffice included a word processor (Writer), a spreadsheet (Calc), a presentation application (Impress), a drawing application (Draw), a formula editor (Math), and a database management application (Base).

A user has a computer with a single SSD, and the entire drive contains one partition. The user wants to install a second OS on the computer without having to reinstall the current OS. The user wants to be able to select which OS to use when booting the computer. Which Disk Management tools should the user utilize to accomplish this task?

Answers

Answer:

The correct approach is "Shrink partition". A further explanation is given below.

Explanation:

Shrinking partition shrinks or decreases this same disc size as well as unallotted disc space, unallotted space could be utilized to mount a secondary Operating system to operate as a double operating system.Whilst also diminishing everything into neighboring volatile memory on another disc, this same space required for area as well as drives could also be reduced.

Thus the above is the correct answer.

Which examples demonstrate common qualifications for Marketing Information Management and Research careers? Check all that apply.

David has the physical strength to lift products on high shelves.
Alessandra analyzes and interprets information she gathered from surveys.
Eve is good at presenting and explaining information to others.
Franklin is a strong leader who is able to motivate others.
Gene is very organized and tracks information accurately and carefully.
Claire is confident and persuasive, which makes her good at selling products.

Answers

Answer:

2,3,5

Explanation:

Answer: the answer is 2 3 and 5

Explanation:

how do i remove my search history?

Answers

Step 1: Go to PC settings from the Start Menu or Desktop. Step 2: In PC settings, choose Search in the menu, and click Delete history.

how do i work this out? does anyone do programming?

Answers

Answer : No sorry ..

Basic python coding, What is the output of this program? Assume the user enters 2, 5, and 10.
numA = 0
for count in range(3):
answer = input ("Enter a number: ")
fltAnswer = float(answer)
numA = numA + fltAnswer
print (numA)
Thanks in advance!
:L

Answers

Answer:

17.0

Explanation:

I ran it for you. You could also try that (go to replit).

Which step should you follow to copy a worksheet after clicking Format in the Cells group?
O Under Arrange Sheets, click Cut or Copy Sheet.
O Under Organize Sheets, click Move or Copy Sheet.
O Under Arrange Sheets, click Select and Move Sheet.
O Under Organize Sheets, click Arrange and Copy Sheet.

Answers

Answer:

Under Organize Sheets, click Move or Copy Sheet should you follow to copy a worksheet after clicking Format in the Cells group.

Explanation:

Which factor distinguishes IOT devices from standard computing devices such as laptops and smart phones?

Answers

Answer:

PLS help me I'm tried

Haa plsssssss

While all pages use HTML code, not all pages are written in

Answers

Is this a question?

*Answer: not much information to answer with*

Answer:

Code Form

Explanation:

Explain what an IM is,

Answers

Answer: Stands for "Instant Message." Instant messaging, or "IMing," as frequent users call it, has become a popular way to communicate over the Internet

Explanation:

Programming a computer to win at chess
has been discussed since the
A. 1940's
B. 1950's
C. 1960's

Answers

I believe it was the 1960s but u should seach it up to double check

Answer:

B.

Explanation:

find four
reasons
Why must shutdown the system following the normal sequence

Answers

If you have a problem with a server and you want to bring the system down so that you could then reseat the card before restarting it, you can use this command, it will shut down the system in an orderly manner.

"init 0" command completely shuts down the system in an order manner

init is the first process to start when a computer boots up and keep running until the system ends. It is the root of all other processes.

İnit command is used in different runlevels, which extend from 0 through 6. "init 0" is used to halt the system, basically init 0

shuts down the system before safely turning power off.

stops system services and daemons.

terminates all running processes.

Unmounts all file systems.

Learn more about  server on:

https://brainly.com/question/29888289

#SPJ1

What are
the rules for giving
variable name ?​

Answers

Answer:

Rules for naming variables:

- Variable names in Visual C++ can range from 1 to 255 characters. To make variable names portable to other environments stay within a 1 to 31 character range.

- All variable names must begin with a letter of the alphabet or an underscore ( _ ).  For beginning programmers, it may be easier to begin all variable names with a letter of the alphabet.

- After the first initial letter, variable names can also contain letters and numbers.  No spaces or special characters, however, are allowed.

- Uppercase characters are distinct from lowercase characters.  Using all uppercase letters is used primarily to identify constant variables.  

- You cannot use a C++ keyword (reserved word) as a variable name.

A new office need 16 computer Tables.If a computer tables costs 2,671.How much is needed to purchase 16 computer tables.​

Answers

Answer:

The total amount needed to purchase the 16 computer tables is 42,736

Explanation:

Given;

Total number of computer tables needed in the new office, n = 16

cost of one computer table, c = 2,671

The total amount needed to purchase the 16 computer tables is calculated as follows;

Total cost of 16 computer tables = cost of one computer table x total number of tables needed

Total cost of 16 computer tables = 2,671 x 16

Total cost of 16 computer tables = 42,736

Therefore, the total amount needed to purchase the 16 computer tables is 42,736

State the causes of the increase in carbondioxide
concerntration​

Answers

Answer:

The right response is "fossil fuels".

Explanation:

Fossil fuels such as coal as well as oil conduct electricity that has already been photosynthesized by vegetation or plant species from the ecosystem for thousands of generations.Within only several hundred years we've returned fuel to that same ecosystem or environment, the sources of CO₂ rise are fossil fuels.

However, the above solution is the right one.

What is the name for the part of a camera which can block light when it's closed, and let light in when it's open?


Pixel


Lens


Focus


Shutter

Answers

dnt listen to the link stuff

how does such editing affect courtrooms where visual evidence is often presented?​

Answers

Can hurt others..!! yw

When someone refers to "space" on a computer or device, they are usually referring to _____, which allows the user to save a file for future use, even after the computer has been turned off. secondary storage the central processing unit (CPU) software primary memory

Answers

Answer:

it could either be the R.A.M or the hard drive

Explanation:

Answer:

Secondary Storage

Explanation:

Secondary storage is permanent, therefore, it fits the context of what the question is asking for.

Other Questions
Directions: Read the prompt question. You will be writing a rough draft essay answering the prompt. Your rough draft should be 5 paragraphs long. Below is a template/guide to help you write your essay. Your essay should be based on the documents from previous lessons and on your knowledge of Americas westward expansion. Prompt: Was the westward expansion of the United States a righteous fulfillment of a manifest destiny, or an example of unjustifiable conquest?PLZ HURRY find the slope. -2,1 and 4,4 please help me asap!! A scientist used a microscope to count the number of bacterial cells in a petri dish every hour. Which function most accurately represents this data, where n is the number of bacteria and 1 is the time elapsed, in hours?a. n=2tb. n=2^tc n=t^2d. n=t Escribe Cierto o Falso despus de cada oracin, tus respuestasdeben ser en base a la informacin del video.1. La preservacin de reservas ayuda a conservar el equilibrioecolgico.2. En Costa Rica hay ms de 25 parques nacionales.3. La reserva de San Ramn es tambin un centro educativo.4. La reserva de San Ramn tiene dos especies de insectos.5. Las Islas Galpagos no tienen tortugas.6. Podemos ayudar a preservar el medio ambiente reciclando.11 POINTSPLS I NEED IT NOW Value at Risk (VaR) can most appropriately be defined as:A. An estimate of how much money a portfolio could lose,B. An estimate, with a given degree of confidence X%, of how much a portfolio canlose over a given time horizon, expressed as the next N business days,C. A specification of the loss distribution of a portfolio,D. A measure of the risk associated with a portfolio,E. All of the above. A bottling company uses a filling machine to fill plastic bottles with cola. The bottles are supposed to contain 300 milliliters (ml). In fact, the contents vary according to a Normal distribution with mean =298ml and standard deviation =3ml. What is the probability that the mean contents of six randomly selected bottles are less than 295 ml? Question 9 of 10 What is one strategy that can help a person avoid spending too much money on interest when borrowing money? O A. Choosing a credit card with a low minimum monthly payment O B. Choosing a loan with a simple rather than compound interest rate O C. Choosing a credit card with a high minimum monthly payment O D. Choosing a loan with a compound rather than simple interest rate All the dimensions of a pentagon were multiplied by the same factor, and the area of the figure changed by a factor of25. By what factor were the dimensions of the pentagon multiplied?a) 12.5b) 625c) 5d) 50 Genital herpes can be cured with the appropriate drugs what 1 + 2 i have know idea of what it is On 20/07/2019, "ABC" Company sold goods to customer "X" with a total value of $120.000 The customer pad40% cash, and signed a 80 days, 10% note for the reaming balance.Instructions:Based on the above given information answer the following questions, assuming the company has a fiscal yearending 31/8:1)What is the amount of sales revenue that "ABC" Company must record on August 10 20192) on 31/8/2020 ABC company must a notereceivable with an amount on statement offinancial position?Help me with these two questions please Use the Linear Approximation to estimate =(3.5)(3) (x)=41+x2 (Use decimal notation. Give your answer to five decimal places.)f help (decimals)Calculate the actual change.(Use decimal notation. Give your answer to five decimal places.)f = help (decimals)Compute the error and the percentage error in the Linear Approximation.(Use decimal notation. Give your answer to five decimal places.)Error = help (decimals)Percentage error = % help (decimals) Please help I am stuck A racing car driver is investigating whether the type of fuel he uses in his car affects his overall speed. He uses three different types of fuel. The driver runs an experiment where he fills his car with each type of fuel 20 times, and each time records the time taken to drive one lap of a track. A one-way ANOVA test is conducted to test the null hypothesis that type of fuel is not a significant factor in determining speed. The result of the test is that the null hypothesis is not rejected. The conclusion that follows from this test is that: __________a. it has been proven that the type of fuel is a significant factor in determining speed b. it cannot be ruled out that the type of fuel is an insignificant factor in determining speed c. it has been proven that the type of fuel is an insignificant factor in determining speed d. it has been proven that the type of fuel can sometimes be a significant factor in determining speed I need help on this plzzz Math in Finance II21. The intervals in a frequency distribution should always have the following characteristics? The intervals should always:A. be truncatedB. be open-endedC. be nonoverlapping22. Which of the following groups best illustrates a sample?A. The set of all estimates for Exxon Mobil's FY2015 EPSB. The FTSE Euro top 100 as a representation of the European stock marketC. UK shares traded on 13 August 2015 also closed above 120/share on the London Stock Exchange23. Published ratings on stocks ranging from 1{strong sell) to 5 {strong buy) are examples of which measurement scale?A. OrdinalB. intervalC. Nominal24. In descriptive statistics, an example of a parameter is the:A. median of a populationB. mean of a sample of observationsC. standard deviation of a sample of observations25. A mutual fund has the return frequency distribution shown in the following table.Which of the following statements is correct?A. The relative frequency of the interval"-1.0 to +2.0" is 20%B. The relative frequency of the interval"+2.0 to +5.0" is 23%C. The cumulative relative frequency of the interval"+5.0 to +8.0" is 91.7%26. Given the conditional probabilities in the table below and the unconditional probabilities P(Y = 1) =0.3 and P (Y = 2) = 0.7, what is the expected value of X?A. 5.0B. 5.3C. 5.727. Given the joint probability table, the expected return of Stock A is closest to:A. 0.08B. 0.12C. 0.1528. The probability that the DJIA will increase tomorrow is 2/3. The probability of an increase in the DJIA stated as odds is:A. two-to-oneB. one-to-threeC. two-to-three29. At a charity ball, 800 names are put into a hat. Four of the names are identical. On a random draw, what is the probability that one of these four names will be drawn?A. 0.004B. 0.005C. 0.01030. What is the conditional probability of having good stock performance in a poor economic environment?A. 0.02B. 0.10C. 0.30 can someone please play the icivics do I have a right full edition game for me and send me 2 screenshots of the scores so I an send them in to my teachers please! cause its really hard and I'm struggling with it and need help. I'll mark you brainliest if you can help me please! the picture i attached is what it looks like I would really appreciate it if you could help me Jim and three friends shared 2 poster boards for an art project. What part of the construction paper will each friend get? * Your customer has found base plates that are defective, they exceed the maximum width dimension of 4.005. As a result the mating component will not fit on these base plates properly. You manufacture these base plates on four identical CNC milling machines with approximately 25% of the production coming from each machine.Simplified drawing of base plate is shown below.Assignment:Your manager has requested you sample 50 pieces from the manufacturing floor that were manufactured from each machine, analyze the data and come up with recommendations to solve the problem. (The data for the 50 piece sample is attached at the end of the assignment.)Introduction: describing the process and statement of the general problem(s)Analysis of the data: Graphical analysis is requiredEach table and graph must be briefly explained at the point of the table or graph to indicate how it relates to the study at hand.A brief summary of the findings relating back to specific analytical toolsCause and effect diagram(s): identifying PERTINENT possible solutions to the problem(s)