Use the drop-down menu to identify which command is used to do the activities.

Saving updates on a workbook:

Saving a workbook on OneDrive:

Changing the file name of an existing workbook:

Saving an existing workbook in a different location:

Assigning an initial location for the workbook to be saved:

Answers

Answer 1

Answer:

1. Both

2. Save As

3. Save As

4. Save As

5. Both

Explanation:

got the question right

Answer 2

The value you choose—typically the display text—will be saved as the default “Dropdown list” data-type. Instead of saving the text, the “Dropdown list with published keys” instead saves the Revalue ID (from the database).

What is use of a drop-down menu to identify a command?

A drop-down menu, also known as a list of options, appears when a button or a piece of text is clicked. Users can decide a value from a list by selecting it from a graphical representation of this method.

People can select an item from a list you generate using drop-down menus. In a new worksheet, type the selections you want to appear in your drop-down list. Your list items should ideally be in an Excel table.

A closed-ended inquiry known as a dropdown allows respondents to select one response option from a set of options displayed in a dropdown menu.

Therefore, 1. Both 2. Save As 3. Save As 4. Save As 5. Both.

Learn more about drop-down here:

https://brainly.com/question/4379717

#SPJ2


Related Questions

what is meant by resources of computer

Answers

This question is not specific enough. However, a computer helps you listen to music, read articles and even novels, draw using online platforms, play games, etc.

Olivia is excited about with the golf clubs Justin gave her for her birthday, so she smiles broadly and jumps up and down. Olivia’s use of nonverbal communication is an example of which principle of nonverbal communication?

Group of answer choices
Nonverbal communication is more ambiguous than verbal
Nonverbal communication is more credible
Nonverbal messages structure conversation
Nonverbal communication conveys emotional messages

Answers

Olivia's use of nonverbal communication in this situation is an example of the principle that nonverbal communication conveys emotional messages.

What is communication?

Olivia's broad smile and jumping up and down indicate her excitement and happiness about the gift she received. Nonverbal cues such as facial expressions, tone of voice, and body language often convey emotions more accurately and powerfully than words alone.

Therefore, Nonverbal communication refers to any form of communication that does not involve the use of words, such as facial expressions, body language, gestures, and tone of voice. It is an important aspect of human communication because it can convey a range of messages and emotions that cannot be expressed through words alone.

Read more about communication  here:

https://brainly.com/question/28153246

#SPJ1

This code is giving no error but is not printing my "goal." Which is to print a year of highschool when a number is input. Instead the code is only printing "Not in High School" every time, every number. Can someone please explain to me what I did wrong?


grade_number = input("What year of high school are you in? ")


if grade_number == 9:

print("Freshman")


elif grade_number == 10:

print("Sophomore")


elif grade_number == 11:

print("Junior")


elif grade_number == 12:

print("Senior")


else:

print("Not in High School")

Answers

Answer:

You must convert your input to an integer before the if statements.

Explanation:

input() returns a string, which should be converted to your desired type, OR you should compare against string literals.

See below for working code.

This code is giving no error but is not printing my "goal." Which is to print a year of highschool when

In which of the following scenarios can a trademark be applied

Answers

The term trademark can be applied if Alanna draws a shape to use as a background image on a company's website.

What is trademark?

A trademark is known to be a term that connote the  sign that has the ability of setting goods or services of one enterprise apart  from those of other enterprises.

Note that Trademarks are said to be protected by intellectual property rights and as such when one encroach on it, it can lead to legal actions against the person.

Learn more about trademark  from

https://brainly.com/question/11957410

How can blogger outreach benefit my business in the UK?

Answers

Answer:

It is a cost-effective marketing technique that does offer great returns. Blogger outreach will boost your online presence and build awareness of your brand. As we include contextual links, you start to earn an organic backlink profile, and it improves your connection with your target audience.

Azure subscription storage1 virtual machines: service endpoint

Answers

Microsoft's cloud storage solution is the Azure Storage platform. Azure Storage offers huge scalability, security, and high availability.

What exactly is a storage service endpoint in Azure?

Endpoints give you the ability to limit access to your vital Azure service resources to just your virtual networks. Service Endpoints makes it possible for private IP addresses in the VNet to access an Azure service's endpoint without the use of a public VNet IP address.

What happens when a service endpoint for Azure storage is enabled?

With the use of virtual network service endpoints, you can completely block public internet access to these resources by securing Azure Storage accounts to your virtual networks. The best routing is provided by service endpoints, which always keep traffic going to Azure Storage on the backbone network of Azure.

To know more about Azure service visit:

https://brainly.com/question/30373354

#SPJ1

what are functions? Give three (3) examples of mathematical functions​

Answers

Answer:

A function is mathematical relation where the domain (x/input) has only 1 range (y/output) that matches to it.

For example, if the domain is 7, it can only match to one range. 7 cannot match to (for example) 2 and 3. However, multiple domains can have the same range. For example, domains 7 and 8 can both output to range 2.

That is the main difference from an equation.

Examples:

f(x) = x^2

f(x) = |x|

f(x) = \(\sqrt{x}\)

Answer:

Explanation:

A function in programming is a piece of program code that carries a set of instructions or commands that solve a specific task. They were introduced into programming in order to reduce the number of lines of code. In order not to describe some task with dozens of lines of code, you can use a function that describes the task in one line.

3 functions in programming:

Abs (x) - Modulus

Sin (x)  - Sine

Sqrt (x) - Square root

what are functions? Give three (3) examples of mathematical functions

i need help with this ​

i need help with this

Answers

Answer:

Answer is D

Explanation:

cameras did not use disks until the late 1990s  :D

edit: sorry my previous answer was wrong, I apoligize for the mishap :(

Determine the total number of votes and the percentage of the total votes by each candidate. The sample output of your program is shown below. It incudes the winner of the election. Use methods from the System.out stream for your output.

Determine the total number of votes and the percentage of the total votes by each candidate. The sample

Answers

The program that yeilds the above output is given as follows.

public class VoteCounter {

   public static   void main(String[] args) {

       int candidate1Votes = 500;

       int candidate2Votes = 300;

       int candidate3Votes = 200;

       

       int  totalVotes = candidate1Votes + candidate2Votes + candidate3Votes;

       

       double candidate1Percentage = (double) candidate1Votes / totalVotes * 100;

       double candidate2Percentage = (double) candidate2Votes / totalVotes * 100;

       double   candidate3Percentage = (double) candidate3Votes / totalVotes * 100;

       

       System.out.println("Total   votes: " + totalVotes);

       System.out.println("Candidate 1 votes: " + candidate1Votes + " (" + candidate1Percentage +   "%)");

       System.out.println("Candidate 2 votes:   " + candidate2Votes + " (" + candidate2Percentage +   "%)");

       System.out.println("Candidate 3 votes: "   + candidate3Votes + " (" + candidate3Percentage + "%)");

   }

}


  How does this  work?

In this program,we have three candidates,   and the number of votes for each candidate is given.

We calculate the total   votes by summing up the votes for all candidates. Then,we calculate the percentage   of votes for each candidate by dividing their votes by the total votes and multiplying by 100.

Finally,we use the System.out.println() method   to display the total votes and the votes and percentages for each candidate.

Learn more about program:
https://brainly.com/question/23275071
#SPJ1

utilities allow parents to set a variety of limits on their
children's internet usage.
Defragmentation
Firewall
Encryption
Parental control

Answers

Utilities allows parents to set a variety of limit on their children's internet usage.

These utilities are known as parental controls. These are the features that help in monitoring of persons activity on he net. Also then restricting the persons activity.

These programs or software block and filter the harmful sites. Put a time limit on the usage of internet. Recording and reviewing of the child internet history.

It is done to protect the child from the harmful impact of the internet. Like adult content, dark web, harmful person etc. Thus parental control is used.

To know more about the topic please click here.

https://brainly.com/question/27524451

what is the first things u do upon seeing this sheet?​

Answers

Answer:

umm ok

Explanation:

plz mark brainlyest

Mmmmmm yh, I’m not sure ??


Write a program in QBasic to enter two numbers and print the greater one.​

Answers

Answer:

REM

CLS

INPUT “ENTER ANY TWO NUMBERS”; A, B

IF A > B THEN

PRINT A; “IS GREATER”

ELSE

PRINT B; “IS GREATER”

END IF

END

class one

{

public static void main ( )

{

int a = 1,b = 2;

if ( a > b )

{

System.out.print (" greater number is " + a);

}

else if ( a < b )

{

System.out.print (" greater number is " + b);

}

}

}

what is Converting digital data and see information to display screen can use to create an image?

Answers

Answer:

Most displays in current use employ cathode ray tube ( CRT ) technology similar to that used in most television sets. The CRT technology requires a certain distance from the beam projection device to the screen in order to function.

Pls help me awnser this I will give points

Pls help me awnser this I will give points

Answers

Answer:

first one is "int" second one is "string" and third one should be "float"

Explanation:

not sure if the first one is right but try this.

Play now? Play later?
You can become a millionaire! That's what the junk mail said. But then there was the fine print:

If you send in your entry before midnight tonight, then here are your chances:
0.1% that you win $1,000,000
75% that you win nothing
Otherwise, you must PAY $1,000

But wait, there's more! If you don't win the million AND you don't have to pay on your first attempt,
then you can choose to play one more time. If you choose to play again, then here are your chances:
2% that you win $100,000
20% that you win $500
Otherwise, you must PAY $2,000

What is your expected outcome for attempting this venture? Solve this problem using
a decision tree and clearly show all calculations and the expected monetary value at each node.
Use maximization of expected value as your decision criterion.

Answer these questions:
1) Should you play at all? (5%) If you play, what is your expected (net) monetary value? (15%)
2) If you play and don't win at all on the first try (but don't lose money), should you try again? (5%) Why? (10%)
3) Clearly show the decision tree (40%) and expected net monetary value at each node (25%)

Answers

Answer:

wow what a scam

Explanation:

Please have a look at the screenshot below

Please have a look at the screenshot below

Answers

C. Reliability

Because of the network and recovery time



Plz give brainliest

Benefits of having larger hard drive on a computer

Answers

Answer:

You can store many things on it compared to a small hard drive. Download more files, music, movies, games, etc.

Explanation:

Bigger size, More freedom.

Assume that the following variables contain the values shown:
numberBig = 100 wordBig = "Constitution"
numberMedium = 10 wordMedium = "Dance"
numberSmall = 1 wordSmall = "Toy"

For each of the following Boolean expressions, decide whether the statement is true, false, or illegal. Please be sure to explain why the answer is false or illegal.
Example: a. numberBig > numberSmall = True
Boolean Expression Your answer
a. numberBig > numberSmall
b. numberBig < numberMedium
c. numberMedium = numberSmall
d. numberBig = wordBig
e. numberBig = "Big"
f. wordMedium > wordSmall
g. wordSmall = "TOY"
h. numberBig <= 5 * numberMedium + 50
i. numberBig >= 2000
j. numberBig > numberMedium + numberSmall
k. numberBig > numberMedium AND numberBig < numberSmall
l. numberBig = 100 OR numberBig > numberSmall
m. numberBig < 10 OR numberSmall > 10
n. numberBig = 300 AND numberMedium = 10 OR numberSmall = 1
o. wordSmall > wordBig
p. wordSmall > wordMedium

Assume that the following variables contain the values shown:numberBig = 100 wordBig = "Constitution"numberMedium

Answers

Answer:

a. True (because 100 is greater than 1)

b. False (because 100 is not less than 10)

c. False (because 10 is not equal to 1)

d. Illegal (because you cannot compare a number to a string)

e. Illegal (because you cannot compare a number to a string)

f. True (because "Dance" comes after "Toy" in alphabetical order)

g. False (because "Toy" is not equal to "TOY")

h. True (because 5 * 10 + 50 = 100, and 100 is less than or equal to 100)

i. False (because 100 is not greater than or equal to 2000)

j. True (because 100 is greater than 10 + 1)

k. Illegal (because "AND" should be in all caps)

l. True (because 100 is equal to 100 or 100 is greater than 1)

m. False (because neither 100 nor 1 meet these conditions)

n. True (because 100 is not equal to 300 and 10 is equal to 10)

o. False (because "Toy" comes before "Constitution" in alphabetical order)

p. True (because "Toy" comes after "Dance" in alphabetical order)

Boolean Expression Your answer
a. numberBig > numberSmall True
b. numberBig < numberMedium False
c. numberMedium = numberSmall False
d. numberBig = wordBig Illegal
e. numberBig = "Big" Illegal
f. wordMedium > wordSmall True
g. wordSmall = "TOY" False
h. numberBig <= 5 * numberMedium + 50 True
i. numberBig >= 2000 False
j. numberBig > numberMedium + numberSmall True
k. numberBig > numberMedium AND numberBig < numberSmall Illegal
l. numberBig = 100 OR numberBig > numberSmall True
m. numberBig < 10 OR numberSmall > 10 False
n. numberBig = 300 AND numberMedium = 10 OR numberSmall = 1 False
o. wordSmall > wordBig False
p. wordSmall > wordMedium True

Explanation:

d. numberBig = wordBig : This is illegal because numberBig is an integer while wordBig is a string.
e. numberBig = "Big" : This is illegal because "Big" is a string while numberBig is an integer.
k. numberBig > numberMedium AND numberBig < numberSmall : This is illegal because AND cannot be used to combine two inequalities.
n. numberBig = 300 AND numberMedium = 10 OR numberSmall = 1 : This may produce unexpected results because AND has a higher precedence than OR. Adding parentheses would make the expression clearer.

How did early computing device such as Charles Babbage's analytical engine and Ada Lovelace's contributions set the foundation for modern computing

Answers

Early computing devices, such as Charles Babbage's Analytical Engine and Ada Lovelace's contributions, played a crucial role in setting the foundation for modern computing. Here's how their work contributed to computing development:

1. Charles Babbage's Analytical Engine: Babbage designed the Analytical Engine, a mechanical general-purpose computer concept, in the 19th century. Although the Analytical Engine was never fully built, its design and principles laid the groundwork for modern computers. Key features of the analytical engine include:

a. Stored Program: Babbage's Analytical Engine introduced the concept of storing instructions and data in memory, allowing complex calculations and tasks.

b.  Control Flow: The Analytical Engine could make decisions and perform conditional operations based on previous computations, resembling the modern concept of control flow in programming.

c. Loops: Babbage's design incorporated looping mechanisms, enabling repetitive instruction execution, similar to modern programming languages.

2. Ada Lovelace's Contributions: Ada Lovelace, an English mathematician, collaborated with Charles Babbage and made significant contributions to computing. Her work on Babbage's Analytical Engine included writing the first algorithm intended for machine implementation. Lovelace realized the potential of the analytical engine beyond numerical calculations and recognized its capability for processing symbols and creating complex algorithms. Her insights laid the foundation for computer programming and algorithms.

Lovelace's ideas about the analytical engine extended beyond what was initially envisioned. He stressed the importance of machines handling more than just numbers. Her contributions demonstrated computers' potential to perform tasks beyond basic calculations and numerical processing.

Collectively, Babbage's analytical engine and Lovelace's contributions provided early conceptual frameworks for modern computing. Their ideas influenced subsequent pioneers in the field, and the concepts they introduced paved the way for the development of the digital computers we use today.

Insert the following records into the Airports table, using subqueries where appropriate:
-- | Name | City | Country | IATA | ICAO | Latitude | Longitude | Altitude | TimeZone & TzDatabaseTimeZone |
-- |-----------------------|---------------|---------|------|------|--------------|----------------|----------|---------------------------------------------------------------------|
-- | Fort McMurray Airport | Fort Mcmurray | Canada | YMM | CYMM | 56.653301239 | -111.222000122 | 1211 | The same time zone as used for the `Edmonton International Airport` |

Answers

Using the knowledge of the computational language in python it is possible to write a code that Insert the following records into the Airports table, using subqueries where appropriate.

Writting the code:

select A.Name, A.City+', '+ A.Country as 'Serving City', A.TimeZone

from Airports A

where A.AirportCode=1028;

select A.FlightCode, A.ConfirmationNumber, Count(B.CustomerID) aa NumberOfPassengers

from Bookings A

join Passengers B on (A.ConfirmationCode=B.ConfirmationCode)

group by A.FlightCode, A.ConfirmationNumber;

select AVG(Amount) as AverageAmount

from Payments;

select A.FlightCode, sum(B.Amount) as TotalPayment

from Bookings A

join Payments B on (A.CustomerNumber=B.CustomerNumber)

group by A.FlightCode

having sum(B.Amount) > 10000;

select A.FlightCode, B.Date, C.FirstName+' '+C.MiddleName+' '+'C.LastName as FullName,

f

select AirportCode, Name

from Airports

where Name not like '%international%';

select Name

from Airlines

where AirlineCode not in (select AirlineCode

from Flights);

See more about python at brainly.com/question/18502436

#SPJ1

Insert the following records into the Airports table, using subqueries where appropriate:-- | Name |

The measure of a game mechanic is simply how effective it is at drawing a player into your game or creating player immersion.

Question 6 options:

True


False

Answers

The statement "The measure of a game mechanic is simply how effective it is at drawing a player into your game or creating player immersion" is true.

What are the game mechanics?

The guidelines that control a video game's gameplay are known as play mechanics. The game's artificial intelligence (AI) and the activities that users can take within the game's environment are both controlled by the game's play mechanics.

Being able to move a variable amount of space based on a probability distribution produced by a pair of dice is an illustration of a mechanic frequently employed in board games.

Therefore, the statement is true.

To learn more about game mechanics, refer to the link:

https://brainly.com/question/29739190

#SPJ1

A pedometer treats walking 1 step as walking 2.5 feet. Define a function named feet_to_steps that takes a float as a parameter, representing the number of feet walked, and returns an integer that represents the number of steps walked. Then, write a main program that reads the number of feet walked as an input, calls function feet_to_steps() with the input as an argument, and outputs the number of steps. Use floating-point arithmetic to perform the conversion.

Ex: If the input is:
150.5
the output is:
60

Answers

what is the difference between hydra and hadoop?​

Answers

Hadoop is batch oriented whereas Hydra supports both real-time as well as batch orientation.

The Hadoop library is a framework that allows the distribution of the processing of large data maps across clusters of computers using simple as well as complex programming models. batch-oriented analytics tool to an ecosystem full of multiple sellers in its own orientation, applications, tools, devices, and services has coincided with the rise of the big data market.

What is Hydra?

It’s a distributing multi - task-processing management system that supports batch operations as well as streaming in one go. It uses the help of a tree-based data structure and log algorithms to store data as well as process them across clusters with thousands of individual nodes and vertexes.

Hydra features a Linux-based file system In addition to a job/client management component that automatically allocates new jobs to the cluster and re-schedules the jobs.

Know more about Big Data: https://brainly.com/question/28333051

edhesive, 8.6 code practice question 2

Answers

Answer:

what's the question though

Answer:

What are the questions? I cannot answer you without you adding them.

Why would an information systems security practitioner want to see network traffic on both internal and external network traffic?

Answers

Answer:

To see who is accessing data and also where it is going

Explanation:

An information systems practitioner is a person who is involved in the planning and and also implementation of IT resources for any organization which he at she works.

The information systems practitioner would want to want to see network traffic on both internal and external network traffic so as to know who is accessing data and to also know where it is going.

What do you click in the Menu Bar to access LibreOffice Help? O Edit View File O Help​

Answers

Answer:

To access LibreOffice Help, you would click on the "Help" option in the Menu Bar.

Explanation:

List three hardware computer components? Describe each component, and what its function is.

Answers

Answer:

moniter: a screen and is used to see what the computer is running

webcam: the camera on the computer. can be already built in or added

power supply: an electrical device that supplies power to an electrical load

Explanation:

Answer:

Input device

output device

C.P.U

A CPU scheduler that assigns higher priority to the I/O-bound processes than the CPU-bound processes causes:

Answers

Answer:

Low CPU utilization and high I/O utilization

Explanation:

Why is it unlawful for an employer to refuse to employ someone based solely on their gender without evidence that such a characteristic is necessary for successful completion of the job? Answer by writing a paragraph of two to three sentences.

Answers

Employing someone based on gender is unlawful because, it is the skill which matters to get the required job done and skills are not based on gender. There is no evidence that this particular gender cannot do this job and this particular gender can do. Everyone who posses the required skillsets are eligible to get employed irrespective of gender.

===============================================

I tried my best

Which of the following properly uses the initializer method? (3 points)

def __init__(self):
main __init__(self):
object __init__(self):
print __init__(self):

Answers

The proper usage of the initializer method, commonly known as the constructor, is option A: def __init__(self):

What is the initializer method?

The line exemplifies the accurate syntax for defining the initializer method in a class. When an object is instantiated from a Python class, the "init" method is a distinct method that is automatically executed.

This is utilized for setting up the object's properties or executing any required preparations.

The other alternatives suggested for the initializer method do not adhere to the appropriate syntax.

Learn more about  initializer method from

https://brainly.com/question/30782730

#SPJ1

Other Questions
Over the course of the Civil War, _____ claimed the largest number of both Union and Confederate soldiers lives I need help please ly Which of these expressions have positive values? Select all that apply.2(8)10 12(2)(2)10 (20)6(8)40 (8) Is 3/6 divided by 5 greater than 1? can u write me a peel paragraph about Outline the benefits of tourism and justify the use of eco-tourism Can someone help me please ASAP Which of the following words is a pronoun? A of B more C the D your "Gollee those cats sure go through a lot of food," Geoff exclaimed as he saw theshopping list pad that had been pre-printed with the words "cat food" a the top. Hepondered a different approach to shopping for the furry little darlings, reviewed hisshopping records, and discovered the following. The price of cat food has held steadyat 89 cents per can. Despite feigning indifference, each of the seven cats nibbles theirway through an average of one can per day, three hundred sixty-five days a year.The price of gasoline has held constant at $3.50 per gallon and his pickup uses agallon each way to the cat food store. The cost to hold a can of cat food is 10% ofthe unit price. Use the information in Scenario 9.9 to determine the average pantry spaceoccupied by cat food if each can takes up 13 cubic inches and Geoff obeys an EOQpolicy for managing the cat food purchase process. Calculate the derivative of F(x) = (150x)/(200-x) Eleven more than five times a number is equal to the difference between 38 and twice the number. Find the number. Suppose x is a random variable best described by a uniformprobability that ranges from 2 to 5. Compute the following: (a) theprobability density function f(x)= 1/3 (b) the mean = 7/2 (c) thestand what is the thinnest soap film (excluding the case of zero thickness) that appears black when illuminated with light with a wavelength of 455 nmnm ? the index of refraction of the film is 1.35, and there is air on both sides of the film. express your answer in nanometers. Match each business model with the advantage it brings. Air in a piston-cylinder assembly expands isentropically from 1800 R, 2000 psia to p2=20 psia. Assuming the ideal gas model, determine the temperature in R using (a) the variable specific heat model using properties from the air tables, (b) constant specific heat ratio, k = 1.4. A phenol red solution changes color as ph changes. What molecule will cause a decrease in ph as its levels increase?. black holes are formed by a. collapsed dark nebulae. b. supernovae from the most massive stars. c. supernovae from binary stars. d. a lack of any light in a region of space. What theorem shows that ACE BCD?There are two triangles, triangle ACE and triangle BCD with common vertex C. The angle ACE and angle BCD are opposite angles. Side AC is congruent to side BC. Side EC is congruent to side A. HL B. AAS C. ASA D. SAS What do open primaries allow states and political parties todo?A. Allow any qualified voter to vote in the primarywithout registering for a party.B. Exclude all voters of the other party from votingin the primary.C. Include unaffiliated voters from the primary butexclude the other major party.D. Make it easier for voters to vote within theirdeclared party only. myocarditis etiology invovles myocardial infiltration that produces a toxin, leads to inflammation, an autoimmune response causes myocardial degeneration/ necrosis, that may result in heart failure. an agency that does not actively monitor the businesses it regulates but instead waits for private citizens or interest groups to raise questions about the actions of the businesses can be said to use