Answer:
Option D
Explanation:
Complete question
A management information system is typically used by _____.
A. all levels of employees
B. company executives
C. upper-level managers
D. middle-level managers
Solution
A management information system is typically used by middle-level managers
Option D is the correct answer
Management information system (MIS) helps the middle managers to control the work across the various teams of organization.
Answer:
power on, connect to internet, download games
Explanation & answer:
Four pair UTP (unshielded twisted pair) cables are common cables with RJ45 connectors. Most RJ45 connectors have a snap to lock the male connector in place.
ST and SC connectors are for fibre-optics.
Answer:
- def getData(a_dict, key_list):
- result = []
-
- for key in key_list:
- result.append(a_dict[key])
-
- return result
-
- result = getData( {"puffin": 5, "corgi": 2, "three": 3} , ["three", "corgi"])
- print(result)
Explanation:
Let's define a function <em>getData() </em>with two parameters,<em> a_dict </em>and <em>key_list</em> as required by the question (Line 1).
Since the function is to return a list of associated values of dictionaries, a new list,<em> result</em>, is declared and initialized with empty values (Line 2).
Next, use for-loop to traverse through every string in the input <em>key_list </em>(Line 4) and use the traversed key to address the value in the<em> a_dict </em>and add it to the <em>result</em> list (Line 5)
At last, return the <em>result </em>list as output (Line 7)
We can test the function using the test case from the question and we shall see the output as follows:
[3, 2]
The insert table function of a word processing program will be the most useful for comparison.