Which part of the name of a document indicates the program that was used to edit it?

Answers

Answer 1

Answer:

extension

Explanation:

Answer 2

The extension is the part of the name of a document which helps in showing the program that was used for the edit.

The extension is simply a three letter word or sometimes four-letter abbreviation depending on the document.

Extension helps in showing the type of file. For example, different forms of extension are "docx", "pdf", "exe", "html" etc. They are useful as one can know the application that will be used in opening such files.

Read related link on:

https://brainly.com/question/16280230


Related Questions

please solve this,this is a scratch 2.0 question

The _______ shows the output of a script ?​

Answers

Answer:

Console

Explanation:

Not sure exactly what scratch 2.0 is but the console is a separate window that shows the script's outputs and in some cases collect inputs, show error messages or display other info depending on what compiler you used

I will give brainliest!!!!! I NEED HELP ASAP!!!!!!!

Answers

Answer:

c

Explanation:

What is the function of the NOS?

Answers

Answer:

A network operating system (NOS) is an operating system that manages network resources: essentially, an operating system that includes special functions for connecting computers and devices into a local area network (LAN

A network operating system (NOS) is an operating system that manages network resources: essentially, an operating system that includes special functions for connecting computers and devices into a local area network (LAN). The NOS manages multiple requests (inputs) concurrently and provides the security necessary in a multiuser environment.

PLEASE HELP WILL GIVE BRAINLIEST!!!’

What is a Path, and how do you know that it is filled and selected?
A Path is a series of (blank)
that you can join together. As you click a point in a curve, it changes color and becomes (blank).

Answers

Answer: What is a Path, and how do you know that it is filled and selected?

A Path is a series of curves that you can join together. As you click a point in a curve, it changes color and becomes black.

1. Write a method to measure sortedness of an array. The method header is:
2. Write an iterative method to measure sortedness of a collection of linked nodes. The method header is:
3. Write a recursive method to measure sortedness of a collection of linked nodes.
Document Preview:
Meetup Questions and ideas Write a method to measure sortedness of an array. The method header is: public static double sortedness(Comparable[] array) Write an iterative method to measure sortedness of a collection of linked nodes. The method header is: public static double sortednessIterative(Node node) Write a recursive method to measure sortedness of a collection of linked nodes. public static double sortednessIterative(Node node)

Answers

ㄴㄱㄷㅂㄷㅈ븟ㅈㅂㅈㅂㅈㄱㅅㄱㅈㅂㄷㅅㄷㅈㄱㅅㄱㅅㄴㅇㄴㅇㄴㅇㄴㅁㄴㅇㄴㅇㄴㅈㅂㅈㅂㅈㄱㅈㄴㅈㄴㄱㅆㅅㄱㅈㅂㄷㅅㅈㅂㅈㅅㄱ싲ㄱㅈㅂㄷㅂㅅㅇㄱㅇㄱㅅㅂㄷㅈㄱㅇㄱㅇㄱㄷㄱㅅㄱㅇㄱㄷㅈㄱㅇㅈㄱㅂㅈㅂㄷㅇㄷㅅㅆㄱㅇㄱㅅㅈㄱㅈㄱㅇㄱㅇㅂㅇㄱㅁㄱㅇㄱㅇㄱㅇㄱㅇㄱㅁㅋㅁㄱㅇㄱㅇㄱㅇㄱㄴㅁㄴㅇㄴㅇㄴㅇㄴㅇㄴㅇㄴㅇㄴㅇㄴㅁㄴㅇㄴㅇㄴㅅㄱㅈㄱㅈㅅ?...

QUESTION 4
Which of the following describes the Al/Machine Learning Process in the right sequence?
Problem Statement->Discovery->Learning->Deployment
Deployment->Discovery->Learning->Problem Statement
Learning->Discovery->Problem Statement->Deployment
Discovery->Problem Statement->Deployment->Learning
V​

Answers

Answer:

Deployment discovery learning problem statement

Create a class Car, which contains Three data members i.e. carName (of string type), ignition (of bool type), and currentSpeed (of integer type)
 A no-argument constructor to initialize all data members with default values
 A parameterized constructor to initialize all data members with user-defined values
 Three setter functions to set values for all data members individually
 Three getter function to get value of all data members individually
 A member function setSpeed( ) // takes integer argument for setting speed
Derive a class named Convertible that contains
 A data member top (of Boolean type)
 A no-argument constructor to assign default value as “false” to top
 A four argument constructor to assign values to all data-members i.e. carName, ignition, currentSpeed and top.
 A setter to set the top data member up
 A function named show() that displays all data member values of invoking object
Write a main() function that instantiates objects of Convertible class and test the functionality of all its member functions.

Answers

Answer:

Copy paste it.

Explanation:

#include <iostream>

#include <string>

using namespace std;

//Create a class Car, which contains • Three data members i.e. carName (of string type), ignition (of bool type), and //currentSpeed (of integer type)

class Car

{

public:

string carName;

bool ignition;

int currentSpeed;

//A no-argument constructor to initialize all data members with default values

//default value of string is "",bool is false,int is 0

Car()

{

carName="";

ignition=false;

currentSpeed=0;

}

//A parameterized constructor to initialize all data members with user-defined values

Car(string name,bool i,int speed)

{

carName=name;

ignition=i;

currentSpeed=speed;

}

//Three setter functions to set values for all data members individually

// Three getter function to get value of all data members individually

void setCarName(string s)

{

carName=s;

}

void setIgnition(bool ig)

{

ignition=ig;

}

void setCurrentSpeed(int speed)

{

currentSpeed=speed;

}

string getCarName()

{

return carName;

}

bool getIgnition()

{

return ignition;

}

int getCurrentSpeed()

{

return currentSpeed;

}

//A member function setSpeed( ) // takes integer argument for setting speed

void setSpeed(int sp1)

{

currentSpeed=sp1;

}

};

//Derive a class named Convertible

class Convertible:public Car

{

//A data member top (of Boolean type)

public:

bool top;

public:

//A no-argument constructor to assign default value as “false” to top

Convertible()

{

top=false;

}

//A four argument constructor to assign values to all data-members i.e. carName, ignition,

//currentSpeed and top.

Convertible(string n,bool i,int s,bool t):Car(n,i,s)

{

carName=n;

ignition=i;

currentSpeed=s;

top=t;

}

// A setter to set the top data member up

void setTop(bool t)

{

top=t;

}

//A function named show() that displays all data member values of invoking object

void show()

{

cout<<"Car name is:"<<carName<<endl;

cout<<"Ignition is: "<<ignition<<endl;

cout<<"Current Speed is :"<<currentSpeed<<endl;

cout<<"Top is:"<<top<<endl;

}

};

//main function

int main()

{

//creating object for Convertible class

Convertible c1("Audi",true,100,true);

c1.show();

c1.setCarName("Benz");

c1.setIgnition(true);

c1.setCurrentSpeed(80);

c1.setTop(true);

c1.show();

cout<<"Car Name is: "<<c1.getCarName()<<endl;

cout<<"Ignition is:"<<c1.getIgnition()<<endl;

cout<<"Current Speed is:"<<c1.getCurrentSpeed()<<endl;

return 0;

}

Human API refers to a:
A. moment in which many humans unexpectedly act the same.
B. set of instructions transferred between viewers and an artist.
C. collection of codes used for the communication of software.
D. humanlike android programmed to create artistic works.

Answers

Answer: C.

Explanation: Set of instructions transferred between viewers and an artist

Write a QBasic program to find the value Y for any value of X​

Answers

Answer:

The program in Qbasic is as follows:

INPUT X

Y = 2*X^2- 3

PRINT Y

END

Explanation:

The question is incomplete, as the expression to solve for y is not given.

So, I will make use of the following expression: [tex]y = 2x^2- 3[/tex]

The explanation is as follows:

This gets input for X

INPUT X

This calculates Y using the assumed expression. (Replace this line with the original expression)

Y = 2*X^2- 3

This prints Y

PRINT Y

This ends the program

END

There is something wrong with the arguments the function is getting; a precondition is violated​

Answers

Answer:

It indicates that either the argument is not corresponding to the perimeter or not returning the same as the variable or function. They arise a syntax error and Python parser is unable to understand a line of code.

Explanation:

What are the main components of a desktop PC and briefly describe their purposes.​

Answers

Answer:

8 Standard Computer Components and What They Do

Explanation:

Motherboard. The motherboard is an important computer component because it’s what everything else connects to!

Power Supply. True to its name, the power supply powers all other components of the machine.

Central Processing Unit (CPU)

Random-access Memory (RAM)

Hard Disk Drive / Solid State Drive.

Video Card.

Optical Drives.

Answer:

For main requirement you'll need

A CPU ( Central Processing Unit)

A GPU (Graphics Processing Unit)

Motherboard for your components to work and transfer data

PSU (Power Supply Unit) for your components to turn on

A RAM (Random Access Memory)

For others you need

Cooler it can be by air, an AIO (All in one water cooler) or an water cooler but water might have a chance of risk to cause shortage for you pc components of it's not secure

Fans for excessive heat and for airflow

A case to keep your components safe and secure

Monitor to see what's going on

Keyboard, mouse, headset, mic, cam

Write a python statement that print the number 1000

Answers

1.

print(1000)

2.

x = 600

y = 400

print(x + y)

Why should data be collected and analyze for evaluation?​

Answers

Answer:

During outcomes assessment, data can provide the basis for you and other stakeholders to identify and understand results and to determine if your project has accomplished its goals. Therefore, much care must go into the design of your data collection methods to assure accurate, credible and useful information.

IF SOMEONE HELPS ME BY ANSWERING I WILL BECOME FAMOUS AND SO WILL YOU
Select the correct answer. Which type of information may be useful? A. complete information B. summarized information C. contains opinions and observations of others D. contains historical data

Answers

Answer:

A

Explanation:

If complete information means it has evidence and data as well as information and observations then yes, that is your answer. If it does not, then D would be your answer

Please help ASAP!!! :))

Answers

Answer:

You can upgrade the OS by applying SECURITY patches to the server

Explanation:

I can't think of anything else it could be

To provide for unobtrusive validation, you can install the ____________________ package for unobtrusive validation.

Answers

Answer:

AspNet.ScriptManager.jQuery?

Explanation:

Unobtrusive validation means we can perform a simple client-side validation without writing a lot of validation code by adding suitable attributes and also by including the suitable script files.

One of the benefits of using a unobtrusive validation is that it help to reduce the amount of the Java script that is generated. We can install the AspNet.ScriptManager.jQuery? for the unobtrusive validation.

When the unobtrusive validation is used, validation of the client is being performed by using a JavaScript library.

Create a class Car, which contains Three data members i.e. carName (of string type), ignition (of bool type), and currentSpeed (of integer type)
 A no-argument constructor to initialize all data members with default values
 A parameterized constructor to initialize all data members with user-defined values
 Three setter functions to set values for all data members individually
 Three getter function to get value of all data members individually
 A member function setSpeed( ) // takes integer argument for setting speed
Derive a class named Convertible that contains
 A data member top (of Boolean type)
 A no-argument constructor to assign default value as “false” to top
 A four argument constructor to assign values to all data-members i.e. carName, ignition, currentSpeed and top.
 A setter to set the top data member up
 A function named show() that displays all data member values of invoking object
Write a main() function that instantiates objects of Convertible class and test the functionality of all its member functions.

Answers

Answer:

Here.

Explanation:

#include <iostream>

#include <string>

using namespace std;

//Create a class Car, which contains • Three data members i.e. carName (of string type), ignition (of bool type), and //currentSpeed (of integer type)

class Car

{

public:

string carName;

bool ignition;

int currentSpeed;

//A no-argument constructor to initialize all data members with default values

//default value of string is "",bool is false,int is 0

Car()

{

carName="";

ignition=false;

currentSpeed=0;

}

//A parameterized constructor to initialize all data members with user-defined values

Car(string name,bool i,int speed)

{

carName=name;

ignition=i;

currentSpeed=speed;

}

//Three setter functions to set values for all data members individually

// Three getter function to get value of all data members individually

void setCarName(string s)

{

carName=s;

}

void setIgnition(bool ig)

{

ignition=ig;

}

void setCurrentSpeed(int speed)

{

currentSpeed=speed;

}

string getCarName()

{

return carName;

}

bool getIgnition()

{

return ignition;

}

int getCurrentSpeed()

{

return currentSpeed;

}

//A member function setSpeed( ) // takes integer argument for setting speed

void setSpeed(int sp1)

{

currentSpeed=sp1;

}

};

//Derive a class named Convertible

class Convertible:public Car

{

//A data member top (of Boolean type)

public:

bool top;

public:

//A no-argument constructor to assign default value as “false” to top

Convertible()

{

top=false;

}

//A four argument constructor to assign values to all data-members i.e. carName, ignition,

//currentSpeed and top.

Convertible(string n,bool i,int s,bool t):Car(n,i,s)

{

carName=n;

ignition=i;

currentSpeed=s;

top=t;

}

// A setter to set the top data member up

void setTop(bool t)

{

top=t;

}

//A function named show() that displays all data member values of invoking object

void show()

{

cout<<"Car name is:"<<carName<<endl;

cout<<"Ignition is: "<<ignition<<endl;

cout<<"Current Speed is :"<<currentSpeed<<endl;

cout<<"Top is:"<<top<<endl;

}

};

//main function

int main()

{

//creating object for Convertible class

Convertible c1("Audi",true,100,true);

c1.show();

c1.setCarName("Benz");

c1.setIgnition(true);

c1.setCurrentSpeed(80);

c1.setTop(true);

c1.show();

cout<<"Car Name is: "<<c1.getCarName()<<endl;

cout<<"Ignition is:"<<c1.getIgnition()<<endl;

cout<<"Current Speed is:"<<c1.getCurrentSpeed()<<endl;

return 0;

}

The following are the program to the given question:

Program Explanation:

Defining the header file.Defining a class "Car", inside the three variables "carName, ignition, and currentSpeed" is declared that are "string, bool, and integer" types.Inside the class, "default and parameterized constructor" and get and set method has defined that set and returns the parameter values.Outside the class, another class "Convertible" (child) is declared that inherit the base class "Car".Inside the child class, "default and parameterized constructor" is defined, which inherits the base class constructor.In the child class parameterized constructor it takes four parameters, in which 3 are inherited from the base class and one is bool type that is "t".In this class, a method "setTop" is defined that sets the "t" variable value and defines a show method that prints the variable values.Outside the class, the Main method is defined that creating the child class object and calling the parameterized constructor and other methods to print its values.

Program:

#include <iostream>//header file

#include <string>

using namespace std;

class Car//defining a class Car

{

//defining a data members

public:

string carName;//defining string variable

bool ignition;//defining bool variable

int currentSpeed;//defining integer variable

Car()//defining default constructor

{

carName="";//initiliaze a space value in string variable

ignition=false;//initiliaze a bool value in bool variable

currentSpeed=0;//initiliaze an integer value into int variable

}

Car(string name,bool i,int speed)//defining parameterized constructor that holds value into the variable

{

carName=name;//holding value in carName variable

ignition=i;//holding value in ignition variable

currentSpeed=speed;//holding value in currentSpeed variable

}

void setCarName(string s)//defining a set method that takes parameter to set value into the variable

{

carName=s;//set value

}

void setIgnition(bool ig)//defining a set method that takes a parameter to set value into the variable

{

ignition=ig;//set value

}

void setCurrentSpeed(int speed)//defining a set method that takes a parameter to set value into the variable

{

currentSpeed=speed;//set value

}

string getCarName()//defining a get method that return input value

{

return carName;//return value

}

bool getIgnition()//defining a get method that return input value

{

return ignition;//return value

}

int getCurrentSpeed()//defining a get method that return input value

{

return currentSpeed;//return value

}

void setSpeed(int sp1)//defining a method setSpeed that holds parameter value

{

currentSpeed=sp1;//hold value in currentSpeed

}

};

class Convertible:public Car//defining a class currentSpeed that inherits Car class

{

public:

bool top;//defining bool variable

public:

Convertible()//defining default constructor

{

top=false;//holing bool value

}

Convertible(string n,bool i,int s,bool t):Car(n,i,s)//defining parameterized constructor Convertible that inherits base class parameterized constructor

{

carName=n;//holding value in string variable

ignition=i;//holding value in bool variable

currentSpeed=s;//holding value in integer variable

top=t;//holding value in bool variable

}

void setTop(bool t)//defining a method setTop that takes parameter to set bool value

{

top=t;//holding bool value

}

void show()//defining show method that prints variable value

{

cout<<"Car name is:"<<carName<<"\n";//prints value

cout<<"Ignition is: "<<ignition<<"\n";//prints value

cout<<"Current Speed is :"<<currentSpeed<<"\n";//prints value

cout<<"Top is:"<<top<<"\n";//prints value

}

};

int main()//defining a main method

{

Convertible cs("BMW",true,180,true);//creating the Convertible calss object that calls the parameterized constructor by accepting value into the parameter

cs.show();//calling method show

cs.setCarName("Benz");//calling the setCarName method

cs.setIgnition(true);//calling the setIgnition method

cs.setCurrentSpeed(160);//calling setCurrentSpeed method

cs.setTop(true);//calling setTop method

cs.show();//calling show method

cout<<"Car Name is: "<<cs.getCarName()<<"\n";//calling the getCarName method and print its value

cout<<"Ignition is:"<<cs.getIgnition()<<"\n";//calling the getIgnition method and print its value

cout<<"Current Speed is:"<<cs.getCurrentSpeed();//calling the getCurrentSpeed method and print its value

return 0;

}

Output:

Please find the attached file.

Learn more:

brainly.com/question/23313563

The maximum weight the box can possibly hold is 49 ounces. The scale at the checkout counter will weigh the box and calculate the price based on the weight. You want to write a Prolog program (rule) itemsByWeight(P, S, C, F, W) to find how many items of each kind are in the box according to the total weight W, where P, S, C and F are the numbers of Pizza slices, Salad bowls, Cupcakes, and Fries packs, respectively.

Answers

Answer:

A practical example is this definition of the square of a number, intended to be a function predicate: square(X,Y) :- Y is X * X.

Explanation:

ASAP BRAINLIEST!!!!!!
Line installers must complete a four-year university degree program in order to be hired.
O True
O False

Answers

Answer:

false plz mark brainliest

Answer:

oh yeah i saw something about this!!! YaY

Explanation:

TRUUEEE

it do be like that tho ​

Answers

What
....... .......
?

How has the shift to locally grown produce decreased greenhouse emissions?

Answers

Answer:

How has the shift to locally grown produce decreased greenhouse emissions? 1 Large farms often create greenhouse emissions by poor farming practices. 2 Locally grown produce allows fewer dangerous toxins to seep into the soil and the atmosphere.

ASAP BRAINLIEST!!!!
Interpersonal skills are not necessary for a telecom technician.
O False
O True

Answers

Answer:

false

Explanation:

edg2021

many times telecom technicians work in homes and with others and they need to be able to communicate to learn what the consumers want so he can do his job right.

State methods of minimizing dust in a computer laboratory.​

Answers

Answer:

well you could use a blower to remove dust in a computer laboratory

what is the different between compilers and interpreters?​

Answers

Compiler transforms code written in a high-level programming language into the machine code, at once, before program runs, whereas an Interpreter coverts each high-level program statement, one by one, into the machine code, during program run. Compiled code runs faster while interpreted code runs slower.

You wish to use your personal laptop computer at work. However, the IT department folks are unwilling to allow you. The likely reason is ______. a. you will use your laptop for non-work related activity b. your productivity could not be measured correctly c. your non-work related use of the laptop could increase vulnerability d. your activities could not be monitored

Answers

Answer:

B and C are the most likely options

i would probably pick C because if the IT department said no C is the option, otherwise if your boss said no it would be B.

Write a police description a person who know you well​

Answers

Answer:

I will be describing Jude. He is a neighbor.

Explanation:

A police description refers to the method of describing a person using high-level detailing. An example is given below:

He is a Five feet-three male caucasianWith brown eyes andan Australian accentHe has a military haircutAbout 38 yearsWeighs about 95Kgand dresses casuallyhe walks with a slant to the lefta dove tattoed at the back of his neckand a birthmark on his left ear lobe

Cheers

To extract detailed and comprehensive responses from your client, use the _____ questioning technique.

Pleeeeeeeeeease hellppppppp ASAP!!!:)

Answers

Answer:

I think it’s open ended question technique

Explanation:

but I would definitely change it if’s it wrong and I’m also sorry if it is

Answer:

what do you need To extract detailed and comprehensive responses from your client?

What is the engine for
?

Answers

<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3

Answer:

An engine or motor is a machine designed to convert one form of energy into mechanical energy. Heat engines convert heat into work via various thermodynamic processes.

<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3

Answer:

An engine or motor is a machine designed to convert one form of energy into mechanical energy.

Explanation:

How too create a slideshow

Answers

Answer:

Go to googole slides. com register your email and your all done.

Answer:

go;ogle slides

Explain:

You make a slide show then you press present

What would be the best tool to display the following information from a basketball game?
Eric had 21 points, 3 rebounds, and 1 assist
Sean had 10 points, 1 rebound, and 10 assists
Jim had 8 points, 3 rebounds, and 5 assists

A.table
B.memo
C.research paper
D.business letter

Answers

A table. Hope this helps friend
Other Questions
The true lending act requires credit card companies to: The emergence, growth, and extinction of a large clade, such as the dinosaurs, is an example of a Choose... pattern. This pattern includes Choose... extinction, which tends not to disturb ecosystems, as well as Choose... extinction, in which ecosystems change drastically. Hammerstein Corporation offers a variety of share-based compensation plans to employees. Under its restricted stock award plan, the company, on January 1, 2021, granted 2 million of its $1 par common shares to various division managers. The shares are subject to forfeiture if employment is terminated within four years. The common shares have a market price of $20.8 per share on the award date. Required: 1. Determine the total compensation cost from these restricted shares. 2. Please help me with this, will give out brainlist 4 thirds divided by 2 fifths Replace the underlined words with the appropriate interrogative pronoun.Quel livre prfres-tu?O LaquelleO AuquelO DuquelO Lequel What is the area, in square feet, of the shape below? Question is in the Picture.ABCD What means of nonverbal communication can medical assistants use to help overcome language barriers? What do you think about the Black Lives Matter movement? What is the common denominator of 7/8 and 5/6 IN SPANISH How do you find the area with 3.14 Im so confused PLEASE HELP!!! Technological innovation continues to change the world. Discuss one technological innovation that you feel has changed the world. In one paragraph, define the technological innovation and explain how it has prompted change. Support your opinion with evidence in the form of reasons and specific examples. Identify an example of an obstacle to the success of global information system. a.An organization might be unable to develop products that appeal to customers in all countries. b.An organization might have the resources to implement a worldwide integrated system but not be able to change an existing telecommunication infrastructure. c.An organization might use training and education to train analysts. d.An organization might adjust content on their Web site to address cultural differences in different countries. Determine the value of xin this polygon.(6x + 3)(x + 12.5)(2x + 8) Alicia just got a new job and will need to file taxes this year. During this yearshe gave birth to a little girl, borrowed $1,000 from her best friend, gave hermother $500 to help pay some bills, and bought her younger cousin a pair ofshoes. Which one of these people could Alicia claim as a dependent?O A. Her motherO B. Her best friend C. Her younger cousinD. Her daughter HELP PLSSSSSSSSSSSSSSSSSSSS A trapezoid has a base of 12 inches and 50inches. The height of the trapezoid is 21inches. What is the area of the trapezoid? 38. Evaluate the expression below for x = 4 6(x + 7)A 24 B 31 C 42 D 66 Before the Constitution was even written, two parties emerged vying for a direction for America. Name them and their characteristics.The Federalists wanted a strong Federal government, and the Republicans wanted freer electionsThe Anti-Federalist were against a strong government, and the Whigs wanted States to have more powerThe Whigs wanted a standing militia, and the Federalists wanted a Federal Reserve.The Federalists wanted a strong centralized government, and the Anti-Federalist wanted to restrict the Federal government and give states more freedoms and legal control.