Answer:
Following are the program in the Python Programming language.
#define function
def negative_num(num_list):
#set list type variable
nlist=[]
#set the for loop
for n in num_list:
#check negative numbers
if(n<0):
#add the value of n in list
nlist.append(n)
#return list
return nlist
#set new list type variable that store list
newl=[-5,8,-6,3,-4,9,-7]
#print and call the function
print(negative_num(newl))
<u>Output</u>:
[-5, -6, -4, -7]
Explanation:
Here, we define the function "negative_num" and pass an argument "num_list" in its parameter and inside the function.
- Set new list data type variable "nlist".
- Set the for loop which iterate as the list.
- Set the if conditional statement to check the value of the list is less than 0 then, add that negative values in the variable "nlist".
- Then, return the new list.
Finally, we set a variable "newl" which store the list of negative and positive numbers then, we print and call the function.
The used to set up printing in an organisation are as follows;
- Connecting directly to the printer
- setting up a print server
- using a cloud service to set up printers.
<h3>Method for printing in organisation.</h3>
There are different method for setting up printing in an organisation.
They include the following;
- Connecting directly to the printer : directly connecting a printer; From small to large organizations, you have lots of ways to set up a printer.
- setting up a print server
- using a cloud service to set up printers. There are numerous cloud service that could render this service like goggle.
learn more on printing here: brainly.com/question/14668983
#SPJ11
I belive the correct answer would be binary code because computers see the coding as 00100001
The process is called booting