1. List and define 10 responsibilities of a Project Manager
2. List and define the characteristics of a Project Management
3. Explain the concept of work break down structure(WBS). (10 points)
In: Economics
Creating a list/tuple in python
2. Using a list of lists containing X’s and O’s to represent a tic
tac toe board, write code to check if the board has a
winner.
In: Computer Science
Write a function child_indices(parent, branch_factor) that returns a list containing the list of indices where the children of the node at index parent will be stored for a heap list with the given branch_factor (ie, a branch_factor-heap). Python language
Notes:
| Test | Result |
|---|---|
print(child_indices(1,2)) |
[2, 3] |
print(child_indices(2,2)) |
[4, 5] |
print(child_indices(1,3)) |
[2, 3, 4] |
In: Computer Science
List the names of 4 Emotional Intelligence Domains with your scores - select and list one of the options on Pg 23 for Growing your Emotional Intelligence
In: Accounting
Food. List at least 3 food items that make up a meal; list the grams of carbohydrates, fats and protein in each food item, convert grams to calories for each component in these food items, calculate % calories from each component, the total calories from each food item and total calories from this meal. A table would help organize the information. Comment on this meal. List 4 dietary supplements that are commonly used and what is the presumed function of each
In: Anatomy and Physiology
b) What is the Theseus’ Paradox? How does it apply to de-extinction?
c) Do you think that de-extinction is a sound idea? If you do not, describe why? If you are for it, describe why?
In: Biology
In: Operations Management
List the phases of Waterfall methodology and list the roles involved in each phase.
Roles given include - project sponsor, business analyst, SME, database designer, system designer, software developer, quality assurance
In: Operations Management
#Write a program in Python that given a list of positive
integers, return another list where each element corresponds to the
sum of the digits of the elements o#f the given list.
#Example:
# input
# alist=[124, 5, 914, 21, 3421]
# output
# sum=[7, 5, 14, 3, 18]
In: Computer Science
1.Write a function div7(lst) which takes in a list of integers, and returns a list of booleans of the same length, such that for each integer in the original list, the boolean in the output list is True if that integer was divisible by 7, or False if not. Use list comprehensions in python, the function only could be at most two lines long.
Here is some examples:
>>> div7([14, 5, 7, 3, 29, 28, 10])
[True, False, True, False, False, True, False]
2. Write a invert function.This function
performs a color inversion, as though you were producing a negative
of a photo. Recall that each color component in every pixel is an
integer between 0 and 255, inclusive. In every pixel, for each of
the three color components, if the original value for the component
was x, to invert the color you must set it to 255-x.
Examples:
>>> invert([[[127, 127, 127], [0, 0, 0]],
[[255, 255, 0], [50, 128, 255]],
[[0, 0, 255], [0, 255, 0]],
[[255, 0, 0], [255, 255, 255]]])
[[[[128, 128, 128], [255, 255, 255]],
[[0, 0, 255], [205, 127, 0]],
[[255, 255, 0], [255, 0, 255]],
[0, 255, 255], [0, 0, 0]]]
(note that the highlighting and the new line for each row are for clarity purposes only and will not be present in the actual console output, but the numbers should be correct)
Both need to use python.
In: Computer Science