Answer: To adjust the spacing between characters that make up a word
Explanation: Kerning refers to the way spacing between two specific characters is adjusted. The idea is to give a better looking result by reducing the spacing between characters that fit together nicely (such as "A" and "V") and increasing the spacing between characters that don't. Select the text that you want to change.
Answer:
Step by step explanation along with code and output is provided below
Explanation:
#include<iostream>
using namespace std;
// print_seconds function that takes three input arguments hours, mints, and seconds. There are 60*60=3600 seconds in one hour and 60 seconds in a minute. Total seconds will be addition of these three
void print_seconds(int hours, int mints, int seconds)
{
int total_seconds= hours*3600 + mints*60 + seconds;
cout<<"Total seconds are: "<<total_seconds<<endl;
}
// test code
// user inputs hours, minutes and seconds and can also leave any of them by entering 0 that will not effect the program. Then function print_seconds is called to calculate and print the total seconds.
int main()
{
int h,m,s;
cout<<"enter hours if any or enter 0"<<endl;
cin>>h;
cout<<"enter mints if any or enter 0"<<endl;
cin>>m;
cout<<"enter seconds if any or enter 0"<<endl;
cin>>s;
print_seconds(h,m,s);
return 0;
}
Output:
enter hours if any or enter 0
2
enter mints if any or enter 0
25
enter seconds if any or enter 0
10
Total seconds are: 8710
Without a/an Operating system. a computer is useless
Answer: False
Explanation:
The given statement is false, as the survey information basically represent feedback in which the service representative contact each and every customers to collect the feedback.
Feedback is in the form of information in which it represent the reaction in the scenario to the output but it basically affects as an input. Therefore, the survey information is in the form of input not as output.
Answer:
The data transmission time will be 8 seconds (8.0s)
Explanation:
Using the formular:
T =A/S
T=Time = ?
Amount of Data = A = 2GByte
Speed = S = 2Gbps
The units of A and S are different
A is expressed in Bytes(B)
S is expressed in bits(b)
But :
1 Byte(B) = 8 bits(b)
T = A/S = 2GB/2Gb
since 1 Byte = 8 bits
T = 2 × G ×( B =8bits) / 2 × G × b
T = 2 × G × 8b / 2 × G × b
T = 2 × G × 8 × b / 2 × G × b
The common terms(2,G,b) cancel out
T = 8 seconds