Skip to main content

Analyze Phase Quizzes

 

Root Cause 6 Questions




























































Hypothesis testing is used to determine which process factors are the cause of the variation in our output that is causing defects. TRue

Statistical data analysis enables us to validate the root causes with 95% confidence in the results.True

In hypothesis testing we are trying to determine if we can reject the alternative hypothesis (groups are different).
False

“r-squared” is the square of the correlation coefficient and is the measure of how much variation in the process output is accounted for by the model.
True

An r = +0.86 would indicate which of the following (choose one). |
Strong positive relationship

When conducting a hypothesis test, we usually treat "P is less than 0.05" as indicative that the difference between groups is insignificant.
False

Regression analysis takes correlation one step further by developing a mathematical model that represents the relationship between the X and Y.
True

Multiple regression is the same concept as linear regression, but it is an equation to
show the mathematical relationship between (choose one).
Several X's and One Y

A correlation coefficient is used to measure the degree of linear association between discrete sets of data.
False

Multiple regression is the same concept as linear regression, but it is an equation to
show the mathematical relationship between (choose one).
A. Root Cause Analysis, B. Lean Process Analysis, D. Graphical Data Analysis, D.
Statistical Data Analysis

Have you completed and documented the SI Project Deliverables for the Analyze
Phase?
Yes

"How were you able to use Regression for your analysis?"
"We used Regression to statistically validate that there is a relationship or
correlation between the LP Cycle Time and Total Cycle Time in Singapore."

"The Home Loan processing department already is over staffed. How can they not |
handle the current volume?" |
"This problem is being driven by 2 causes. First, the staffing is not aligned to the
incoming volume which leads to periods of when the associates are under worked
and over worked. Second, all of the non-value added time leads to unnecessary
delays and duplicate efforts by the associates.”

"What did the Regression analysis tell you?"
"The analysis told us that 47.1% of the variation in the Singapore Overall Cycle 
Time is accounted for by the LP Cycle Time. This isn't the only cause of the 
variation, however we need to focus our analysis/improvements efforts in this
area since the relationship is very strong." 

"What did the additional graphical analysis tools tell you about the process that you 
didn't already know from Measure Phase tools?" 
"We were able to identify which Final Determination Package errors were leading
to most of the issues. In addition, by stratifying the cycle time performance
between the 3 sites we were able to determine that London is performing better
then Chicago and Singapore. Finally, there is a correlation between the LP cycle
time and overall cycle time for Singapore which will help us narrow our analysis
efforts for that site.”

"Are we going to fix all of the Final Determination Package errors?"
"We are going to focus on the Loan Amount and Name errors since those 2 ‘account for 90% of the errors.”

"Reviewing the application is an important step to ensure the loan is correctly
approved. How can it be non-value added? Are you just going to eliminate
reviews?"
"We focused our value-added analysis on the customer's perspective. Although
this may be a value-added step for the business, it causes delays in the process
which ultimately leads to dissatisfaction for the customer. If we can solve the
problems that lead to the need for these reviews, we can reduce time for the
customer and cost to the business which will meet both expectations.”













Comments

Popular posts from this blog

IS5203 Type 2 Post Assessment and Final Quiz

  Carlos has just created a new subnet for the finance department. He needs to be able to allow the employees in finance to retrieve files from the sales server, which is located in another subnet. Which of the following OSI model layers would it be necessary to categorize the device into? a. Layer 4 b. Layer 6 c. Layer 2 d. Layer 3 All of the cubicles in a company's office have cables that run up to the ceiling and across to an IDF. Inside the IDF, they connect directly to the latest generation switch available from the networking equipment vendor that they have chosen. Which of the following describes the physical topology most likely in use? a. mesh

GE5103-2 Project Management [Aug 23 Syllabus]

    Some of the advantages of using time boxes and cycles in project coordination efforts include creating urgency, measuring progress, and allowing for predictable measurements. A)        True 2.    Even though most project managers are not contract specialists, they need to understand the process well enough to coordinate with the team. For the current assignment, you are looking at a short-term and small effort with a contractor of just a few hours without significant clarity. Which of the following would be the most applicable contract to use in this situation? A)        Time and materials 3. The project you are working on has had modifications to the plan from the start and even how the project is run. Project governance covers all of the 3 following except: A)        Naming The project manager 4. Of the following, which is most likely a trigger condition defined early in the project? A) Alerting Governance board if 10 percent over schedule 5. Of the following options, which stand

IS5213 Data Science and Big Data Solutions

WEEK- 2 code  install.packages("dplyr") library(dplyr) Rajeshdf = read.csv('c:\\Insurance.csv') str(Rajeshdf)                        str(Rajeshdf) summary(Rajeshdf) agg_tbl <- Rajeshdf %>% group_by(Rajeshdf$JOB) %>%    summarise(total_count=n(),             .groups = 'drop') agg_tbl a = aggregate( x=Rajeshdf$HOME_VAL, by=list( Rajeshdf$CAR_TYPE), FUN=median, na.rm=TRUE ) a QUIZ 2. What famous literary detective solved a crime because a dog did not bark at the criminal? A). Sherlock Holmes 1.  In the Insurance data set, how many Lawyers are there? A).  1031 3. What two prefixes does the instructor use for variables when fixing the missing values? Select all that apply. A). IMP_ M_ 4. What is the median Home Value of a person who drives a Van? A).  204139 5. In the insurance data set, how many missing (NA) values does the variable AGE have? A) 7   1. What is the process called where missing data is fixed? a). Imputing   2. According to the instructor