Answer:HUMAN RESOURCES AND PROCEDURE COMPONENTS
Explanation: Information systems are known to contain five components, these components help to describe the various aspects and importance of Information systems.
They Include The DATABASE AND DATA WAREHOUSE components(act as the store for all data), The COMPUTER HARDWARE(the physical components of the information systems such as computer harddrive etc)
THE COMPUTER SOFTWARE( the software which includes all the non physical and intangible assets of the information system),
THE HUMAN RESOURCES AND PROCEDURES COMPONENT( which gives instructions to the users).
THE TELECOMMUNICATIONS.
Answer:
7
Explanation:
This one obtains results that the others in particular do not have, whether it is even one more word or another initial sentence
Answer:
fifthly, if it is an empty box. it disappear completely. sixth the size of a text box changes depending on the length of a text that we type . this is in contrast with a place holder box where changes are made of the font of the text
Explanation:
mark me a brainlist
Answer:
alphabets = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
newList = []
N = 3
for i in range(N):
newList.append(alphabets[i] * 3)
print(newList)
Explanation:
- Initialize the alphabets.
- Use a for loop to append three alphabets to new list.
- Finally print the new list.