spreadsheets: what is a row

Answers

Answer 1

Answer:

Rows run horizontally across the worksheet and ranges from 1 to 1048576. A row is identified by the number that is on left side of the row, from where the row originates. Columns. Columns run vertically downward across the worksheet and ranges from A to XFD - 1 to 16384.

Explanation:


Related Questions

PLEASE HELP WITH MY COMPUTER
this thing is popped up and it's annoying. I'm on a HP laptop how do i get rid of it?​

Answers

Answer:

Escape or turn it off then back on??

Explanation:

I'm not very sure what is going on but idfk

Suppose you have a certain amount of money in a savings account that earns compound monthly interest, and you want to calculate the amount that you will have after a specific number of months. The formula is as follows:

f = p * (1 + i)^t

• f is the future value of the account after the specified time period.
• p is the present value of the account.
• i is the monthly interest rate.
• t is the number of months.

Write a program that takes the account's present value, monthly interest rate, and the number of months that the money will be left in the account as three inputs from the user. The program should pass these values to a function thatreturns the future value of the account, after the specified number of months. The program should print the account's future value.

Sample Run

Enter current bank balance:35.7↵
Enter interest rate:0↵
Enter the amount of time that passes:100↵ 35.7↵

Btw, this does not work, but is presumably close to the answer.
p=float(input("Enter current bank balance:"))
i=float(input("Enter interest rate:"))
t=float(input("Enter the amount of time that passes:"))

print(p *(1+i)^t)

Answers

Answer:

The update code is:

p=float(input("Enter current bank balance:"))

i=float(input("Enter interest rate:"))

t=float(input("Enter the amount of time that passes:"))

print(p*(1+i)**t)

Explanation:

Required

Program to compute future value

Up to the third line, your program is correct.

The only correction that needs to be made is as follows:

On the fourth line, change p*(1+i)^t to p*(1+i)**t because Python use ** as raise to power and not ^

Why do you think there is a difference between good, clean designs compared to the bad, cluttered designs below?.

Answers

Answer:

Good, clean designs depicts the logic link of the company and easy to remember as compared to the bad, cluttered designs

Explanation:

The major difference between the good, clean designs and the bad, cluttered designs is that the good, clean designs depicts the logic link of the company and it is easy to remember such symbols but in case of bad, cluttered designs it is not that easy to find the logic link and also it is difficult to remember the logo.

8. A boy leaves his house at 9.30 a.m. for his
school. The school is 2 km away and classes start at
10.00 a.m. If he walks at a speed of 3 km/h for the
first kilometre, at what speed should he walk the
second kilometre to reach just in time?​

Answers

Answer:

i would say 4km

Explanation:

Description
How many minutes of video would fill an iPhone with 8 GB of
storage, where 3 GB is already used.
One minute of video takes 150 MB of storage.
One GB (gigabytes) is about 1000 MB (megabytes).
Hint: Do all of your calculations in megabytes (MB).

Answers

33.33 minutes of video

3 GB already used which means you have 5 GB left, 5GB is the same as 5000 MB

So 5000 MB divided by 150 MB is 33.33 minutes of video that can be stored on the iPhone

true or false: erosion takes very long to happen.​

Answers

the answer is true. erosion takes place over time

Answer:

True

Explanation:

By definition, erosion is the gradual destruction or diminution of something.

1) Erosion can take many forms

2) The 3 main types of erosion are water, wind, and ice

3) The process of erosion can take up to thousands of years

4) Erosion affects humans because it creates dust that pollutes the air and on average carries around 20 different diseases including anthrax and tuberculosis

Claudette is shocked to discover that her company's data has been stolen, and their Web site shut down, by a malicious ex-employee. She had thought their security was airtight! Two recent changes they made were migrating their database to a private, on-premises cloud and installing IoT devices that communicate with the database continually. What most likely occurred

Answers

Answer:

The answer is "Ex-employee hack IoT firms from Claudette to access them".

Explanation:

Computer system hacking is only a breach between both the access as well as the stealing or misuse of critical information between both computer software from the target system. In this sense, a malicious attacker uses a computer device or even a network to access or illicitly exploit information.

Write the output of the following program:

CLS

a=20

FOR x = 1 to a

IF x MOD 2 < > 0 THEN

S S+x

END IF

NEXT X

PRINT S

END​

Answers

Answer:

Expression A

Explanation:

In this Pseudocode, the output would be 100. This is because the code is looping from 1 to 20 and adding together all of the odd numbers between 1 and 20. Since it is checking to make sure that the remainder of each number is not equal to 0 which would indicate an odd number, and if it is odd then it adds it to the variable S. Therefore, the odd numbers between 1 and 20 are the following...

1 + 3 + 5 + 7 + 9 + 11 + 13 + 15 + 17 + 19 = 100

What are your thoughts about this re-designed Logo? Is it good? Or is poorly designed? Explain your answer below.

Answers

Answer:

It is good but the back is not good enough.

Need answer ASAP. No links

Select the correct answer

Clara writes online articles based on world religions. Her articles have references to dates. Which HTML element will help her display dates (A.D. or B.C.) correctly on a web page?

Posted the answers on the picture since they don’t show up when I write them on here

Answers

Answer:

A <b>

Normally AD and BC are written in bold letters.

for example : The terms anno Domini (AD) and before Christ (BC).

Within available option the best option to choose is <b> hope it helped

Answer:

its d <small>

Explanation: A:D and B:C are displayed smaller then normal letters

please answer this question​

Answers

Answer:surfing, printer

Explanation:

A system analyst generally needs to have a number of skills. For example, technical and analytical skills are required for this role. Name three other necessary skills for a system analyst

Answers

Answer: See explanation

Explanation:

Systems analysts are the people who analyse how a particular software, or IT system will be able to fit and meet the needs of their company or client. They are charged with the responsibility of writing requirements for new systems.

Some if the skills required for a system analyst include:

• Flexibility

• Strong analytical skills

• Adaptability

• Initiative

• Interpersonal skills.

• Attention to detail.

• Teamwork skills.

• Written and verbal communication skills.

Write a program that repeatedly asks the user to type in an integer until they input a multiple of 7

Answers

Answer:

 See the code in the explanation below

Explanation:

For this excersie we are going to be using C++, if you want me to produce the code in another language do let me know

// Online C++ compiler to run C++ program online

#include <iostream>

using namespace std;

int main()

{

int Number;

   do

{

 cout <<"Enter a  multiple of seven: ";

 cin >> Number;

 

 if(Number%7 == 0 ){

     cout<<"correct!!! the number is a multiple of seven";

 

 }

} while(Number%7 != 0);

}

   

   

 

   

   

   

   

       

What is a variable in programming?
1) A symbol or set of characters in a programming statement whose value can
be changed
2) A symbol in a mathematical equation
3) The characters that make up a string
4) The output when code is printed

Answers

A symbol or set of characters in a programming statement whose value can be changed

What are the key components to planning a presentation? Check all that apply.
audience
conclusion
methods
purpose
thesis
title
topic

Answers

Answer:

I. audience

II. methods

III. purpose

IV. topic

Explanation:

Presentation can be defined as an act of talking or speaking formally to an audience in order to explain an idea, piece of work, project, and product with the aid of multimedia resources or samples.

Basically, any speaker who wish to create an effective presentation should endeavor to interact frequently with the audience by holding a conversation.

This ultimately implies that, to create an effective presentation, speakers are saddled with the responsibility of interacting more often with the audience by taking questions, making a joke, getting them to repeat informations loud at intervals etc.

Additionally, speakers are advised to be passionate and show enthusiasm during their presentation because it would enhance their ability to speak confidently and as such leading to an engaging presentation.

The key components to planning a presentation include the following;

I. Audience: these are the group of listeners to whom the speaker is making a presentation to.

II. Methods: the speaker should choose the most effective and efficient method to use in getting the message across to the audience (listeners).

III. Purpose: this is the main idea or reason for which the presentation is being created or done by the speaker.

IV. Topic: this is simply the title of the presentation and it describes the subject matter.

Web design incorporates several different skills and disciplines for the production and maintenance of websites. Do you agree or disagree? State your reasons.

Answers

Answer:

Yes, I do agree with the given statement. A further explanation is provided below.

Explanation:

Web design but mostly application development were most widely included throughout an interchangeable basis, though web design seems to be officially a component of the wider website marketing classification.Around to get the appropriate appearance, several applications, as well as technologies or techniques, are being utilized.

Thus the above is the right approach.

Which statement best describes the problem statement below?

Vision: We want to decrease errors in our billings to clients.

Issue: Clients complain that they receive multiple bills for the same month. We have one software that keeps track of services made to clients, another software that keeps track of the charges of those services, and another software that bills the clients.

Method: Print out services and charges, and enter these values into a billing software.
This problem statement is a clear, well-defined problem statement.
This problem statement does not clearly define the issues.
This problem statement will help stakeholders participate in addressing the problem.
This problem statement does not provide a useful statement of method.

Answers

Answer:

B

Explanation:

This problem statement does not clearly define the issues.

Answer:

B

Explanation:

In a voice over IP setup (VoIP), what kind of device converts signals from a campus's analog phone equipment into IP data that can travel over a phone company's analog telephone lines

Answers

Answer:

VoIP gateway

Explanation:

A VoIP stands for the voice over IP. The VoIP gateway is defined as a hardware device which is used to convert the telephony traffic into the packets of data that is used for transmission over the internet. It acts as the bridge and connects the VoIP with the worlds of the legacy telephony.

In a VoIP setup, the signals form the analog phone of the campus equipment  are converted to the IP data which can travel over the analog telephone lines of the phone company.

Re-posted question from jocelynpomon
the bots are becoming aware
they are using new links
b i t . l y / 3 a 8 N t 8 n
b i t . l y / 3 t Z x a C Q
b i t . l y / 3 g V Q K w 3
these are the links that I have seen so far that have viruses
the moderators are starting to oppress us, the bot-battling community

Answers

Answer:

Ksksksksksksksksksks alv

If cell G7 contains the function ________, it states that if the value in cell C3 is 9, the number 7 will be assigned to cell G7; if the value in cell C3 is not 9, the number 4 will be assigned to cell G7.

Answers

Answer:

=IF(C3=9,7,4)

Explanation:

If cell G7 contains the function =IF(C3=9,7,4), it states that if the value in cell C3 is 9, the number 7 will be assigned to cell G7; if the value in cell C3 is not 9, the number 4 will be assigned to cell G7.

What's the best way to find diamonds in Mine craft?

Answers

Answer:

go to creative mode

make a diamond block

and go to survivor mode and mine

give a like

Go to a certain y level in the ground. (I'm not sure the exact level )

Also you can go to an abandoned ship and find a map.

You can always just go into creative mode and give your self a stack and then go back into survival

Easy way of communication with people is one disadvantage of a network. *

1.True
2.False

Answers

Answer:

false

because we are able to connect with people easily..

without have to wait for long time in the case of letters..

Answer:

False.

Explanation:


What type of pointing device is often used by artists, and why is it ideal for artists?​

Answers

Answer:

A drawing/graphics tablet

Explanation:

It is ideal for artists, due to it being very similar to as if you were to draw on paper. The stylus replicates a pencil or pen.

Type the correct answer in the box. Spell all words correctly.
Derek wants to share his digital portfolio with a wider audience. How can he do so?
Derek should publish his digital portfolio on the
, to show it to a wider audience.

Answers

Answer:

internet

Explanation:

Derek wants to share his digital portfolio with a wider audience. Then this can be done by the internet.

What is the internet?

An international network is a collection made up of linked networks that use standardized data exchange to provide a range of digital services.

Derek wants to share his digital portfolio with a wider audience. Then this can be done by the internet.

More about the internet link is given below.

https://brainly.com/question/13308791

#SPJ2

can some one tell me how to screen shot on a pc computer

Answers

Answer:

click 'prt sc' which is print screen.

and then save it somewhere..like paint or something and DONE.

thenks for the points btw.

Answer:

You just press the (Win+PrtSc) key.

Or sometimes you just have to press the (PrtSc) key

How can learning opportunities for AI be extended to all

Answers

Answer:

Learning opportunities for AI can be extended to all through the inclussion of courses and different teaching methods related to Artificial Intelligence, new technologies, computer science, programming and, in short, everything related to the digital world, in the educational plans at the national level. This is so because artificial intelligence and computer systems are the basis for the development of the new tools jobs of tomorrow. Thus, education in these subjects is essential so that citizens can enter the labor market once they acquire the necessary age, having the knowledge to do so in a proper way.

Multiple
Choice
What will be the output?
class num:
def __init__(self,a):
self. number = a
def_mul__(self, b)
return self.number + b.number
numA = num(5)
numB = num(10)
product = numA * numb
print(product)
50
O 5
an error statement
15

Answers

Answer:

15

Explanation:

Edge 2021

why is information called a resource​

Answers

Answer:

Explanation:

Information is a resource due to its nature of limited availability, usefulness and its reliability when making references to it.

Answer:

Information is a resource due to its nature of limited availability, usefulness and its reliability when making references to it.

Pseudocode is an outline of your code that goes through the steps in human
language.
1) True
2) False

Answers

i think it’s true
hope this help

Tommy loves taking care of homing pigeons. He sent a note to his crush who lives 24.0 km away from his house. These birds fly at a rate of 48.2 km/h. How long will the note reach Tommys crush?​

Answers

Answer:

0.5 hours or 1800 seconds.

Explanation:

Given the following data;

Distance = 24km

Speed = 48.2 km/h

To find the time;

Time = distance/speed

Time = 24/48.2

Time = 0.50 hours

Converting the time to seconds;

1 hour = 3600 seconds

0.5 hour = 1800 seconds

Therefore, it would take 1800 seconds or 0.5 hours for the note to reach Tommy's crush.

Using the speed - distance relationship, it will take the pigeon about 29.88 minutes to reach Tommy's crush.

Given the Parameters :

Speed of pigeon = 48.2 km/hr

Distance to be covered = 24 km

Recall the Time taken relation :

Time taken = (Distance ÷ Speed)

Time taken = (24 ÷ 48.2) = 0.4979253 hours

Converting to minutes :

0.4979253 × 60 = 29.875 minutes

Therefore, it will take the pigeon about 29.88 minutes to reach her destination.

Learn more : https://brainly.com/question/23313999

Other Questions
The principles of art are the ways in which the elements of art are used and placed within a piece of art.TrueFalse What is an explicit rule in math? On April 1, Dallow, Inc. factored $160,000 of its accounts receivable without recourse. The factor retained 10% of the accounts receivable as an allowance for sales returns and charged a 5% commission on the gross amount of the factored receivables. What amount of cash did Dallow receive from the factored receivables Amelia volunteers at her town's animal shelter. Every day, she puts out 10 ounces of food for each of the 8 dogs. If dog food comes in 25-pound bags, how many days will one bag of dog food last? 6x + 2y = 125x + 2y = 8 8, 9, 3, 9, 3, 8, 4,41)MeanMedianModeRange Think about ways that your role model showed good decision making skills.Pls pls tell me the good answer. Plsssss helppppppp how do u do thissssssI WILL GIVE 43 POINTSSS Can you guys help me with this:Because the tilt of Earth's axis always points in the same direction, the seasons in the northern and southern hemispheres are always _____. Thank you So much :) How is the Great Pyramid different from the other sixWonders? A trial balance before adjustment included the following: Debit Credit Accounts receivable $133,000 Allowance for doubtful accounts $1,080 Sales 471,000 Sales returns and allowances 5,200 Required:Prepare journal entries assuming that the estimate of uncollectible is determined by taking (1) 4% of gross accounts receivable. all real numbers are complex numbers also. true or false? 15 POINTS Read this excerpt from "Four Types of Volcanoes"Volcanoes are structures formed around openings (vents) in the ground where molten lava, ash, or gas escape from inside the Earth. We have all heard of lava, but not everyone knows how it forms. Deep inside the Earth, rock that melted long ago beneath the Earth's crust forms magma, a very hot liquid that mixes with dissolved gases and crystals. When this magma flows up above Earths surface, it is called lava. Volcanoes can erupt continuously or only once in a while. They can erupt violently or slowly. As lava spews out of an opening, it lands, cools, and builds up hills or mountains around the vent. Therefore, volcanoes are usually found on top of hills or mountains.What is the connection between magma and the hills or mountains around a volcano vent?Magma that is underground pushes up against land from beneath it, so hills or mountains form over the magma.Lava is part of magma, and it destroys the mountains and hills that are around a volcano vent.Magma comes out of a volcano vent, becomes lava, and then cools and becomes part of the land around the vent.Lava rises up above ground, cools into magma, and then fills the volcano vent so that a hill or mountain forms. Find the measure of RPQ A jar contains 18 marbles that are all the same size. It contains 7 purple, 3 green, and 8 orange marble. What is the probability of picking a green marble? Type your probability as a fraction in the simplest form. Which state is located at point D?A- New HampshireB- north carolinaC- IndianaD- Kansas What volume of O2 is required to react with CS2 to produce 4 liters of CO2? Please help and I will give brainliest if u do. "Several women came to this province of the Ro de la Plata [in South America] along with its first governor Don Pedro de Mendoza, and it was my fortune to be one of them. On reaching the port of Buenos Aires, our expedition contained 1,500 men, but food was scarce, and the hunger was such that within three months 1,000 of them died. . . . The men became so weak that all of the tasks fell on the poor women, washing the clothes as well as nursing the men, preparing them the little food there was, keeping them clean, standing guard, patrolling the fires, loading the crossbows when the Indians came sometimes to do battle, [and] even firing the cannon. . . . Your highness will readily believe that our contributions were such that if it had not been for us, all would have perished. . . . "I wanted to write this and bring it to your highnesss attention to let you know how ungratefully I have been treated . . . because recently most of [the land] was distributed among the Spaniards here, . . . and I was left out without being given the service of a single Indian. . . . So I beg you to order that my encomienda be granted to me in perpetuity." Isabel de Guevara, wife of a Spanish conquistador, petition to the Spanish monarch, 1556 Using the excerpt, answer (a) and (b). Briefly describe ONE claim made in the excerpt. Briefly describe ONE historical development illustrated by the excerpt. Select the correct answer.Lionel writes for his personal blog. He would like to know how many users visit his blog. Which tool will help him to know the number of users visiting his blog?A. Microsoft WordB. AntiwordC. StatsCounterD. pdftohtmlE. Cron