Answer:
"A graphics package is an application that can be used to create and manipulate images on a computer. There are two main types of graphics package: painting packages."
Explanation:
i looked it up like a normal person
jeez does nobody use google on here lol
Answer: ??
Explanation: explain to her that you don't have your own. keep asking and convince her you're doing good in school, (if u are) and that you listen and you should be responsible to have your own
Explanation:
Every Samsung is an example of an Android but not every android is an example of a Samsung. Androids are all phones or devices that are not made by Apple.
Answer:
The answer to the given question in the option "a".
Explanation:
In the given c++ program the correct sets value of x and y is option a:
void dClass::setXY(int a, int b) //function implementation
{ //function body.
x = bClass.setX(a); //variable x hold value of setX() function.
b = y; //variable b holds value of y.
}
And other option are not correct that can be described as:
- In option b, x is private variable of the base class that is inherit by the derived class but variable y is not part of the base class. that's why it is wrong.
- In option c, x= a is correct but y=b is not correct. that's why it is wrong.
- In option d we access the value of the private variable x that is a part of the base class but in this we not use any variable that holds its value. that's why it is wrong.
So the answer to this question is the option "a".