Answer:
the number order is
1
5
2
4
3
Explanation:
I am sure it is correct. Thanks :)
A Network Switch and Network Hub are similar computer network components that connect multiple devices in a computer network. A Network switch is used to connect various network segments. It is a small hardware device that joins multiple computers together within one local area network (LAN). A Network Hub connects numerous Ethernet devices together, making them act as a single segment.
FULL PROBLEM:
Mohammed’s parents learn that his classmates have begun sending him text messages making fun of his heritage. Mohammed says he’s fine because they are just teasing him.
Which challenge is making it difficult to stop the cyberbullying of Mohammed?
A. The classmates are using secure computers.
B. The classmates are using technology positively.
C. Mohammed doesn’t have any evidence of the cyberbullying.
D. Mohammed doesn’t believe the cyberbullying exists.
ANSWER:
D. Mohammed doesn’t believe the cyberbullying exists.
Answer:
It is an excellent decision to change to active directory
Explanation:
Active Directory offers the following advantages, for optimal customer response:
Main objects (users, groups, units, organization).
Security (groups, NTFS - permits, audit)
Integration (-windows services, Microsoft applications)
Administration (centralized and delegated)
Scalability (domain, tree, forest)
All the above helps us to control access to files.
Answer:
def language(mystring, n):
if n > 0:
string_list = [x for x in mystring]
string_cont = ""
for character in string_list:
string_cont += character * n
print(string_cont)
Explanation:
When n is equal to 0, that is, n=0, The python program multiplies the characters of the string "mystring" by the integer variable "n" to output a string with all characters with the same count.