There is no picture? What’s the question?
Answer:
c. standards
Explanation:
Network standard specifies the way computers access a network. They are guided rules that must be taken into consideration for successful integration and interaction of technologies that use a wide variety of networks.
Another integral importance of network standard is that they ensure that individual usage of carried out without issues related to inconsistency.
Examples of Agencies governing the regulation of network standards are the International Telecommunication Union (ITU) and the Institute of Electrical and Electronics Engineers (IEEE)
Anything that you can you to input actions or data into a computer. For example mice and keyboards are input peripherals because you use them to give the computer input of actions you want it to perform. This includes actions like opening a web browser with a mouse click or typing characters to the screen with a keyboard.
The opposite would be an output peripheral which would be something like the computer screen itself.
Answer:
mystring = "My name is David Acheme"
count = 0
for i in mystring:
if(i.islower()):
count=count+1
print("The number of lowercase characters in: "+mystring)
print(count)
Explanation:
1. We declare a String Variable and assign a value.
2. Intialize a count variable to zero.
3. Using a for loop is to loop through each characters in the string.
4. The if condition checks when a lower case character is encountered using the islower method and increases count by 1
5. Prints the value of count.