a worksheet can have a maximum of number of rows​

Answers

Answer 1
1,048,567 rows


I don’t really understand the question

Although you're limited to 255 sheets in a new workbook, Excel doesn't limit how many worksheets you can add after you've created a workbook. The only factor that ultimately limits the number of worksheets your workbook can hold is your computer's memory.

A Range is a group of selected Cells in an Excel worksheet. A Range can be rectangular or square in shape. You can select a Range by left-click, drag and release the mouse over the cells you want to select. ... Similarly, a Range in Excel worksheet is identified by a Range Address.
Answer 2
I believe it’s 1,048,567

Related Questions

Edhesive 6.8 lesson practice answers

Answers

Answer:

1.) 25 ; 15 ; 15

2.) 50 ; 15 ; 50

Explanation:

In the first function written :

The variable val was initially decaled or assigned a value of 25 and that was what was printed first.

However, after the example function was written, the val variable was finally assiagned a value of 15 within the function. However, it was also declared that the global variable takes uonthe val value. Hence, the val variable initially assigned a value, of 25 changes to 15 globally.

For the second code :

From the top:

Val was assigned a value of 50 ;

Hence,

print(val) gives an output of 50

Within the function definition which prints the value of val that is assigned a value of 25 within the function.

Since tbe global variable isnt reset.

Printing Val again outputs 50;since ito is outside the function.

The code output description can be defined as follows:

Code Explanation:

In the first code, a "val" variable is declared that hold an integer value.In the next step, a method "example" is defined.Inside the method a global keyword is used that define a variable "val" in which it hold an integer value and print its value.After defining a method two print method is used that print "val" variable value and call exmaple method.In the second code, a "val" variable is declared that hold an integer value.In the next step, a method "example" is defined.Inside the method another variable "val" is defined in which it hold an integer value and print its value.After defining a method two print method is used that print "val" variable value and call exmaple method.

Code:

val = 25 #defining a variable val that holds an integer value

def example(): #defining a method example

   global val #using keyword global to define variable val

   val = 15#defining an integer variable that hold integer value

   print (val)#print global variable value

print (val) #print val variable value

example()#calling example method

print (val)#print global variable value

print("----------------------------------------------------")

val = 50 #defining a variable val that holds an integer value

def example(): #defining a method example

   val = 15 #define variable val that holds integer value  

   print(val)#print val variable value

print (val) #print val variable value

example() #calling method example

print (val)#print val value

Output:

Please find the attached file.

Learn more:

brainly.com/question/21866333

On start up, which of these windows is not displayed ?
2.
(a) The Blank Form window
(b) The Class window
(c) The Project window
(d) The Properties windov​

Answers

Answer:

(d) The Properties window

Answer:

The Project Explorer window .

Explanation:

displays a list of forms and modules that make up your application. Generally, this is positioned under the tool bar on the right side of the screen. It acts a s a quick reference to the forms, classes and modules in a project.

a python program for the following output using for loop.

Output:


-13

-7

-1

Answers

Answer:

In Python

for i in range(-13,0,6):

   print(i)

Explanation:

Required: A program to display the given output

From the program, we observe the following:

The output begins at 13 i.e begin = 13

The output ends at -1 i.e end = 1

And the difference between each output is 6.

i.e. [tex]-1 - (-7) = -7 - (-13) = 6[/tex]

So, the syntax of the for loop is: (begin, end + 1, difference)

The program explanation goes thus:

This iterates through the -13 to 1 with a difference of 6

for i in range(-13,0,6):

This prints the required output

   print(i)

Please its argent and I will give you BRAINLIEST ANSWER 6. How would you confirm that a colourless liquid given to you is pure water?

Answers

Answer:

Evaporate the colourless liquid on a low flame. If no residue is left and boiling exactly at 100 ºC then it is pure water otherwise not.

Explanation:

Fill in the blanks. The ______ starts out from the server and goes to a ______, which reads the packet’s addressing information. On the Internet, a network packet usually makes a few ______ from router to router before reaching its destination.

Answers

Answer:

1. Network Packet

2. Router

3. Hops

Explanation:

Answer:

Network packet, router, hops

Explanation:

Edge 2022

Match each definition with the term it describes. A(n) ______ provides identification and addressing information for computers and devices on a network. A(n) ________ is a network that covers an area of less than a mile. The Internet is an example of a(n) ______.

Answers

Answer:

IP address, LAN, WAN

Explanation:

Answer:

Sentence 1: IP Address

Sentence 2: LAN

Sentence 3: WAN

Explanation:

Edge 2022

Hello i should be write engilish but i from turkey and my brainly APS is engilish how can ı change this lengue haa​

Answers

Explanation:

there are buttons like q ans influence and me

go to me and tap settings

Answer:

you can translate it into English if u know how to do and if there is option for that.

Explanation:

A test's directions often clarify any questions a student might have about answering a response question.

Please select the best answer from the choices provided

True
False

Answers

True, hope you have Have a good day
I’m good at technology and I say True.

Could somebody please find the bugs and amend them? This question is worth 25 Brainly points!
---------------------------------------------------------------------------

#Tax Calculator with 4 bugs

salary = int(input("Please enter your annual salary: £"))

if salary < 30000
#Salaries under 30000 are taxed at 20%
tax = salary * 0.2
elif salary >= 30000:
#Salaries over 30000 are taxed at 40% for anything over 30000
salary = salary - 30000
tax = salary * 0.4 + 6000
else:
#Salaries over 150000 are taxed at 45% for anything over 150000
salary = salary - 150000
tax = salary * 0.45 + 6400 + 48000


print("Earnings of £",salary,"will attract taxes of £",round(tax,2))
input("Press ENTER to quit")

Answers

line 4

if salary < 30000

error missing ":"

solution

if salary < 30000:

line 6

tax = salary * 0.2

error is missing identifier for tax

solution add identifier for tax on line 3

tax = 0.0

line 11

error syntax

solution is move tax = salary * 0.4 + 6000 to the right

tax = salary * 0.4 + 6000

Computer software consists of
A.) the peripheral equipment such as a scanner
B.)the physical parts of the computer such as the keyboard.
C.)the programs inside of a computer such as the d.)operating system and gaming.
a monitor and the CPU

Answers

The answer is C) the programs inside of a computer

Answer:

The programs inside of a computer

hannes complains that his computer is always giving error messages, the file names and folder names are garbled, and there is an odd noise coming from his computer tower. which hardware device do you suspect is causing the problem?​

Answers

Answer:

It could be the hard disk drive (HDD)

In a sport like baseball, which of the following could be considered a “rule”?

following an umpire’s decision on whether a pitch is a ball or a strike

the force of gravity on the ball

the kinds of safety equipment players are asked to wear

all of the above

Answers

The answer is all of the above since safety is a priority but when you swing the bat you have to make sure you use enough force.

Hope this helps mark me brainliest please

What are the importance of Help and Support feature of Windows​

Answers

Answer:

Explanation:

Start Menu Returns. It's what Windows 8 detractors have been clamoring for, and Microsoft has finally brought back the Start Menu. ...

Cortana on Desktop. Being lazy just got a lot easier. ...

Xbox App. ...

Project Spartan Browser. ...

Improved Multitasking. ...

Universal Apps. ...

Office Apps Get Touch Support. ...

Continuum.

I tried going into a website called Utters.io, but when I typed a phrase in, the video was taking a really long time to load. Does anyone know what's wrong with it?

Answers

Answer:

Your internet or browser

Explanation:

Try another browser or resetting your router. If a YT video will load then you can rule out internet speed and try another piece of client software.

Write a basic
to solve
30x10​

Answers

Answer:

30x10

Explanation:

3 times 10 = 30

30 times 10 = 300

Answer:

30x10​=300

Explanation:

3x10=30

30x10= 300

(just add another zero, if that makes sense)

What type of computer/device do you have i need it for a survey and it due today soooooooooooooo

Answers

Answer:

ooh I have a I phone computer

Where do you click to add keywords to describe your image?

File>File Info and click on Basic
Edit>File Info and click on Basic
File>Preferences and select keywords
Right click on file and select Get Info

Answers

Answer:

D. I use a Mac and I right-click the file, then add tags. I can create new tags for describing a png image (or pdf if it was exported).

The place where click to add keywords to describe your image is right click on file and select Get Info. Thus, option D is correct.

What is HTML?

In technical terms, the HTML element happens to the collectible of a start tag, an end tag, attributes of the tag and everything that comes in between the start tag and the end tag. And whereas the HTML tag happens to be the opening or the closing, that is used for marking the beginning of the end of an element.

The first version of the page's HTML, together with any JavaScript that may be present in the HTML file. HTML for the webpage that displays DOM changes. HTML lacks intelligence on its own since it is incapable of doing mathematical operations, determining whether a form has been completed correctly, or making judgments based on how a website visitor interacts with it.

Therefore, The place where click to add keywords to describe your image is right click on file and select Get Info. Thus, option D is correct.

Learn more about HTML on:

https://brainly.com/question/24065854

#SPJ6

help pleaseee got 15 points on this

.

Roxy has some raw footage shot on a videotape. She wants to edit this footage. She decides to use the linear editing technique. How should she set up her equipment? Roxy should load the raw footage in the ______ and a blank tape in the ______ first blank: VTR deck, VTP deck, edit controller. second blank is the same thing​

Answers

I belive it is vtr deck

What are characteristics of fluent readers? Check all that apply. reading known words automatically pronouncing words correctly reading words as quickly as possible understanding the meanings of the words being read O looking up all unknown words in the text being read

it's A,B,D​

Answers

Answer:

D,A,B hope this is it!!!!!

Answer:

The person above me is correct

Explanation: credit to him

. Suppose client A initiates an FTP session with server S. At about the same time, client B also initiates an FTP session with server S. Provide possible source and destination port numbers for: (a) the segments sent from A to S? (b) the segments sent from B to S? (c) the segments sent from S to A? (d) the segments sent from S to B? (e) If A and B are different hosts, is it possible that the source port numbers in the segments from A to S are the same as those from B to S? (f) How about if they are the same host?

Answers

Answer:

Follows are the solution to this question:

Explanation:

The segments send port "A to S" numbers below 1024 and use 1024 and 65535 as standard numbers, that are using as a temporary connection. The port number for Server "S" is =23, and the port number for Client"A" is between 1024 and 65535, and its standard value is 467, and other calculation can be defined in the table:

  [tex]Serial \ \ \ \ \ \ \ \ \ \ \ \ \ port \ \ number \ \ \ \ \ \ \ \ \ \ \ \ \ Destination \ port\ number[/tex]

  [tex]a) A \to S \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ 467 \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ 23\\\\b) B \to S \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ 513 \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ 23\\\\c) S \to A \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ 23 \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ 467\\\\d) S \to B \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ 23 \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ 513\\\\[/tex]

  [tex]e) Yes\\\\f) No\\\\[/tex]

does the colour intesity change of the liquid if you add more baking soda?​

Answers

Answer:

adding more baking soda to the water changes the intensity of the color blue. in this case, the liquid becomes a dimmer blue. this is because the pH scale is logarithmicmeaning that a difference in one unit of pH is 10 times the difference in concentration.

Explanation:

Hope this helped Mark BRAINLEST!!!!!

Consider the following code segment - 3

Answers

Answer:

The answer is "Choice C".

Explanation:

In the above-given code, a 1D array "list" is declared that holds integer values, and it uses three print which can be defined as follows:

In a first print method, it uses the length method that holds the array length that is "9".In a second print method, it uses the array that prints the first element value of the array that is "22".In the last print method, it uses the array that holds the length of the array, which will give an error message that is "ArrayIndexOutOfBoundsException".   That's why only the choice C is  correct.

Can anyone help and write a sample answer to this please x

Answers

Answer:

I can give you some points -

Today people consider owning the latest smartphones and gadgets as a symbol of status. The demand for newer models of gadgets results in the production of more things we dont require. More and more waste is generated due to the rejection of older models of working gadgets. More demand for newer models can help in the advancment in technology and encourage manufavturers to produce better gadgets. But this increase in demand can badly affect our environments .

.i hope these points can help you.

Advantage of keyboard

Answers

You could do the alphabet.

Which Application program saves data automatically as it is entered?
MS Word
PowerPoint
MS Access
MS Excel

Answers

The application program that saves data automatically as it is entered is the MS Access.

The Application program that saves data automatically as it is entered MS Access. The correct option is C.

What is MS Access?

Microsoft Access is a database management system that includes a graphical user interface, the relational Access Database Engine, and software-development tools.

It is a component of the Microsoft 365 software package and is available as a standalone product or as part of the Professional and higher editions.

Data kept in Access may be found and reported on with ease. Make interactive data entry forms. a variety of data sources can be imported, transformed, and exported.

Access is often more effective at managing data because it makes it easier to keep it structured, searchable, and accessible to several users at once.

MS Access is an application tool that automatically saves data as it is entered.

Thus, the correct option is C.

For more details regarding MS access, visit:

https://brainly.com/question/17135884

#SPJ2

what is out put following code?​

Answers

Answer:

please provide full picture of the code and then i will be able to help u

Explanation:

Answer:

Do you have the entire question?

Explanation:

what do you understand by local technology?

Answers

Answer:

It's basically people that assist to their activities in a daily life

Explanation:

Answer:

People that assist with each daily activities

Explanation:

1 )Write two ways to customize the
pictures in HTML document.​

Answers

Answer:

a)If anyone wants to append the picture on the website then he can do this with the help of <img> tag. ...

b)The CSS is used to set the border, color, height, and width of the elements of the HTML.e

My name is Devin. I’m soon going to graduate from technical school as an electrician. I’ve started
looking for a job and it’s a little overwhelming.
Ideally, I’d like to work in a small family run business, where we do mostly residential businesses.
This will allow me more time to get to know our customers. In addition, I would like to feel as if I’m
part of a small, close-knit team.
But... there are a couple of larger companies in the region that are hiring entry-level electricians. I
could probably make more money at one of these companies. These companies also have
continuing educational programs, if I agreed to work for them for a few years after getting hired.
For me, the downside of working at a larger company would be that the work is usually in an
industrial setting. Additionally, I may be working different shifts and staff a lot. This would take
away from the close "team" feeling I'm looking for.
But, working off-hours does mean even more pay. I just don't know.
How might Devin’s compromises change if continuing education was a priority?

Answers

Answer:

Bro congratulations for the graduation and I hope that your job will pay good and I will pray for your success. Good luck Devin

The Internet is considered a WAN.

True or False

Answers

Answer:

True

Explanation:

The Internet can be considered a WAN as well, and is used by businesses, governments, organizations, and individuals for almost any purpose imaginable.

Answer:

True

The internet is considered a WAN

Other Questions
Determine the INTEREST ONLY for $4,331.00 earning 5.5% for 4 years, compounded semi-annually. 1.Organisms without a distinct nucleus2 .Structures that display characteristics of living organisms onlywithin living cells3. The close association between two organisms where one or bothbenefit muclism4. Disease caused by a virus that leads to a gradual destruction of thmmune system5. Process by which bacteria break organic matter into simpleutrients which are then returned to the soA term used to describe organisms that cause diseases e.g. bacteria A bag contains 42 red, 45 green, 20 yellow, and 32 purple candies. You pick one candy at random. Find theprobability that it is purple or not red. Lucido Products markets two computer games: Claimjumper and Makeover. A contribution format income statement for a recent month for the two games appears below: Claimjumper Makeover Total Sales $ 112,000 $ 56,000 $ 168,000 Variable expenses 34,600 7,400 42,000 Contribution margin $ 77,400 $ 48,600 126,000 Fixed expenses 86,850 Net operating income $ 39,150 Required: 1. What is the overall contribution margin (CM) ratio for the company solve for x!!!!!!!!! 2. What was the purpose Black Code laws? Why do you think this angered the Radical Republicans? Cab A charges $20 at the start and $5 every mile after . Cab B charges $30 no matter how far you go. What are their initial values and their rates of change? When will their fares be equal? Light reactions occur inside of the thylakiod membranes and they produce oxygen, ATP, and NADPTrueFalse UGawain sa Pagkatuto Blang 2: Sagutin ang suna mga tanong. Isulat ang sagot sa iyongpapel.N1. Magtala ng tatlong (3) bagay na iyong inpinahahalagahan.2. Bakit ito mahalaga sa iyo?color3. Paano mo iniingatan ang mga bagay nan4. Paano iingatan ang mga likhang sining?ustala What molecule does oxygen create? xThe probability of drawing a blue ball from Bag A is 1/5 and theprobability of drawing a red ball from Bag B is 2/3.What is the probability of drawing a blue ball from Bag A AND a redball from Bag B? Question 2 (3 points)Which of the following is something you need to think about throughout unit 52 (3 points)OaThe independent readingObThe skills for argumentsThe writing promptOdThe opinions you have (ONLY TWO CAPITAL LETTERS) Please answer correctly !!!!!!!!!! Will mark Brianliest !!!!!!!!!!!!! URGENT Is there a time you became aware of being treated differently because of your gender. How did you feel? What have you realized? 150 words 3/4. Please help if possible :)Even if it is just one of them. ?????????????????????????? detrmine if 7, 5, 84, 48 are in proportion or not Willy the Wombat is 50 feet from a tree. The tree is 75 feet tall. At what angle of elevation should Willy look to see the top of the tree? Round to the nearest degree If an atom contains one electron and one proton will it carry any charge or not? Prove that the median to the base of an isosceles triangle is also: the altitude to the base. Also, Prove that the median to the base of an isosceles triangle is also: the angle bisector of the angle from which it is drawn.Please provide statement and reason proof. Would really appreciate it. Best Answer will get brainliest, and please don't spam stuff just for points. Thanks, and have a great day!