Answer:
The following Window class are given below:
class Window // define a class Window
{
private: //access modifier
int width, height; // integer type variable which is width and height
public: //access modifier
Window(int w,int h) //constructor that accepts two integer parameters
{
width = w;
height = h;
}
friend bool areSameSize(Window a, Window b)
{
if ((a.height == b.height) && (a.width == b.width))
return true;
else return false;
}
};
Explanation:
According to the question: Firstly we have define a class which name is 'Window' and then we take two integer type data member and after that we have constructor that takes two integer type parameters and after all we have a areSameSize, friend function, which can take two objects and then it give output in the form of true or false, if they are the equal size and finally we check that if the width and the height match then it returns the true and else it returns the false
Answer:
Portable Network Graphics is the correct answer of this question.
Explanation:
Portable Network Graphics i is the graphics formats which we use for comic-style drawing Portable Network Graphics is a media structure that is used to compress digital video objects. Portable Network Graphics almost completely overtaken the Graphics Merge Standard (GIF),which has been commonly used during the history.
<u>For example</u>:- Portable Network Graphics images use lossless compression like GIF files.
- It has an indexed color raster image and is optimized with a data compression comparable to a GIF file.
- Portable Network Graphics files are widely used to store opaque background Web graphics, digital photographs and images.
Answer: Phantom Forces... I think that is what it is called...
There are different kinds of software. Requirement Gathering and also designing is another stage where it would be useful to follow the software development life cycle.
<h3>Why is important to know the software development life cycle?</h3>
The software development life cycle is said to be one that increase the value to software development as it helps to give an efficient structure and method to create software applications.
Windows operating systems is the one I would recommend to them as it is much easier to operate than other types.
The three different software applications that you have used mostly are Electronic Health Record (EHR) Software, Medical database software and Medical imaging software. They are often used in the healthcare system on daily basis.
Event-driven programming software is the often used in graphical user interfaces and other kinds of system applications such as JavaScript web applications. They are based on carrying out some task in response to user input.
Companies can make customer support a more better by actively to them especially their complains and make sure it is handled immediate. They should also list out the cases of high priority and work on them.
Learn more about Developing software from
brainly.com/question/22654163