Answer:
missing quotation marks around a string literal
Answer: I am pretty sure it's RAM
Explanation:
I'm not 100% positive bc I haven't gotten my scores back yet but I think that's it.
A. Data management software.
Answer:
B- App Directory
Explanation:
The best place to search for free (and paid) software for customizing your Hootsuite dashboard to your exact business need is APP DIRECTORY.
An application directory is a group of software code, help files and resources that together comprise a complete software package but are presented to the user as a single object which enable a person to search for free software in other to customize the Hootsuite dashboard to the person business need.
Answer:
def multiply(a, b):
print(a*b)
multiply(2,3)
Explanation:
Using python3 :
The program is written using python 3 ;
def represent the statement used at the start of a function.
Multiply is the name given to our function (it could be any other name of interest)
(a, b) are the argument, which represents the two integers the function takes.
print(a * b) = What the function does is to print the product of a and b
multiply(2,3) is used to test out our function by call the name and Giving it two integers to work on. The function will print 6