Digital networking is building relationships through social media. Just like traditional networking is an ongoing thing, in the digital world, you read people's posts, comment and share them. You interact and again and again.
Answer:
see description
Explanation:
clicking in new script, we type the following:
%inputs and variables
N = input('Enter N : ');
values = input('Enter values : ');
positive=0;
negatives=0;
zero=0;
%for loop
for c = 1:N
if values(c) > 0
positive = positive + 1;
elseif values(c) < 0
negatives = negatives + 1;
else
zero = zero + 1;
end
end
positive
negatives
zero
so we basically loop the array and add one to counters each time we read an element from the input, for example if we enter:
Example input
Enter N : 5
Enter values : [1,-1,0,2,352]
positive = 3
negatives = 1
zero = 1
His first kiss was Hinata and it was also her first kiss as well mark me as brainliest please
Your answer is A
Answer:
is there a graph to go with this?
Explanation:
Answer:
5. a. DHCP
6. b. Dynamic
7. b. DNS
8. a. True
Explanation:
5. The server role responsible for managing and configuring the automated configuration of IP addresses on clients is DHCP.
6. Using the dynamic update method, as a DHCP server hands out IP addresses, it registers the client hostname or FQDN and IP address with the DNS server. If the hostname or IP address changes, the DNS record is updated accordingly.
7. The server role responsible for name resolution for the internal network as well as Internet resources is DNS
8. The forest administrators, who are members of the Enterprise Admins group, are automatically granted the ability to create an OU hierarchy in any domain within the entire forest. True