key is used to enter commands or to move the cursor to the begin
of the next line
a) Delete key
b) Shift key
c) Ctrl key
d) None of these​

Answers

Answer 1
I believe the answer would be D

Related Questions

Which slide elements must Claire use to enhance her presentation?

Answers

she needs to use animations to enhance her presentation

Overview Write a program that reads an integer from the user and then prints the Hailstone sequence starting from that number "What is the hailstone sequence?" you might ask. Well, there are two rules: • If n is even, then divide it by 2 • If n is odd, then multiply it by 3 and add 1 Continue this sequence until you hit the number 1.​

Answers

n=int(input("Enter number: "))

while n != 1:

   print(n)

   if n%2==0:

       n//= 2

   else:

       n = (n*3)+1

print(n)

I wrote my code in python 3.8. If you want to print the 1, keep the last line of code otherwise delete it.

When inserting a comment in a cell, the command on the Review tab is New Comment, but if you right-click in the cell,
what command would you choose from the shortcut menu?

A.)New Comment

B)Insert Comment

C)Review Comment

D)Add Comment

Answers

Answer:

B) Insert Comment

Explanation:

Generally, workbooks are known as Microsoft Excel files. Excel workbook can be defined as a collection of one or more charts and worksheets (spreadsheets) used for data entry and storage in an excel file. In order to create a project on Excel you will have to use a workbook.

A spreadsheet can be defined as a file or document which comprises of cells in a tabulated format (rows and columns) typically used for formatting, arranging, analyzing, storing, calculating and sorting data on computer software applications such as Microsoft Excel.

When inserting a comment in a cell, the command on the Review tab is New Comment, but if you right-click in the cell, the command you would choose from the shortcut menu is Insert Comment. The shortcut key for Insert Comment is "Shift+F2."

what is the mest gun in pixel gun 3d imma give you brainliest

Answers

Answer:

The Mest Gun or the gun on your avatar

Explanation:

Because typo!!

What is that I would like to know?

The goal of a system is to

a) be natural or human-made

b) use energy

c) perform a task

d) be social or physical

Answers

Answer:

d it is d I know cause I answered it on a test I had

hope it helps

Select the correct answer.
Which of these factors can be created as a physical model?
OA
a next-generation car
OB.
software code
OC. website address
OD.
conversion of energy
O E knowledge of a product

Answers

A. a next generation car

Your program for a game allows users to choose a car to drive. You have 50 models.


You have designed each model to have different qualities, such as maximum speed, ability to turn tight curves, fuel usage rate, etc.


Which collection is best to store the characteristics of each model?



list


tuple


deque


dataset


Will Give Brainliest to Best or correct answer

Answers

Answer:

dataset

Explanation:

For the information being described the best collection to store this data would be a dataset. This is mainly due to the fact that each individual car has a wide range of separate variables and values that are attached to each car model. Such variables/values include maximum speed, ability to turn tight curves, fuel usage rate, etc. The dataset allows each individual model to be registered alongside all of their individual characteristics/qualities. Therefore, connecting each model with their own data.

Answer:

Deque is the right option

Explanation:

deques are more useful for large amounts of data and will locate specific things faster (E2020)

Case Project 2-1: The Differences Between IPv4 and IPv6 You are a network engineer for an IT consulting firm named F1IT. One of your clients, Beautivision, a chain of plastic surgery clinics with 80 locations nationwide, has asked you to prepare a proposal for implementing IPv6 in Beautivision’s corporate headquarters, its WAN network, and its clinic locations. In preparation, you need to create a one- to two-page memo that describes the main differences between IPv4 and IPv6. Write the memo to Mary Jane Newman, communications manager for Beautivision. When preparing the memo, keep in mind that Ms. Newman has some knowledge of information technology but is not an expert.

Answers

Answer:

Following are the difference to this question:

Explanation:

IPv4:

The [tex]IPv_4[/tex] is uses the packet changed method, that is a Link Layer networks(like Ethernet).  It has 4.3 billion addresses capacity. It uses the 32-bit logical device address, that written in decimal language. It is divided by 4 bytes E.g. 192.168.1.1  

The host part and network part are 2 parts. For a network, the host part may vary, while for the entire subnet, the network part remains equal. The scheme of 232 addresses is available on application depends on security.

IPv6:

The IPv6 is used in the internet protocoland it is higher than IPv4. It can provide endless number Opf addresses, and use to solves the problem of IPv4 exhaustion and satisfies  the demand for rising networking.

IPv4 Substitutor Built to meet more IP address requirements. In the Logical address of 128-bit Written hexadecimally and with colons divided, and the Space of 128 addresses are required. IPsec is an integrated security feature.

14^6×15^5÷35^6×6^5




can anyone help me to solve this question​

Answers

Answer:

(7^6×2^6×5^5×3^5)÷(7^6×5^6×3^5×2^5)

7^(6-6)×2^(6-5)×5^(5-6)×3^(5-5)

7^0×2¹×5-¹×3^0

1×2×5^-1×1

2/5

Last two question, Let's go

Answers

For question 9, it's science

for question 10 it's the "world works"

7.3 Code Practice edhesive

Write a function named print_sum that accepts three numbers as parameters and prints the sum. First, write the print_sum function. Then, prompt the user for three inputs, and call your print_sum function on those inputs.

Sample Run:
Enter the 1st number: 11
Enter the 2nd number: 9
Enter the 3rd number: 8
The sum: 28

Answers

def print_sum(a,b,c):

   print(a+b+c)

one = int(input("Enter the 1st number: "))

two = int(input("Enter the 2nd number: "))

three = int(input("Enter the 3rd number: "))

print_sum(one,two,three)

I wrote my code in python 3.8. I hope this helps.

Following are the python program to the given question:

Program Explanation:

Defining a method "print_sum" that takes three parameters "n, x, g".Inside the method, a "print" method is used that adds the value of the parameters and prints its value with the message.In the next step, the "n, x, g" variable is defined that inputs and store its value.At the last, the "print_sum" method calls that accept values.

Program:

def print_sum(n,x,g):

   print("The Sum : ",n+x+g)

n=int(input("Enter the 1st number: "))

x=int(input("Enter the 2nd number: "))

g=int(input("Enter the 3rd number: "))

print_sum(n,x,g)

Output:

Please find the output file in the attachment.

Learn more:

brainly.com/question/16690412

Help me with this please

Answers

Answer:

q1 chees

q2 web and digital continant

Explanation:

because haaa haaa haa dhum

4.8 Code Practice: Question 2 I need help on this one python

Answers

Answer:

for y in range(88, 43, -4):

  print(y, end=" "

Explanation:

yw

The SDLC is cyclical in nature, meaning that any of the five stages can be
revisited at any time during a project.


O True
O False

Answers

Answer:

True.

Explanation:

Software development life cycle (SDLC) can be defined as a strategic process or methodology that defines the key steps or stages for creating and implementing high quality software applications.

Some of the models used in the software development life cycle (SDLC) are; waterfall model, incremental model, spiral model, agile model, big bang model, and V-shaped model.

The five (5) standard stages of development in software development are;

I. Analysis.

II. Design.

III. Implementation (coding).

IV. Testing.

V. Maintenance.

The SDLC is cyclical in nature, meaning that any of the five stages can be revisited at any time during a project. This is possible because the stages of development are not performed only once but recurring at regular intervals.

10. There is repeated code in these onevent blocks. Choose the correct code for the updateScreen() function which would be called in each of the onEvent blocks.

1

var counter

0;

2

3

onEvent("upButton", "click",

function

4

counter

counter + 1;

5

setText ("counter_label", counter);

set Property ("counter_label", "text-color",

6

"red");

7

if

counter

8

set Property ("counter label",

"font-size", 24);

9

10

11

onEvent ("downButton",

"click",

function

12

counter

counter

Answers

Answer:

front zise24

Explanation:

on event down botton

The correct code for the updateScreen() function which would be called in each of the onEvent blocks is setText ("counter_label" counter) = = 0.

What is a function?

A function refers to a set of statements that makes up an executable code and it can be used in a software program to perform a specific task on a computer.

In this scenario, the correct code for the updateScreen() function is written as follows:

function updateScreen()   { ⇒

       setText ("counter_label" counter)  {

       if (counter == 0);

          setProperty ("counter_label", "font-size", "24") ;

       }                         +

}

In conclusion, the executable code for the updateScreen() function which would be called in each of the onEvent blocks is "setText ("counter_label" counter) = = 0."

Read more on function here: brainly.com/question/20264183

#SPJ2

Your ____ should always be bigger than your gutters

Answers

Answer:

Roof.

Explanation:

I don't know, lol.

Hubris

i think
Maybe prob wrong

What necessarily happens when a photographer chooses to give either the aperture or the shutter speed priority?


The other of the two settings stays as previously selected.

The other of the two settings is overridden.

The other of the two settings is automatically selected.

The other of the two settings is ignored.

Answers

Answer:

The other of the two settings is automatically selected.

Explanation:

Answer: The other of the two settings is automatically selected.

Explanation:

TRUST

What is Digital Etiquette? Explain in your own words

Answers

Answer:

rules about the best way to communicate

Explanation

rules about being proper and polite

hanna specifies the constants 7, 3, 3, and 5 as the arguments of a function. the function returns the result 18. which function does hanna use?
=____ (7,3,3,5)
[using spreadsheets for data analysis, plato]​

Answers

Answer:

The sum function

Explanation:

Given

Arguments:  (7,3,3,5)

Result = 18

Required

Determine the function used

When the arguments are added together, we have:

[tex]Result=7 +3 + 3 + 5[/tex]

[tex]Result = 18[/tex]

Ths implies that the function used is the SUM function and is used as:

=SUM(7,3,3,5)

Answer:

The Answer is SUM

Explanation:

It says spell all words correctly so no #(Numbers)#

Help me please, I'm begging you

Answers

Answer: 7 math 8 many

Explanation: it makes sense

Camille wants to buy a game online for her little sister’s birthday. She would like it to be a surprise but is worried that her sister will find a record of the purchase on the family computer. Camille can keep this a secret by:

A.
erasing her digital footprint.

B.
using only certain gaming sites.

C.
clearing her browser history.

D.
stopping advertisers from using her information.

Answers

Answer:

Clearing her browser history.

Explanation:

I’m pretty sure it’s c

1. Haruto was a programmer working in the early 2000s. Which kind of program or language was

he MOST likely working with?

O compilers

O interpreters

O first-generation languages

O fourth-generation languages

Answers

I think it’s interpreters

Answer:

compilers

Explanation:

a program that converts instructions into a machine-code or lower-level form so that they can be read and executed by a computer.

The contrast ratio of green-45 text on a yellow-15 background is
to 1.
03
O 30
O 45
06

Answers

Answer:

30

Explanation:

in ratio

not connected

Why is it important to organize your computer files?

“With a explanation”

Answers

Answer:

Explanation:

Keep your computer files organized to make them easy to find and access. Your personal computer can be a wonderful tool. It can provide you access to the Internet, give you a place to store photos and documents, and allow you to easily do many tasks that might have once been difficult.

Answer:

It's important to organize your computer files for many reasons. It can be neat, and when you want to look for something, you can easily find it. You won't have to dig through to find something you need and you might be able to impress people with your neatness

what is two examples of software and hardware?​

Answers

Answer:

Hardware Software

If hardware is damaged, it is replaced with new one. If software is damaged, its backup copy can be reinstalled.

Ex: Keyboard, Mouse, Monitor, Printer, CPU, Hard disk, RAM, ROM etc. Ex: Ms Word, Excel, Power Point, Photoshop, MySQL etc.

Explanation:

Answer:

hardware= key board ,mouse

software =excel,power point.

2 features of mark i​

Answers

Answer:

Mark I was enourmous in size, measuring 8 feet high, 51 feet long and three feet deep. It weighed 5 tons, used 530 miles of wire and 730,000 separate parts. The operation of these parts was powered and synchronized by a long horizontal rotating shaft. A four horsepower engine drives the mechanical parts.

what is a password attack?

Answers

Answer:

A password attack is exactly what it sounds like: a third party trying to gain access to your systems by cracking a user's password.

Answer:

A hacker trying to hack into your accounts/systems by cracking your password.

is this very epik or not?

Answers

Answer:

e p i k ༼ つ ◕_◕ ༽つ

Answer:

much epic

Explanation:

why are my images blocked on brainly

i just see gray and on every avatar and image

Answers

Answer:

they are not its just that people haven't changed their profile picture. i haven't yet lol

Explanation:

Answer:

Mines the same way.

Explanation:

Rachel has set up a computer network. In this network, due to a device, the computers partake in the message transfer process. Which device is
this?
А. NIC
В. hub
C. modem
D. switch
E. bridge

Answers

it’s a modem which is like a router
Other Questions
5. According to a biomass pyramid, 50 mice will need 200 square meters of grass, if one mouse needs to eat four square meters ofgrass to stay healthy.O falseO trueX6. According to a biomass pyramid, if one snake needs to eat ten mice to stay healthy, ten snakes need 90 mice to eat.falseO trueHURRRRYYYp Someone offers to buy your old Ford F-150 truck for 4 equal annual payments, beginning 2 years from today. If you think that the present value of your Ford Truck is only $9,000 and you assume the interest rate is 10%, which one of the below would be the minimum annual payment that you d be willing to accept? $2,839.24 $3,435.48 $3,123.16 $2,250 In humans, an X-linked disorder called coloboma iridia (a split in the iris of the eye) is a recessive trait. A normal couple has a daughter with coloboma iridia. The husband sues the wife for divorce on the grounds of infidelity (cheating). Would you rule in his favor answer question for points and brainless (right answer not something dum) Read the second stanza:Hold fast to dreamsFor when dreams goLife is a barren fieldFrozen with snowTrue or False: In this stanza, the word "snow" has a positive connotation.O TrueFalse A band must pay a $2500 entrance fee, It will split the cost between its 25 members. How much will each member pay?Please help quick Write your own poem in reply to Gormans poem The Miracle of Morning and/or The Hill We Climb. Choose a line, a vibe or a moment from the poem to inspire your response. What are you waking up to today? What is the miracle in your morning (or mourning)? What hill do you or we climb? Which of the following tasks should be performed on a guest's right side?O Clearing bread from the tableO Serving from a platterO Serving beveragesRemoving anything served from the left I REALLY NEED HELP PLEASE ANSWER!!!!! From 1924 to 1929 the Weimar Republic was much stronger than it had been just after the war. Led by Stresemann in the Reichstag, the different parties managed to work together. The extreme parties such as the Nazis gained fewer seats in the elections. The German people were better off and more content. Life had significantly improved for the average German, which included freedom of speech and expression. The Weimar Republic looked safe.From Weimar Germany, by E Wimlott in 1997.Do you agree or disagree with Wimlotts view of Weimar Germany?explain fully, using the sentence below.P - I agree/disagree with Wimlotts viewE - Wimlott states that and gives a positive/negative view about the strengths of the Weimar Republic.E - I agree/disagree with this because In his arguments in Brown v. Board of Education, the lawyer for Oliver and Linda Brown claimed that separate but equalpublic schools were jessica I have sent u letter in email did u read it? In paragraph 7 of his speech, Kennedy asks,"Why does Rice play Texas?" Kennedy includesthis reference to a sports rivalry in order toaccomplish which of the following?A. to show how exploring space is like a gameB. to appeal directly to his immediate audiencecilec. to imply that the United States is the winningteamhein?D. to suggest the effort required to explore space What are The Challenges to Sovereignty? Someone give me a creative title for my Life of pi essay it can't just be "life of Pi essay" A marketing agency selected a random sample of television viewers to test the claim that the proportion of viewers who watch a particular show is less than 0.20 at a level of significance of 0.05. The test yielded a p-value of 0.47. Assuming all conditions for inference were met, which of the following is the correct conclusion?a. At the level of significance of 0.05, the null hypothesis is not rejected. There is not convincing evidence to suggest the true proportion of television viewers who watch the show is less than 0.20b. At the level of significance of 0.05, the null hypothesis is not rejected. There is convincing evidence to suggest the true proportion of television viewers who watch the show is less than 0.20.c. At the level of significance of 0.05, the null hypothesis is rejected. There is convincing evidence to suggest that the true proportion of television viewers who watch the show is less than 0.20.d. At the level of significance of 0.05, the null hypothesis is rejected. There is not convincing evidence to suggest that the true proportion of television viewers who watch the show is greater than 0.20.e. At the level of significance of 0.05, the null hypothesis is rejected. There is convincing evidence to conclude that the null hypothesis is true. HELP THIS IS DUE TODAY WILL GIVE BRAINLIEST _Provide a one-paragraph summary (at least 5 sentences) of Ohio's geologic history. Help plz....QuestionRead the sentences below and insert question marks, full stops and capital letters as needed Do you think that that's acceptable I asked him if I could use his car once I pass my test he's going to think about it I think a question mark should go here does it seem odd to you, though Jay asked me on Tuesday what the issue was Match the symbol with its corresponding category. HELP HELP HELP HELP HELP PLEASE PLEASE!!!!!!