Answer:
It's not good in reality to touch the Chromebook's screen with your finger, a pencil, a pen or anything like your thumb. They might start looking blurred or if you touch them very hard then they might crack as well. If this happens, report to the authorized store immediately, and if warranty prevails you will get it repaired at no extra cost. However, take this as a warning, and keep in mind the precautions mentioned in the explanation.
Explanation:
Never put extra pressure on the Chromebook screen, and even when it is not open.
Always store it in a closed position.
Always keep the things that can put pressure away from your Chromebook.
Never poke your screen with something that put a mark or a kind of scratch on the surface of the screen.
Never ever, place something on the keyboard like pens, disks or pencils prior to shutting the lid.
Microsoft certification is a series of programs that provide certification of competence in Microsoft products.
B. Lossy compression algorithms are typically better than lossless compression algorithms at reducing the number of bits needed to represent a piece of data.
Answer:
true
Explanation:
because collaborative devices are made to make work much productive and easier within a group. it's true since the following statements can result to productivity
Answer:
The program in C++ is as follows:
#include <iostream>
using namespace std;
int main(){
int qty;
float discount = 0;
cout<<"Quantity: ";
cin>>qty;
int cost = qty * 100;
{
; }
cout<<"Cost: "<<cost - discount;
return 0;
}
Explanation:
This declares the quantity as integer
int qty;
This declares and initializes discount to 0
float discount = 0;
This prompts the user for quantity
cout<<"Quantity: ";
This gets input for quantity
cin>>qty;
This calculates the cost
int cost = qty * 100;
If cost is above 1000, a discount of 10% is calculated
{
; }
This prints the cost
cout<<"Cost: "<<cost - discount;