Respuesta :
Answer:
16 bytes
Explanation:
Count one byte (=8 bits) per character, don't forget the space.
The text length is 16 characters, so this fits in 16 bytes. In a C-program you would need an extra 0 byte to mark the end of the string. But that is not asked here.
The total size in bytes for the words "Computer Science" based on the 8 bits ASCII character set is 16 bytes.
What is ASCII?
ASCII is an acronym for American Standard Code for Information Interchange and it was developed from a telegraph code. It is a character encoding standard that comprises seven-bit (7-bit) set of codes.
The function of a ASCII character set.
The ASCII character set can only be used for encoding English language and it comprises both lower case and upper case letters of the 26 alphabets, symbols, and number 0 to 9.
Note: A space is also a character in the ASCII character set.
In this scenario, the words "Computer Science" is made up of 15 letters and a space. Thus, the total size in bytes for the words "Computer Science" based on the 8 bits ASCII character set is 16 bytes.
Read more on ASCII here: https://brainly.com/question/15849452