This is an incomplete question. The question I was able to find as the complete one is as follows:
Match the following terms and definitions
- stack diagram
- flow of execution
- local variable
- function call
- header
-The order in which statements are executed during a program run. Answer 1
-The first part of a compound statement, begins with a keyword and ends with a colon ( : ) Answer 2
-A statement that executes a function. It consists of the name of the function followed by a list of arguments enclosed in parentheses. Answer 3
-A variable defined inside a function that can only be used inside its function. Answer 4
-A graphical representation of functions, their variables, and the values to which they refer. Answer 5
<h2>Answer with Explanation:</h2>
- Flow of Execution: The order in which statements are executed during a program run. This is done from top to bottom which means the statement written first is executed first.
- Header: The first part of a compound statement, begins with a keyword and ends with a colon ( : ). A header is given usually at the top. It can contain libraries being used in the program body.
- Function Call: A statement that executes a function. It consists of the name of the function followed by a list of arguments enclosed in parentheses. It is used to perform specific functions that are defined before calling a function. A program can be called as many times as needed.
- Local Variable: A variable defined inside a function that can only be used inside its function. A local variable with same name can be used inside two different functions but they are needed to be defined first.
- Stack Diagram: A graphical representation of functions, their variables, and the values to which they refer. It is the tool for knowing the state of program at the time given.
i hope it will help you!
Answer:
Customer relationship management.
Explanation:
Customer Relationship Management provides the controls overall the relationships of business between the clients and potential customers to getting the profit in the business The main objective of Customer Relationship Management is to enhance the relationships between businesses.
Customer Relationship Management builds the ongoing partnership with the purchasers or purchasers of the commodity of an organization to optimize the value that the company can offer over time.
When computers need to use more memory than have RAM, they'll swap out pages of memory to their drive. When they need those memory pages, they'll swap out others and swap in the needed ones. If a computer needs enough additionall memory, it can get so busy swapping that it doesn't have any (or very little) time to do any useful work. That is called thrashing.
Unix calls swapping swapping. Windows calls it paging, probably because of the memory pages. Memory pages are 4096 (4KB) sections of memory.
Unix drives are usually partitioned with a swap partition, and swap files can be made in the filesystem. Windows just has pagefiles[s].
Answer:
d. d1− = 10, d1+ = 0
Explanation:
Given
3X1 + 4X2 +d1− − d1+ = 36
X1 = 6
X2 = 2
Required
Possible values of d1- and d1+
We have:
3X1 + 4X2 +d1− − d1+ = 36
Substitute values for X1 and X2
3 *6 + 4 * 2 + d1- - d1+ = 36
18 + 8 + d1- - d1+ = 36
Collect like terms
d1- - d1+ = 36 - 18 - 8
d1- - d1+ = 10
For the above equation to be true, the following inequality must be true
d1- > d1+
Hence,
(d) is correct
Because:
10 > 0
Answer:
The program in Python is as follows:
apples = int(input("Apples: "))
people = int(input("People: "))
apples%=people
print("Remaining: ",apples)
Explanation:
This gets the number of apples
apples = int(input("Apples: "))
This gets the number of people to share the apple
people = int(input("People: "))
This calculates the remaining apple after sharing the apple evenly
apples%=people
This prints the calculated remainder
print("Remaining: ",apples)