Write any two uses of the paint program

Answers

Answer 1

Image reformatting - For instance, modifying a GIF to a JPEG. Drawing shapes. Resize and rotate images. Basic image editing such as red eye and difference

A paintbrush is utilized for drawing, coloring, and editing the pictures. We can use Paint Brush like a digital sketchpad to make straightforward pictures. Files created in Paint Brush are saved as bitmap files.

What are the main features of the paint program?

Features contained in the paint are pencil, brush and airbrush tool. The capability to add text, lines and shapes. Also contained are an eraser, magnifier, and fill colour tools.

What is the use of paint program?

A paint program is a software pictures program that allows the user to draw, color, or paint bitmapped images on a computer. Though most are finished, examples include: KolourPaint, XPaint, Deluxe Paint, MacPaint, and Microsoft Paint, which is displayed in the picture

To learn more about paint program, refer

https://brainly.com/question/1407666

#SPJ9


Related Questions

JAVA -Develop a program that prompts the user to enter a series of 10 integers and then determines and displays the largest and smallest values entered. The solution must use at least these following variables:

counter -a counter to count how many integers were entered
number -the integer most recently input by the user
smallest -the smallest number entered so far
largest -the largest number entered so far

Write three separate programs in JAVA , the first using a while construct, the second using a for construct, and the third using a do while construct. Thank you so much!

Answers

Using the knowledge in computational language in JAVA it is possible to write a code that enter a series of 10 integers and then determines and displays the largest and smallest values entered.

Writting the code in JAVA:

public class OddEvenSum {  // Save as "OddEvenSum.java"

  public static void main(String[] args) {

    // Declare variables

     final int LOWERBOUND = 1;

     final int UPPERBOUND = 1000;  // Define the bounds

     int sumOdd  = 0;    // For accumulating odd numbers, init to 0

     int sumEven = 0;    // For accumulating even numbers, init to 0

     int absDiff;        // Absolute difference between the two sums

     // Use a while loop to accumulate the sums from LOWERBOUND to UPPERBOUND

     int number = LOWERBOUND;   // loop init

     while (number <= UPPERBOUND) {  // loop test

           // number = LOWERBOUND, LOWERBOUND+1, LOWERBOUND+1, ..., UPPERBOUND

        // A if-then-else decision

        if (number % 2 == 0) {  // Even number

           sumEven += number;   // Same as sumEven = sumEven + number

        } else {                // Odd number

           sumOdd += number;    // Same as sumOdd = sumOdd + number

        }

        ++number;  // loop update for next number

     }

     // Another if-then-else Decision

     if (sumOdd > sumEven) {

        absDiff = sumOdd - sumEven;

     } else {

        absDiff = sumEven - sumOdd;

     }

     // OR using one liner conditional expression

     //absDiff = (sumOdd > sumEven) ? sumOdd - sumEven : sumEven - sumOdd;

     // Print the results

     System.out.println("The sum of odd numbers from " + LOWERBOUND + " to " + UPPERBOUND + " is: " + sumOdd);

     System.out.println("The sum of even numbers from " + LOWERBOUND + " to " + UPPERBOUND + " is: " + sumEven);

     System.out.println("The absolute difference between the two sums is: " + absDiff);

  }

}

See more about JAVA at brainly.com/question/12975450

#SPJ1

What is the difference between the as-is process model and the to-be process model?

Answers

AS-IS and TO-BE are phases of BPM (Business Process Management), which allow promoting the improvement of business processes. Therefore, there are two moments: the AS-IS and the TO-BE.

AS-IS is the view of an organization's current processes, which shows how a company performs its activities at a given time. It is common for the term AS-IS to be used synonymously for process analysis.

In AS-IS process analysis, processes are discovered and analyzed. It is time for exploration to create a common vision of the ruptures and deviations in the process.

AS-IS helps in discovering various types of business processes, whether they are primary processes, support processes or management processes.

TO-BE is the vision of an organization's future processes, which shows the best way to carry out the process. TO-BE is also called process design. Its objective is to propose improvements in the organizations' processes, based on what was verified in the AS-IS.

The design of TO-BE processes involves defining the workflow, roles and responsibilities, technologies required for the process, data sources and moments of integration with other processes. The great achievement of TO-BE is to promote real conditions of transformation in processes, improving the organization's competitiveness.

See more about computing at: brainly.com/question/1394311

#SPJ1

Can traps be generated intentionally by a user program? if so, for what purpose?

Answers

Traps be generated intentionally by a user program and It  is one that can be used in the act of call operating system routines or it is one that is used to catch arithmetic errors.

Can a user program cause a trap?

A trap is known to be one that can be used to be able to make or one that is gotten if a user program create a definite service request via the use of the OS.

Note that  Traps are known to be a kind of synchronous events as to the fact that the passing of the present instructions are said to be very likely leads to traps.

Hence, Traps be generated intentionally by a user program and It  is one that can be used in the act of call operating system routines or it is one that is used to catch arithmetic errors.

Learn more about program from

https://brainly.com/question/1538272

#SPJ1

Which ntfs feature allows an administrator to track how much data is used on the file system by a user and potentially apply storage limits?

Answers

The NTFS feature that allows an administrator to track how much data is used on the file system by a user and potentially apply storage limits is Disk quotas.

What is Disk Quotas used for?

This refers to the feature in an NTFS system that allows to track how much data is used on the file system by a user and potentially apply storage limits.

Hence, we can see that based on the given question, the NTFS feature that allows an administrator to track how much data is used on the file system by a user and potentially apply storage limits is Disk quotas.

This helps to allocate space limits to each sector so that the data can be easily tracked and this is an important NTFS feature.

Read more about NTFS here:

https://brainly.com/question/14178838

#SPJ1

Ben wants to implement a Redundant Array of Independent (RAID) array that combines both read and write performance while retaining data integrity if a drive fails. Cost is not a concern compared to speed and resilience. What RAID type should he use

Answers

Ben wants to implement a Redundant Array of Independent (RAID) array that combines both read and write performance while retaining data integrity if a drive fails. Cost is not a concern compared to speed and resilience. the Raid type is RAID 10. Option D.

This is further explained below.

What is a Redundant Array of Independent?

Generally, RAID, which stands for "redundant arrays of independent disks," is a method of information storing that makes use of numerous hard disk drives in order to save data.

In conclusion, Combining the advantages and drawbacks of RAID 0 striping with those of RAID 1 mirroring, RAID 10 (1+0) is a hybrid solution. Striped disks with complete copies preserved through the mirror are the best solution for Ben's use case, where speed and robustness are critical and the cost is not. Even if their performance is lessening, RAID 5 and RAID 6 are more resilient in the event of a disk failure. Redundancy and read speeds are provided by RAID 1 but write speeds remain unchanged.

Read more about Redundant Array of Independent

https://brainly.com/question/14599303

#SPJ1

CQ

Ben wants to implement a RAID array that combines both read and write performance while retaining data integrity if a drive fails. Cost is not a concern compared to speed and resilience. What RAID type should he use?

A. RAID 1

B. RAID 5

C. RAID 6

D. RAID 10

which technologies are currently used in health ​

Answers

1. Portable Monitors. ...
2. Smart Beds. ...
3. Wearable Devices. ...
4. Electronic Health Records. ...
5. Centralized Command Centers. ...
6. Telehealth and Apps.

Traditional methods of collecting systems requirements include: a. rapid application development. b. prototyping. c. interviews. d. joint application design. e. agile methodologies.

Answers

Answer:

interviews

Explanation:

because the designer gets to directly interact with the customer who knows exactly what they want.

Cloud suites are stored at a(n) ________ on the internet, rather than on your microcomputer. group of answer choices blog site macrocomputer pod site server

Answers

Cloud suites are stored at a(n)  server on the internet, rather than on your microcomputer.

What is server?

The word server is known to be a kind of a network computer, computer program, or one can say that it is a kind of a device that is known to often helps to processes or work on requests from a client (such as client-server architecture).

Note that On the World Wide Web, for example, a Web server is  known to be a kind of a computer that makes use of the HTTP protocol to be able to transmit or send Web pages to a client's computer if the client requests is said to be made to them.

Hence, Cloud suites are stored at a(n)  server on the internet, rather than on your microcomputer.

Learn more about Cloud suites from

https://brainly.com/question/27878893

#SPJ1

Answer:

sever

Explanation: i took the test and got it right!

You are planning to depart on a flight from area 2 to area 4 in 12 hours. What weather is forecast to occur along your route?

Answers

It depends on where you live!

The __________________ family of amd processors has processors that run up to 3.2 ghz, have up to 6 cores, and use the am3 socket.

Answers

Answer:

anthlon or fx processors

This is an error identified by the compiler.
a. syntax error
b. logic error
c. debugging error
d. black box testing error

Answers

Explanation:

When developing programs there are three types of error that can occur: syntax errors. logic errors. runtime errors.

Describe server processing of a post request. in the case of cgi processing, how does the server pass information to a cgi program (request headers, body, url parameters, etc. )?

Answers

CGI is the part of the Web server that can communicate with other programs running on the server.

What is The Common Gateway Interface?

The Common Gateway Interface (CGI) provides middleware between WWW servers and external databases and information sources. The World Wide Web Consortium (W3C) defined the Common Gateway Interface (CGI) and also defined how a program interacts with an HTTP (Hyper Text Transfer Protocol) server.

The body of the message is sent to the CGI program by the server through the stanard input pipe. Using the value of content_length, which indicates the length of the body, the CGI program can parse the input and obtain the values of the data entered by the user.

See more about CGI at brainly.com/question/12972374

#SPJ1

Avicenna is smart software being developed by ibm that will be used to assist radiologists with interpreting medical images such as?

Answers

Avicenna is smart software being developed by ibm that will be used to assist radiologists with interpreting medical images such as CT Scans.

What can be detected by CT scan?

The ailment or disease that a CT scan can find are :

Some types of cancer and  tumors.Fractures such as (broken bones).Heart disease.

Note that a computerized tomography (CT) scan is known to be one that makes use of both a series of X-ray images that are known to be obtained from a lot of angles around a person's body and  ti is known to also uses computer processing to make cross-sectional images (slices) of the bones, blood vessels and others.

Therefore,  CT scan images gives a kind of a more-detailed information than just X-rays  and as such, Avicenna is smart software being developed by ibm that will be used to assist radiologists with interpreting medical images such as CT Scans.

Learn more about software from

https://brainly.com/question/1538272

#SPJ1

In an advertisement, a speed specification, such as 2.66 ghz, indicates the speed of the microprocessor?

Answers

Answer:

yes / true

Explanation:

it is one of the factors in determining the speed of the microprocessor

In an advertisement, a speed specification, such as 2.66 Ghz, indicates the speed of the microprocessor, this statement is true.

What is Microprocessor?  

Microprocessors are a kind of small electronic devices that have the arithmetic, logic, and control circuitry required to carry out the tasks of a central processing unit in a digital computer.

Based on the instructions kept in the memory, a microprocessor accepts binary data as input, processes it, and then outputs the results. The microprocessor's ALU (arithmetical and logical unit), control unit, and register array are used to process the data.

Through a collection of registers that serve as temporary fast-access memory locations, the register array processes the data. The control unit regulates how data and instructions move through the system.

Hence, In an advertisement, a speed specification, such as 2.66 Ghz, indicates the speed of the microprocessor

To know more about Microprocessor follow the link.

https://brainly.com/question/14708869

#SPJ5

Bob is making a short film for an international film festival. he wants to store audio, video, and subtitle files together in a single file. which file format should he use to store such a video?

Answers

MOV stands for the file format should he utilize to store such a video, As Bob is creating a short film for an international film festival. He desires to store audio, video, and subtitle files together in a single file. Hence, choice A is correct.

What is MOV?

The brevity of a short film exists in what creates it and what it stands for. Although they range in length, purpose, and genre, they all desire to do the same things: save money corresponded to a feature film, increase professional attention, and practice telling shorter, more attentive stories before moving on to feature films.

A short film stands typically defined as a movie that is up to 50 minutes long, while there exists no set length need in Hollywood. That stated, the typical duration exists 20 minutes. A short movie may be computer-animated, or both.

MOV stands for a video format that was created by Apple. It's a MPEG 4 video container file that exists primarily utilized with Apple's QuickTime program. A MOV video can hold many various video formats and multimedia audio, video, and text — in the same file on separate tracks.

MOV stands for the file format should he utilize to store such a video, As Bob is creating a short film for an international film festival. He desires to store audio, video, and subtitle files together in a single file. Hence, choice A is correct.

To learn more about file format refer to:

https://brainly.com/question/24102638

#SPJ4

Which is a type of artificial neural network (ann) that includes many layers to deal with complex problems that may have very large data sets?

Answers

Answer:

Deep Learning

Explanation:

The kind of artificial neural network (ann) that includes many layers to deal with complex problems that may have very large data sets is called a Deep neural network.

What is an artificial neural network?

Artificial neural networks, more commonly referred to as neural networks or neural nets, are computer architectures that draw inspiration from the biological neural networks seen in animal brains.

Artificial neurons, which are a set of interconnected units or nodes that loosely resemble the neurons in a biological brain, are the foundation of an ANN.

Deep Learning is a type of artificial neural network (ann) that has several layers to handle complicated issues that may have very big data sets. Deep neural networks use advanced math modeling to interpret input in complicated ways.

Learn more about artificial neural networks here:

https://brainly.com/question/19537503

#SPJ2

Complete the table???

Answers

Answer:

2.blending mixing, milkshake

3.boiling cooking,tea

Examples of mobile device synchronization methods for apple ios devices include:__________

Answers

Answer: iTunes and iCloud
Explanation: These 2 synchronization Apple devices use.

To open a folder on the desktop using a mouse, you should place the pointer of the mouse over the target object and do what action?.

Answers

To open a folder on the desktop using a mouse, you should place the pointer of the mouse over the target object and  double click , in rapid succession, using the left mouse button.

Which mouse pointer will open the file folder?

When a person is known to be using Windows 10 or an older version of any given Windows, a person can be able to open files and folders through the act of double-clicking on them.

Note that based on the above, if a person can alter this behavior to open files using a single click ( that is the mouse is used by double-clicking on a single click).

Therefore, based on the above, To open a folder on the desktop using a mouse, you should place the pointer of the mouse over the target object and  double click , in rapid succession, using the left mouse button.

Learn more about mouse from

https://brainly.com/question/10847782

#SPJ1

how to set horizontal text alignment​

Answers

This is a very vague question, but for HTML coding, a horizontal text alignment (or center alignment, which is what I thought you might’ve meant?) would be coded as such:

[Insert text here.]

Apologies if this is not the answer you wanted. This is just a very vague question.

in which computer is invented

Answers

Computer  was known to be invented   by a man known as Charles Babbage and in the year  (1822) but it was said to be built in 1991.

Check more about computer below.

What are the Name of the inventors and the inventions of early computer machines?

The early computer machines are known to be mad up of a  difference engine that was said to have been invented by Charles Babbage in the the year around mid-1800s.

Note that in 1890, a man known as Herman Hollerith was known to have made a punched card machine to be able to process census data.

Hence, Computer  was known to be invented   by a man known as Charles Babbage and in the year  (1822) but it was said to be built in 1991.

Learn more about computer  from

https://brainly.com/question/24540334

#SPJ1

What are the steps required to teach a dog the care (aka wellness check) command?

Answers

The steps required to teach a dog the care (aka wellness check) command is given below

What are the steps required to teach a dog command?

The ways to Teach Your Dog are:

Instruct the dog to  sit. then teach your dog the command Make the dog aware of the treat.Do Give a reward. Increase the level of difficulty.Implement the care command. Remove the treat. Then Switch hands.

What is Wellness check?

In the United State, a wellness check is known to be a kind of an in-person visit that is often made in response to a request from a friend or family member who is known to be concerned about the person's state  of mental health and in this case the dog.

Learn more about wellness check from

https://brainly.com/question/875455

#SPJ1

Why might contracting with multiple ISPs still fail to provide highly available Internet access infrastructure?

Answers

The act of contracting with multiple ISPs still fail to provide highly available Internet access infrastructure because it is still using the same level of ISPs.

What is multiple ISP?

This is known to be a kind of a routers that gives room for a user or a person to be able to have an Internet connection sing or from two different kinds of ISPs.

Note that by so doing, if one is known to fails, a user can still have access to the other.

Note also that a person can be able to configure the first connection as the main one or the primary and the other is known to be used as a backup connection.

Therefore, The act of contracting with multiple ISPs still fail to provide highly available Internet access infrastructure because it is still using the same level or type of ISPs.

Learn more about ISPs  from

https://brainly.com/question/27118899

#SPJ1

What uses techniques that create models indicating the best decision to make or course of action to take?
a. predictive analytics
b. descriptive analytics
c. prescriptive analytics

Answers

Prescriptive Analytics uses techniques that create models indicating the best decision to make or course of action to take.

What is Prescriptive Analytics?

Prescriptive Analytics is an approach used to analyze and examine collected information by raising how to use these data at an advanced level.

This type of analytic approach (Prescriptive Analytics) may be very useful in different fields and applications such as, for example, in pharmaceutical settings in order to discover how a compound may alter a given signaling pathway.

In conclusion, Prescriptive Analytics uses techniques that create models indicating the best decision to make or course of action to take.

Learn more about Prescriptive Analytics here:

https://brainly.com/question/18484504

#SPJ1

which things computer case contains

Answers

Inside the case are the components that make up the computer itself, such as the RAM memories, the processor and the hard disk, all of which are directly or indirectly connected to the motherboard. In addition, the case allocates the power suplly, which is responsible for supplying power to the computer.

What is a computer case?

The case is the hardware component used to house most parts of a computer. It is inside it that components such as CPU, motherboard, SSD, video card and power supply are placed.

In addition, it is where the outputs for connections to other equipment are found, such as USB and HDMI outputs, plug for sound box and microphone and input for memory card.

The case has the important function of protecting the internal components of a computer from knocks, heat, light, moisture and dust. That's because most of the electronic components inside a computer are very sensitive and need this protection.

It is also used to connect to other hardware components, such as a monitor, keyboard, mouse and headset, through the various outputs provided on its exterior.

See more about computing at: brainly.com/question/15707178

#SPJ1

What is the best to calculate units total treatment time for day, remembering the total treatment time constrains the number of units to be billed?

Answers

The best time to calculate units total treatment time for day, remembering the total treatment time constrains the number of units to be billed is;

Total treatment time for the day - total event or service-based units of the day= total time for time-based units.

What is Time Constraint?

The term time Constraint is known to be a word that connote or that defines some factors that hinders a projects in regards to time.

Note that this is made up of deadlines, workload management, and others such as resource allocation. a person  that has worked on a project is one that needs to deal with some constraints when it came to project execution.

Hence, The best time to calculate units total treatment time for day, remembering the total treatment time constrains the number of units to be billed is;

Total treatment time for the day - total event or service-based units of the day= total time for time-based units.

Learn more about time constrains from

https://brainly.com/question/6073946

#SPJ1

In what medium do web applications operate?

Answers

Answer

web browser

Explanation:

Web applications primarily operate on the World Wide Web, which is a global network of interconnected computers and servers that use the HTTP (Hypertext Transfer Protocol) protocol for communication.

How to access Web applications

Web applications are accessed by users through web browsers such as Go/ogle Chrome, Moz/illa Firefox, or Micr/osoft Edge.

The core components of a web application typically reside on a web server, which hosts the application's logic, data, and files. When a user interacts with a web application through their browser, the browser sends HTTP requests to the web server, which processes those requests and returns HTML, CSS, JavaScript, and other resources that make up the web application's user interface.

Web applications can also use various backend technologies such as programming languages (e.g., Python, Ruby, Java) and frameworks (e.g., Django, Ruby on Rails, Spring) to handle server-side operations, interact with databases, and provide dynamic functionality.

Learn more about web applications at

https://brainly.com/question/28302966

#SPJ2

If the cpu is fast but the bus speed is slow, that condition is called?

Answers

A slow processors but the need more bytes

A threat vector is an item of code on a distributed device that reports the condition of the device to a central server.
a. true
b. false

Answers

Answer:

A threat vector is an item of code on a distributed device that reports the condition of the device to a central server.

a. true

It is true that a threat vector is an item of code on a distributed device that reports the condition of the device to a central server. The correct option is a.

What is a threat vector?

The total number of attack vectors that an attacker can use to manipulate a network or computer system or extract data is referred to as the attack surface.

Threat vector and attack vector are interchangeable terms that describe the various ways a hacker can gain access to data or other confidential information.

The methods used by adversaries to breach or infiltrate your network are referred to as attack vectors.

Malware and ransomware, as well as man-in-the-middle attacks, compromised credentials, and phishing, are all examples of attack vectors.

A threat vector is a piece of code on a distributed device that reports the device's status to a central server.

Thus, the correct option is a.

For more details regarding a threat vector, visit:

https://brainly.com/question/28558110

#SPJ2

To dynamically change a reference line using parameter action, you first create a reference parameter. next, add a parameter action for it. Finally?

Answers

In order to dynamically change a reference line using parameter action, you first create a reference parameter. Next, add a parameter action for it. Finally, A. add a reference line whose value follows a reference parameter.

What is a function parameter?

A function parameter can be defined as a special kind of variable which is used in a function to point to a data that is provided as an input (reference) into the function.

This ultimately implies that, a software program that is coded by a software developer or programmer to include a function parameter is generally capable of passing data to a function as an input, whenever it is called.

In this context, we can infer and logically deduce that software developer or programmer must first create a reference parameter and then add a parameter action for it in order to dynamically change a reference line by using parameter action.

Finally, the software developer or programmer should add a reference line with its value following a reference parameter.

Read more on function parameter here: https://brainly.com/question/24223153

#SPJ1

Complete Question:

To dynamically change a reference line using parameter action, you first create a reference parameter. Next, add a parameter action for it. Finally, _____.

a. add a reference line whose value follows a reference parameter.

b. add the sheet you want to control as the bottom-right element in the layout.

c. also add a URL action that points to the dashboard itself.

d. add a reference line with a per pane scope and a tooltip.

Other Questions
2.) A shop sells oranges at 6 for N100. A trader sells the same kind of oranges at 8 for N120.Which price is cheaper, by how much per orange? A transverse mechanical wave is traveling along a string lying along the x-axis. The displacement of the string as a function of position and time, y(x,t), is described by the following equation:[tex]y(x,t)=0.0480[/tex][tex]sin(5.40x-128t)[/tex]where x and y are in meters and the time is in seconds.1. What is the wavelength of the wave?2. What is the velocity of the wave? (Define positive velocity along the positive x-axis.)3. What is the maximum speed in the y-direction of any piece of the string? (Give a positive answer for speed.) Help pls this aint physics. Public goods are a. excludable, do people have an incentive to be free riders. bnot excludable, do people do not have an incentive to be free riders. c. excludable, so people do not have an incentive to be free riders. d. not excludable, so people have an incentive to be free riders. Leo Twiggs paintings dealt with ______ of the South.A. RacismB. FoodC. Nature In a certain company, there were five candidates running for President. After the vots were tallied, it turned out that Victor, like in the election, finished in thir place, and david beat him. Greg said that he didn't come in first, but he also didn't come in last. Mac in an interview, said that in this election he wasn't able to win, but at least he was one place hight than his old rival Bill. What place did each candidate come in? Which of the following wasMOST responsible for theturn-around in water qualityin Lake Washington?A. adding additional fertilizers to the lakeB. adding excess pollutants to the lakeC. regulations on sewage treatmentD. addition of pollution-eating bacteria A hole in the skin caused platelets to rush to the site and release a chemical that releases more platelets. This is an example of what type of mechanism The function f(x) is shown in the graphf(a)Which type of function describes ((x)? ExponentialO LogarithmicO RationalO Polynomial Pls need help 100 points and crown if right!!!Marlene only has enough ingredients to make a 1/3 batch of cookies. For the smaller batch, she only needs 3/4 cup of sugar. How much sugar does the recipe for a full batch of cookies call for? Include all your work in your answer. The dialogue of a square is X units what is the area of the square in terms of X Question 5 of 12 A young father would like a life insurance policy to provide coverage for all five family members at the lowest cost. Which type of policy would he most likely buy? Donna has a $300 loan through the bank she is charged a simple rate The total interest she paid on the loan was $63 As a percentage what was the annual interest rate on her loan WILL VOTE BRAINLIEST TO THE FIRST CORRECT ANSWER From several accounts, the greatest cause of exercise-related death among young athletes is_________. The French were convinced to support the American war against the British after the Americans won the Battle ofTrenton. Given the reaction:Fe3+(yellow) + SCN-(colorless) [FeSCN]2+(dark red)If Fe3+ is added to the solution:Group of answer choicesA. No changes in color occurB. The solution turns darker redC. The solution becomes colorlessD. The solution becomes more yellow Severe mental or physical impairment may prevent a person from even being able to manifest consent in which case the contract is? The force required to prevent the movement of water across a selectively permeable membrane is __________ pressure If two identifiable markets differ with respect to their price elasticity of demand and resale is impossible, a firm with market power will______.