WITH CORRECT ANSWERS GRADED A+
◍ risk register.
Answer: is a list of potential risks, how the risks will be monitored, and what
action will be taken should the risk event occur.
◍ Standards.
Answer: are requirements that are generally accepted by a group of firms
that produce similar products or services.
◍ client side form validation vs server side.
Answer: its a good practice to implement both. On the client side it helps to
make the form more user friendly and faster, since a typo can be detected
prior the form submission
◍ pattern understanding(?=.*[a-z]).
Answer: there is at least a lower case letterremember this
◍ Drag and Drop API.
Answer: A typical drag operation begins when a user selects a draggable
element, drags the element to a droppable element, and then releases the
dragged element.It must have the attribute draggable set to true in the
HTML
◍ get an element that has been marked as draggable.
Answer: const draggableElement =
document.getElementById('draggable-element');
◍ Pointer Events API.
Answer: mouse movement tracking (hover or click)
◍ Change management reporting.
Answer: showing changes identified, requiring approval, and resolution.
,◍ The triple constraint concept.
Answer: It is not possible to change any one side of a triangle without
affecting the other two characteristics
◍ pattern understanding bonus round.^\d\D\sx(?=y)!.
Answer: . matches any single character from class^ negated [^ 0-8] looks for
a 9^ can also match the beginning of an input\d any digit **\D any character
**\s spacex(?=y) lookahead xy is valid but xz not **! negative/not i.e x(?!y)
xz is valid xy is not **remember this
**https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Express
◍ project scope statement.
Answer: represents a mutual understanding between the customer and the
project team.
◍ Quality control.
Answer: is the process of monitoring and changing project execution to
ensure that activities are being executed as planned and will result in
meeting the customer requirements. It is the monitoring and controlling
process that occurs during project execution.
◍ Project controls.
Answer: are the data gathering, management, and analytical processes used
to predict, understand, and constructively influence the time and cost
outcomes of a project or program.
◍ Planning.
Answer: TechnologyBusiness
processStaffingTrainingTestingCommunicationsBudget
constraintsIntegration of the project with operations and other projects
◍ Virtual Teams.
Answer: are teams whose members interact primarily through electronic
communications. Members of a virtual team may be within the same
building or across continents.
,◍ time value of money.
Answer: suggests that money is worth more to an organization now than in
the future.
◍ ETC.
Answer: Estimate to CompletionHow much money will need to complete
the projectETC = (BAC - EV)/CPI(Budget at Completion - Earned Value)
/Cost Performance Index CPI = EV/AC
◍ Quality management.
Answer: is the process of identifying the customer's requirements and how
they will be measured.
◍ EVA Process Step 1.
Answer: Collect measures from project records:1. AC - Actual Cost2. EV -
Earned Value3. PV - Planned Value4. BAC - Budget at Completion
◍ Three essential drivers that must be achieved to generate positive
characteristics in project teams.
Answer: Cohesiveness, Trust, Motivation
◍ Probabilistic duration estimation techniques.
Answer: are used when there is uncertainty in how long an activity will take.
◍ + vs *.
Answer: +once or more*0 or more
◍ js comment.
Answer: // text until the end of the line
◍ BAC.
Answer: Budget at CompletionApproved total baseline budget approved for
completed project
◍ add drag data to the event.
Answer: function onElementDragStart(event)
{event.dataTransfer.setData('text/plain', 'draggable-element');}
◍ Accepting.
, Answer: the risk is a response strategy where we recognize the risk and say
that it is a part of the project, normal business practice and the team will
plan to accept it accordingly.
◍ Project schedule.
Answer: A timeline that specifies when the project begins and when it is
supposed to end
◍ Form Validationabc.
Answer: matches abc. Not ab or abcd
◍ Traditional project management methods.
Answer: PERT, CPM, critical chain, waterfall, and PRINCE2
◍ what is <fieldset>.
Answer: group several controls and labels within a web form. Regroup in
semantic ways<form> <fieldset> <legend></legend> <input type="radio"
id="S1" name="S1" value="S1"> <label for="S1">S1</label><br> <input
type="radio" id="S2" name="S2" value="S2"> <label
for="S2">S2</label><br> </fieldset></form>
◍ "working" project manager.
Answer: a functional manager
◍ internal rate of return (IRR).
Answer: evaluates potential projects as if they were financial investments. It
calculates the rate of return for a project.
◍ Input validation country code (3 letter code like USA CAN GER).
Answer: pattern="[A-Za-z]{3}
◍ Activities are connected to two types of deliverables:.
Answer: Project management - communications, planning, execution,
etc.Project specific to the desired end result of this project
◍ Gantt Chart.
Answer: visually depict relationships on a project
◍ input field image.