Questions
1. List and define 10 responsibilities of a Project Manager 2. List and define the characteristics...

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...

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...

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:

  • The function should return all possible indices and the indices should be in order from smallest to biggest.
  • The values in the heap list start at index 1 - that is the root of the heap is at index 1 in the heap list.
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...

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...

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

a)List 6 concerns in opposition to the de-extinction research and reintroduction. For each concern, list the...

  1. a)List 6 concerns in opposition to the de-extinction research and reintroduction. For each concern, list the counterargument by proponents of the de-extinction argument.

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

List 5 intentional torts, and explain the elements needed to prove each. List and explain the...

  1. List 5 intentional torts, and explain the elements needed to prove each.
  2. List and explain the elements to prove negligence.
  3. What is the difference between negligence per se and comparative negligence?
  4. What is the relationship between contributory negligence and res ispa loquitor?
  5. What are the differences in the 3 types of damages available in a tort case?

In: Operations Management

List the phases of Waterfall methodology and list the roles involved in each phase. Roles given...

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...

#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...

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