Hello,
A paragraph in Word is any text that ends with a hard return. You insert a hard return anytime you press the Enter key. Paragraph formatting letsyou control the appearance if individual paragraphs. For example,you can change the alignment of text from left to center or the spacing between lines form single to double :)
The code to calculate the number of characters and the size of words is as follows:
x = input("Enter your text here: ")
char=0
word=1
for i in x:
char = char+1
if(i==' '):
word=word+1
print("Number of words in the given string ",word)
print("Number of characters in the given string ",char)
<h3>Code explanation:</h3>
The code is written in python
- The first line of code, we store the users input in a variable called x.
- Then we initialise the variable char to zero.
- The variable word is also initialise to zero
- The we loop through the user's input and count the character
- We also look for space to know the word, then count the words .
- Finally, we print the number of word and the number of character.
learn more on python code here: brainly.com/question/20379340
Answer: data that has several parts, known as a record, can be divided into fields. ... In object-oriented programming, a field (also called data member or member variable) is a particular piece of data encapsulated within a class or object.
Explanation:
Answer: 82
There are 28 chocolate-covered peanuts in 1 ounce (oz). Jay bought a 62 oz. jar of chocolate-covered peanuts.
Problem:
audio
How many chocolate-covered peanuts were there in the jar that Jay bought?
Enter your answer in the box.
Explanation: There are 28 chocolate-covered peanuts in 1 ounce (oz). Jay bought a 62 oz. jar of chocolate-covered peanuts.
Problem:
audio
How many chocolate-covered peanuts were there in the jar that Jay bought?
Enter your answer in the box.
The three requirements that are defined by the protocols used in network communications to allow message transmission across a network are:
- Message encoding
- Message size
- Message delivery
<h3>What is SMS encoding?</h3>
Messaging encoding is known to be the way that a given text message is said to be transmitted or sent to the mobile phone carriers.
Note that this type of encoding is one that is often influences how a lot of characters can be used in all of the message segment.
Therefore, The three requirements that are defined by the protocols used in network communications to allow message transmission across a network are:
- Message encoding
- Message size
- Message delivery
Learn more about Message encoding from
brainly.com/question/14718895
#SPJ1