what is the keyboard shortcut to display formulas on the worksheet : a. CTRL+ B. CTRL+: C. CTRL+; D. ALL THE ABOVE

Answers

Answer 1
girl i dont know figure it out pookie

Related Questions

who invent cars and who invent bikes and who invent pc

Answers

Answer:

Cars were invented in 1886 by Karl Benz.The term bicycle was coined in France in the 1860s, but The first verifiable claim for a practically used bicycle belongs to German Baron Karl von Drais in 1817The first computer was by Charles Babbage, an English mechanical engineer and polymath he originated the concept of a programmable computer.

One of the main operations associated with the dictionary ADT is:
(a) given a key and value, remove the entry with given key and value from the dictionary
(b) given a value, remove the entry that contains the value
(c) remove the last item in the dictionary
(d) given a key, return the value of the dictionary entry with the given key

Answers

ITS B my friends and teacher helped

Computer viruses and coding books

Answers

Is there a picture to go along with this? I don’t see one and an willing to help!

Please answer the questions.

Answers

Answer:

10 days

Explanation:

because they have to go through all your history to see if any of that could of caused it

Answer to questions 1 is option D, answer to question 2 is option B, answer to question 3 is option D

What sound customization option would you use in Scratch to simulate a sound happening in a large, empty room (like a theater)?
louder
reverse
echo
slower

Answers

C. Echo ( I May Be Wrong )

Answer:

Louder

Explanation:

10011÷11 binary division​

Answers

Answer:

110.01001

Explanation:

it's a repeating decimal

The problem below uses the function get_numbers() to read a number of integers from the user. Three unfinished functions are defined, which should print only certain types of numbers that the user entered. Complete the unfinished functions, adding loops and branches where necessary. Match the output with the below sample:


Enter 5 integers:

0 5

1 99

2 -44

3 0

4 12

Numbers: 5 99 -44 0 12

Odd numbers: 5 99

Negative numbers: -44

Answers

size=6

def get_numbers(num):
numbers = []
print('Enter %s integers:' % num)

for i in range(0,num):
print(i,end=' ')
user_input = int(input())
numbers.append(user_input) # Add to numbers list
return numbers

def print_all_numbers(numbers):
# Print numbers
print('\nNumbers:',end=' ')
for i in range(0,len(numbers)):
print(numbers[i],end=' ')

def print_odd_numbers(numbers):
# Print all odd numbers
print('\nOdd numbers:',end=' ')
for i in range(0, len(numbers)):
if numbers[i]%2!=0:
print(numbers[i], end=' ')


def print_negative_numbers(numbers):
# Print all negative numbers
print('\nNegative numbers:',end=' ')
for i in range(0, len(numbers)):
if numbers[i] <0:
print(numbers[i], end=' ')

nums = get_numbers(size)
print_all_numbers(nums)
print_odd_numbers(nums)
print_negative_numbers(nums)

Which system carries the idea of GPS service further than simply telling you which route to take to arrive at a particular place

Answers

There are different uses of GPS. Apple’s Siri system carries the idea of GPS service further than simply telling you which route to take to arrive at a particular place.

Apple Siri  is a software device that can make calls or send texts for a person when he or she is driving.

It often carries the idea of GPS service further as it does not only give GPS but it can help you to tell you, your messages on your Airpods. It often offers some suggestions on things you want to do will driving.

Learn more about Apple Siri from

https://brainly.com/question/9795929

A wireless ________ extender is a network device that enhances transmission of your wireless signal.

Answers

Explanation:

A wifi range extender,sometime called a range expander,is type of wireless repeater used to exten wifi range.

The current annual interest rate is 5 percent, and you are taking out a 20-year loan with a monthly end-of-month payment. If you can afford monthly payments of $3000 per month, what is the most you can borrow?

Answers

Answer:

720k.

Explanation:

Victor and Ellen are software engineers working on a popular mobile app. Victor has been in his position for 10 years longer than Ellen, who is a recent graduate. During the development of a new feature, Ellen expressed her concern that VIctor's proposed code would create instability in the app. Victor told Ellen he would address her concern with their supervisor. When Victor met privately with his supervisor, he claimed that he had discovered the problem, and that Ellen had dismissed it. Which principle of the Software Engineering Code of Ethics has Victor violated

Answers

Victor violated principle 7: Colleagues of the Software Engineering Code of Ethics

A code of ethics reaffirms an organization's ethical conducts and morals so that workers, as well as, third parties are aware of the expectations they must meet.

A code of ethics' objective is to instruct persons functioning on behalf of an organization on how they should act.

The attitude of Victor towards her junior colleague (Ellen) is unjust and dishonest since Victor has claimed the credit meant to be for Ellen.

Therefore, we can conclude that Victor has violated principle 7: Colleagues of the Software Engineering Code of Ethics.

Learn more about the code of ethics here:

https://brainly.com/question/18401975

What free website can you record videos on, and edit them without money?

Answers

Answer:

You can edit videos on Capcut for free and I think you can also use Alightmoon

Answer:

You can edit videos using this application called Kinemaster.

Explanation:

After recording the video download Kinemaster available on Playstore and App store

What is a disadvantage of communicating on social media?

Collaborating with others
Speed
Lack of privacy
Maintaining relationships

Answers

Answer:

Lack of privacy

Explanation:

Does The ps5 digital have a disc drive even Though ps4 games are not compatible

Answers

Answer:

Since the PS5 is backward compatible with the PS4, PS4 games can be played on the new console. Then, select the game hub from your Games home page. Quick tip: If you have a PS5 Digital Edition, you won't be able to use physical game discs since it does not have a disc drive to read them.

Explanation:

HOPE IT HELPS

Here’s my last question

Answers

Answer:

Can't find it lolol

Explanation:

Where?

I’m bored too … hey

In the year, , the American Department of Defense put a military research network, called ARPANET online.

Answers

Answer:

November 21st of 1969.

Explanation:

In the year, 1969, the American Department of Defense put a military research network, called ARPANET online.

(Find the number of uppercase letters in a string) Write a recursive function to return the number of uppercase letters in a string using the following function headers: def countUppercase(s): def countUppercaseHelper(s, high): Write a test program that prompts the user to enter a string and displays the number of uppercase letters in the string.

Answers

def countUppercase(s):
count=0
for i in s:
if i.isupper():
count+=1
s=s.replace(i, "")
else:
s=s.replace(i, "")
countUppercase(s)
return count

element=input("Enter the string: ")
string=countUppercase(element)
print("\nNumber of upper letter in the string: ",string)

When running the following code:
true = 5
false = 6
print (true + false)
-
The interpreter will:

Answers

Answer:

print(11)

Explanation:

true + false = print statement

5 + 6 = 11

To permit communication between two people who do not speak the same language, interpreters accurately and objectively translate spoken or sign languages into other languages.

What is role of print statements in interpreter?

It is the interpreter's responsibility to use these code objects and carry out the directives. You might be astonished to learn that compilation even occurs during the execution of Python code.

As contrast to “compiled” languages like C or Rust, Python is frequently referred to as a “interpreted” language like Ruby or Perl.

A trained expert who facilitates communication between those who speak or sign in various languages is known as an interpretation.

The print() function outputs the message to the normal output device, such as the screen. The message can be a string or any other object, and before it is displayed on the screen, the object will be changed into a string.

Therefore, true + false = print statement 5 + 6 = 11

Learn more about print statements here:

https://brainly.com/question/24200615

#SPJ2

In PowerPoint, a picture might be a photograph, a shape you draw, a piece of clip art, or an illustration created using a graphics app
O True
O False​

Answers

Answer:

True

Explanation:

In PowerPoint, you can insert pictures/images that include photographs, shapes, and illustrations.

Answer:

True

Explanation:

Q) Look at the code and determine the output

y=-10
while(y<10):
print('$', end="") y += 5

(a) $$$$$$$$$$
(b) $$$$
(c) $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
(d) Nothing will be printed

Answers

Answer:

B.

Explanation:

g Tonya recognizes that one example of the impact of censorship on Internet service providers (ISPs) is that

Answers

law-enforcement agencies can force ISPs to identify customers who send emails using anonymous remaliers

Write a recursive boolean method named isMember. The method should accept two arguments: an int array and an int value. The method should return true if the value is found in the array, or false if the value is not found in the array.

Answers

Answer:

hi the answer is nothig

Explanation:

bacause i guessed

he JavaScript ________ defines items on a web page such as graphics, tables, and headers as objects.

Answers

The JavaScript DOM defines items on a web page such as graphics, tables, and headers as objects.

The JavaScript DOM defines items on a web page such as graphics, tables, and headers as objects.

The JavaScript DOM

The JavaScript DOM Known as the Document Object Model (DOM) is a programming interface that allows one to manipulate the  web documents, such that one  can change the document's structure, style, and content using objects like :

graphicstablesheaders.

Therefore, to access items on a web page, The  JavaScript DOM is applied.

Learn more about the dom here:https://brainly.com/question/25772355

Why is information so important in our lives

Answers

Information is very important because it helps us as a society make decisions. Decisions are impossible without information, and we are constantly seeking information in everything we do. Information is important in decreasing our sense of doubt and uncertainty as well.
Information is important in everyone's lives because without information, we would not be able to develop our knowledge on the world. Retaining information starts when you're a baby up until you die and this is through sensory - being able to touch, hear, see and taste.

Additionally, what's the importance of technology in our life? Technology can make any family or business feel safer. There are many security devices and software available to secure your financial data, protect your home when you are away and much more. Technology is important because it makes you feel more secure with every area in life for both personal and business reasons.

Project planning output is :

A. Top-down planning

B. Bottom up planning

C. Waterfall planning

D. Iterative planning

Answers

Answer:

A

Explanation:

The main output of Project palnning is project plan.

What is accomplished by the following code snippet, assuming all variables had been
populated?
amount_owed += duration rate

O Amount owed is set to duration times rate.
O Amount owed adds duration times rate to it.
O Amount owed is displayed to a user as duration rate.
O This line would return a syntax error.

Answers

There are different kinds of computer programs. The option that is accomplished by the following code snippet is the Amount owed adds duration times rate to it.

Code Snippet is simply regarded as a term used to show a tiny portion of re-usable source code, machine code etc. It is know to help a programmer to avoid typing repetitive code when undergoing routine programming.

It is a common example in documentation. It depicts how to use some particular class or how to finish an assigned task. It can be in form of a short snippet that is based on a specific task or a longer one.

Learn more about Code Snippet from

https://brainly.com/question/24171161

A certain microprocessor requires either 2, 4, 8, 12, or 16 machine cycles to perform various operations. Seventeen and one-half (17.5) percent of its instructions require 2 machine cycles, 12.5% require 4 machine cycles, 35% require 8 machine cycles, 20% require 12 machine cycles, and 15% require 16 machine cycles. What is the average number of machine cycles per instruction for this microprocessor

Answers

The answer is 8.45

since (17.5*2+12.5*4+35*8+20*12+15*16)/100 = 8.45

What term describes the story of a game?
tale
fable
narrative
setting

Answers

I would say tale because a tales like more for stuff like games

Answer:

tale.

Explanation:

because the other answers make 0 sense.

Read the problem listed below. Formulate a Decomposition or Outline of the problem. Determine if you have seen this problem before and how it was solved. Start to write your Algorithm, making note of the inputs and outputs that will be required. Write your code, test and debug.

Problem:
Create a program in Python that will draw a series of triangles. The program needs to ask the user for the number of triangles to draw and the size of the triangle.

The inputs for this program need to look like the following:

Enter the number of triangles:
Enter the size of the triangles:
Using these two inputs, your program will then draw a series of triangles in the size the user wishes.

For example if the user enters 3 triangles with a size of 5, the following will be the output:

*
**
***
****

*
**
***
****

*
**
***
****
The easiest way to solve this problem is with two loops. One loop draws the triangles and the other repeats the drawing.

When testing your program make sure you test with different sizes and different numbers of triangles as this will be how your code will be run by Codio.

Answers

URL where the media can be found;

the description of the type of media used in the example;

an analysis of the media piece in relation to the best practices discussed in this lesson, which answers these questions:

Does the piece illustrate best practices?

Which are best represented?

What point do you feel the company

reflection image and design

Answers

Explanation:

It is the image and design

Other Questions
QuestionRefer to attachment Nonsense answer will get report What is a good estimate for 380% of 20 The gravitational force between two asteroids is 6.2 108 N. Asteroid Y has three times the mass of asteroid Z. If the distance between the asteroids is 2100 kilometers, what is the mass of asteroid Y? The ocean regulates temperatures, keeping them mild year-round, in __________ climate regions.A.continentalB.moderateC.polarD.tropical Which of the following led to the Great War? Heart, 5 stars, and Brainiest to first right answer!Which of these is a likely impact of stronger than normal trade winds in the Pacific Northwest of the United States?A. Jet stream would be displaced northwards causing droughtB. Jet stream would be displaced southwards causing droughtC. Jet stream would be displaced southwards causing heavy rain and floodingD. Jet stream would be displaced northwards causing heavy rain and flooding Absolute governments (tho the disgrace of human nature) have this advantage with them, that they are simple; if the people suffer, they know the head from which their suffering springs, know likewise the remedy, and are not bewildered by a variety of causes and cures. But the constitution of , , some will say in one and some in another, and every political physician will advise a different medicine.Is this bolded phrase objective or subjective?A.) neither object nor subjective B.) subjectiveC.) objectiveD.) there is not enough information to tell youre going to be performing a task at work that requires a clean air supply. what type of respirator should you use? to all my brother and sisters out there I'm finally graduated still can't spell and still can't English all thanks to you guys couldn't have done it without you thank you brothers What is another name for break-dancers?O A. Urban Dance TherapyB. Dancing boys and dancing girlsC. B-boys and b-girlsO D. Hip-boys and hip-girlsANSWER: b boys and b girls Given the figure below, which statement correctly completes the following? ABE and HCD are what type of angles Apply the zero product property to solve the equation below:x (x + 2) = 0 We all use memory in the same way. how does douglass appeal to the audiences sense of logic in the excerpt? by using his own personal experiences to gain their trust by recounting emotional events to evoke sadness by explaining the reasoning behind his argument by describing how he plans to effect change in the us A small town had a population of 960 people last year. The population grew to 1200 people this year. By what percentage did the population grow? Please show how you did the problem :) Please look for the question in the picture. c)what are Complex skills Help me please book name :The comeback Find the area of the figure:6 in.5 in.M5 in.10 in.The area issquare inches. Learning Task 1: Write the fraction of each shaded figure. Find the sum. Write your answer in your notebook.Please is anyone can help me please