What does a file extension tell your computer?.

Answers

Answer 1
Extensions tell your computer which application created or can open the file and which icon to use for the file. For example, the docx extension tells your computer that Microsoft Word can open the file and to display a Word icon when you view it in File Explorer.

Related Questions

You can us the (BLANK) symbol when you want to automatically add a set of numbers together in a spreadsheet

Answers

Answer:

Σ

Explanation:

What symbol can you use when you want to automatically add a set of numbers together on excel?

✓ Σ This is the Greek letter Sigma. It is used to start the Autosum facility.

Archie is looking for a design methodology that would allow him to release his app in chunks rather than all at once. But he still favors the traditional waterfall model. What model would best fit his needs?
a waterfall
b agile
c rapid prototyping
d spiral ​

Answers

The agile model would be the best fit for his design methodology because the agile model delivers discrete pieces or parts of software rather than the full application option (b) is correct.

What is the agile model?

Agile software development is a set of approaches focusing on iterative development, in which requirements and solutions change through cooperation among self-organizing cross-functional teams.

The agile model would best fit his need because it emphasizes the clean delivery of discrete pieces or parts of software rather than the full application, agile software development necessitates a cultural shift in many firms.

Thus, the agile model would be the best fit for his design methodology because the agile model delivers discrete pieces or parts of software rather than the full application.

Learn more about the agile model here:

https://brainly.com/question/10714151

#SPJ1

Discuss the advantages and disadvantages of supporting links to files that cross mount points (that is, the file link refers to a file that is stored in a different volume).

Answers

Advantage - greater transparency; user doesn't need to be aware of mount points / link creation

Disadvantage - file system containing the link may be mounted while the file system containing the target file may not be; resulting in a dead link

What are the inputs that the model uses to make decisions?


Answers

Answer:

It makes the decision better and adds ownership in the implementation

Explanation:

Hope this helps C:

~Chiena

Bruno is asked to create a program that will require the user to enter a passcode. If the wrong passcode is entered, the user can try again until they get it right. What kind of loop should be created for this? A. a binary loop B. a condition-controlled loop C. a count-controlled loop D. an interface loop

Answers

Answer:

a condition controlled loop

Explanation:

if a user get the password right he will not have to restart

In the given scenario, the kind of loop that should be created is a condition-controlled loop. (Option B).

What is a Condition-controlled Loop?

A condition-controlled loop is also known as a "while loop." It continues to execute its code block as long as a specified condition is true. In this case, the condition would be something like "while the entered passcode is not correct." The loop will keep running until the user enters the correct passcode, at which point the condition becomes false, and the loop exits.

Accordingly, in this scenario, Bruno needs to create a loop that repeatedly asks the user to enter a passcode and checks whether the entered passcode is correct or not. If the entered passcode is incorrect, the loop should allow the user to try again until they enter the correct passcode.

Learn more about condition-controlled loop here: https://brainly.com/question/34137222

#SPJ2

In Python to center an output statement, the ^ (caret) symbol will be used in the format specifier of the format function.

A. True
B. False

Answers

Answer:

true

Explanation:

In Python to center an output statement, the ^ (caret) symbol will be used in the format specifier of the format function.

A. True

B. False

True

An IF statement inside the true block of another IF statement is called:

A. it is not possible to put an IF statement inside the block of another IF statement
B. a relational operator
C. a nested IF statement
D. a branched IF statement
E. a conditional operator

Answers

Answer:

C. a nested IF statement

Explanation:

Anytime something is contained within another of itself, it's referred to as being "nested".

if (true)

{

     if(true)

     {

       

     }

}

This outline is an example of O cause and effect . O order of events . O problem and solution . O order of importance . ​

Answers

Answer:

cause and effect

Explanation:

I actually searched this question up and used a file from a different question to answer this

The question and answer choices were the exact same so I hope I got the correct file

which of the following energy conversions occurs inside a battery?

Answers

Answer:

chemical energy is changed into electrical energy.

Explanation:

Discussion Topic
Think of a few examples of robotic systems that utilize computer vision (e.g. drones, self-driving cars, etc.). As these technologies become more advanced, cheaper, and proliferate more industries, what are some of the most promising applications you can envision for these sorts of systems? 30 POINTS PLEASE HELP!!

Answers

Robotics systems are systems that provide information based on artificial intelligence. These types of systems can be best employed in medical research, forensics, agriculture, etc.

What are robotic systems?

A robotic system is a use of a machine or the robots with artificial intelligence that are used to perform many various tasks like in automobile industries, health care, military, agriculture, etc.

A robotic system with computer vision can be used in medical treatment and research as they will help assist with complex surgeries, in agriculture to increase crop productivity and manage pests.

Therefore, robotics can be used in the military, food preparation, agriculture, health care, etc.

Learn more about robotic systems here:

https://brainly.com/question/12279369

#SPJ1

Sayid listed the steps for adding a recurring event in Outlook.

1: Click on Calendar in the Navigation Pane.
2: On the Home tab in the New group of the Ribbon, click New Appointment
3: Click the box for “All day event” and enter the subject.
4: Enter the details in the Recurrence dialog box and click OK.
5: Click Save & Close.

Answers

Sayid's error in setting up reminder for recurrent activities in Microsoft Outlook is that he missed the next step after Step 3 which is " after step 3, click the recurrence button." (Option C) See the attached for the full question.

What is a recurrent event in Outlook?

In Microsoft Outlook, the recurrent button serves the function of enabling uses set up reminders that are recurrent hence increasing their efficiency and reducing the possibility of forgetting such an important event.

Thus, the correct steps for Sayid to take are:


1: Click on Calendar in the Navigation Pane.

2: On the Home tab in the New group of the Ribbon, click New Appointment

3: Click the box for “All day event” and enter the subject.

4: Click the recurrence button

4: Enter the details in the Recurrence dialog box and click OK.

5: Click Save & Close.

Learn more about outlook at:
https://brainly.com/question/1538272
#SPJ1

When multiple endoscopic approaches are performed to accomplish the same procedure, report a code for.

Answers

the successful endoscopic approach only.

Which of the following would be the most important technical skill for a camera operator interested in
embedding with the military?
O mounting a gear head tripod
O capturing live action shots
night-time camera operations
O setting up a dolly track

Answers

The most important technical skill for a camera operator interested in embedding with the military is: C. night-time camera operations.

Who is a camera operator?

A camera operator can be defined as an individual who is professionally trained to tweak, operate and use a digital camera, especially for the purpose of taking pictures of an event, place, person, etc.

In the military, the most important technical skill for a camera operator interested in embedding with the military is night-time camera operations.

Read more on camera operators here: https://brainly.com/question/14373571

#SPJ1

The \t and \n are examples of one of Python's escape characters.

A. True
B. False

Answers

Answer:

A. true

Explanation:

Step 1: int fun(int); This is prototype of function fun().It tells the compiler that the function fun() accept one integer parameter and returns an integer value.. Step 2: int i=3; The variable i

What modifier should you use on the members of a class so that they are not accessible to another class in a different package, but are accessible to any subclasses in any package

Answers

The private modifier specifies that only other members of the same class can access the member. The protected modifier restricts access to the member to within its own package.

What are public and private modifiers?

The public access modifier permits code from both inside and outside the class to access the class's methods and properties, whereas the private modifier prevents outside code from accessing the class's methods and properties.

Thus, private modifier is the member.

For more details about private modifier, click here

https://brainly.com/question/15108837

#SPJ1

Jeff wants to create a website with interactive and dynamic content. Which programming language will he use?
A.
DHTML
B.
HTML
C.
CSS
D.
JavaScript

Answers

Answer:

b.HTML

Explanation:

HTML (Hyper-Text Markup Language) and it was the primary language for developing the websites those days. With the evolution of internet market, the transformation of simple, static HTML websites to dynamic websites was the first thing to come up.

A user can add color to a database to highlight a modification. To do this with a macro, which command screen would you access on the Property Sheet?
A.Code Builder
B.Visual Builder
C.Macro Builder
D.Expression Builder

Answers

The command screen would you access on the Property Sheet is Code Builder

Who is a Code Builder?

This is known to be a kind of Visual Studio Code that is made to be running fully in a browser and it is one that is enhanced or  backed up by a good cloud-hosted developer environment.

Conclusively, Note that a  Visual Studio Code, it can be used by a person to be able to access on the Property Sheet is Code Builder

Learn more about Code Builder from

https://brainly.com/question/10891721

#SPJ1

Answer:

Its A

Explanation:

In Python, the __________ function is used to enter data inside a list [array].

A. copy
B. insert
C. get
D. add
E. append

Answers

In Python, the insert function is used to enter data inside a list. The + operator returns a new array containing the elements from both arrays. append(): appends the element to the array's end. insert()

Can input an array into a function Python?

Any sort of data, such as a text, list, array, dictionary, or dictionary, can be supplied as an argument to a function in Python.

When one pass numeric arrays as arguments to Python methods or functions, they are passed by reference.

Thus, option B is correct.

For more details about Python, click here

https://brainly.com/question/13041484

#SPJ1

What action should you take if you become aware that sensitive compartmented information has been compromised

Answers

The sensitive compartmented information can not be compromised and in case found with the incident it must be reported to the security officer.

What is Sensitive Compartmented Information?

The sensitive compartmented information is given as the sensitive information to the United States gathered with the source of the intelligence and the analytical process.

The information has been sensitive and was considered not to be compromised. In case the information is found to be compromised, the security officer of the information must be contacted to check into the details.

Learn more about sensitive information, here:

https://brainly.com/question/25948574

#SPJ1

A "page" within an Excel workbook that contains columns, rows, and cells. Question 13 options: Formula Formula Bar Worksheet Workbook

Answers

Answer:
Worksheet
Explanation:
A worksheet is a "page" in an excel file (a workbook). A workbook can contain more than one worksheets and they can be hidden.

While making a digital portfolio, Sarah wants to add names and contact information of people she knows professionally. What should she
Include regarding these people?
Sarah should include
letters regarding names and contact information of people she knows professionally.
Reset
Next

Answers

In adding names and contact in a digital portfolio, Sarah should include the full name, street address, city, state, and zip code, and contact information.

What is a digital portfolio?

A digital portfolio is an electronic portfolio where a person includes it blog, names, pictures, texts, etc.

Thus, In adding names and contact in a digital portfolio, Sarah should include the full name, street address, city, state, and zip code, and contact information.

Learn more about digital portfolio

https://brainly.com/question/23758218

#SPJ1

Type the correct answer in the box. Spell all words correctly.

Fill in the blank with the correct word.
Children use audio-visual media to get hands-on experience and learn
________activities.

Answers

Answer:

kinesthetical

Explanation:

please give brainliest please and good luck :)

What three actions can be taken to improve the clarity of a program for sharing and problem-solving?

A. Tidy the arrangement of the blocks

B. Remove all the programmer's comments to make it look cleaner

C. Add comments explaining the code

D. Create functions and modules when procedures are repeated

Answers

The actions that can be taken to improve the clarity of a program are:

Tidy the arrangement of the blocks. Add comments explaining the code.Create functions and modules when procedures are repeated.

What is problem solving in programing?

Problem solving is known to be the ways  of knowing a given problem, creating  an algorithm for the known problem and also implementing the algorithm to create a computer program.

Therefore, the three actions that can be taken to improve the clarity of a program are:

Tidy the arrangement of the blocks. Add comments explaining the code.Create functions and modules when procedures are repeated.

Learn more about problem-solving from

https://brainly.com/question/23945932

#SPJ1

To evaluate the performance of a security system, administrators must establish system performance _____________________

Answers

To evaluate the performance of a security system, administrators must establish system performance baselines.

What is a performance baseline?

A baseline for any kind of performance measure is known to be one that often looks at the the average stages or level of the work that one is  currently working on.

Note that it often compare future performance levels using test so as to see if performance has changes and as such to evaluate the performance of a security system, administrators must establish system performance baselines.

Learn more about security system from

https://brainly.com/question/25720881

#SPJ1

A RESTful service, such as the open weather service use used in an activity in this class, sends and receives data in the form of JSON or JavaScript Object Notation. This data is in the form of:Group of answer choicesa sequencea stringa key/value paira list

Answers

Answer:

A key/value pair

Explanation:

JSON or JavaScript Object Notation uses key/value pairs to represent data.

Here's an example:

{

   name: "Jordan Carter"

   age: 25

}

Data can be then accessed using a key such as "name" to get the value "Jordan Carter."

What am i doing wrong PLEASE HELP ASAP

Answers

Answer:

after the question mark on line '4' the speech marks might be too far away from the question mark so I would recommend trying to move it closer? might be wrong though

Consider that there is a class Team for soccer team members under Soccer namespace and another class Team for basket team members under the Basketball namespace. What is the correct syntax that will help the compiler identify the correct Team

Answers

The correct syntax that will help the compiler identify the correct Team is;

Soccer::Team SoccerTeamMembers

BasketBall:Team BasketBallTeamMembers.

What Is syntax?

Syntax is known to be the steps or arrangement of words and phrases to bring about a proper sentences.

Note that in the above case, The correct syntax that will help the compiler identify the correct Team is;

Soccer::Team SoccerTeamMembers

BasketBall:Team BasketBallTeamMembers.

Learn more about syntax from

https://brainly.com/question/831003

#SPJ1

Outlook 365 is strictly an email system true or false

Answers

Answer:

true

Explanation:

Outlook 365 is strictly an email system, is the true statement.

What is meant by email system?

The email system refers to the computer network that controls email on the Internet. This system comprises of user machines that run programs to write, transmit, retrieve, and display messages as well as agent machines that manage mail.

The two main types of email service providers are email clients and Webmail. I'll go over the three types of emails—transactional, broadcast, and triggered—that you should be sending to your subscribers on a regular basis in this course.

Electronic mail is one of the most used Internet services (or "mail"). An Internet user can send a prepared message to another Internet user situated anywhere in the world with the use of this service. Mail communications also contain video, music, and image data in addition to text.

Thus, it is a true statement.

For more information about email system, click here:

https://brainly.com/question/12996676

#SPJ2

Which statements describe the advantages of using XML

Answers

Answer:

1. It saves file space.

2. It allows for data storage in a separate file.

Explanation:

This might sound crazy! But please help.
Awards: Brainliest & A lot of points
How do I change my grades for Aspen, on a school laptop.
I need this please help.

Answers

Answer:

You Probably should’nt do that

Explanation:

Other Questions
The Charge of the light bridge by Alfred Lord TennysonExplain why Tennyson does not name or single out any of the six hundred. SOLVE FOR X !!!!!!! WILL ALWAYS GIVE BRAINLIEST!!!!!!! solve for x[tex]x {}^{2} - 5x + 6 = 0[/tex]thankyou! :) An ecosystem with one dominant type of plant growing in it is a healthy, stable ecosystem. True or false? A 3. 81-gram sample of nahco3 was completely decomposed in an experiment Which solutions would be appropriate for everyone in both low financial wellness groups? (multiple answers can be selected) In the xy-plane, the line determined by the points (2,k) and (k,32) passes through the origin. Which of the following could be a value of k?(A) 0(B) 4(C) 8(D) 16 Last year direct marketing had $122,222 in sales. This year direct marketing's sales are down by 9%. What are direct marketings sales this year please answer this question Please help I'm stuck on this question! worth 15+ points!! The open-ended activity requires you to develop a program on a topic that interests you. Requirements Formulate a question you would like to answer. Identify a data set that will help determine the answer to your question. Create a class to model one entry of the identified data set. Write a program with a main method to read the data from the identified data set into your program. Utilize an array or ArrayList and the created class to store data that has been read. Write code to process the data and determine an answer to the identified question. Review the provided scoring guidelines so that you understand what you will be expected to explain once you are done completing your program. Tip: When traversing multiple data structures simultaneously, structures might not be the same size and loop bounds must be adjusted to make sure that only locations that are valid in all structures are accessed Last year we tested 70 kids on Unit 8. This year we tested 20% less kids. How many kids did we test this year? how was general electric helpful at the time it was made? Suppose a triangle has sides 3, 4, and 6. Which of the following must be true? A. The triangle in question may or may not be a right triangle.B. The triangle in question is not a right triangle. C. The triangle in question is a right triangle. Traditionally, _____ focused mostly on how to preserve and stabilize, but these days it has moved over into areas like health, diversity, and sustainable production.nutritional biomesnouvelle cuisinefood engineeringfood science Use natural logarithms to solve the equation. Round to the nearest thousandth.7e3x 4 = 14 How can I tell the information in the passage Angie mixes 7 2/3 pints fruit juice and 3 1/4 pint sprite to make punch far a party. she has 6 pints left at the end of the party. How much punch did Angie serve at the party? In The Grapes of Wrath, which of the following inferences about the man is best supported by the second half of the excerpt?Question 8 options:a) He is very upset that Mae and Al are giving him fifteen cents worth of bread.b) He probably has a little more money than he initially led on.c) The real reason he came into the diner was to get candy for his boys.d) There is a good deal of riches and opportunity waiting for him in California. I WILL GIVE 20 POINTS TO THOSE WHO ANSWER THIS QUESTION RIGHT NOOOO SCAMS AND EXPLAIN WHY THAT IS THE ANSWER