Skip to main content

Free PMI-ACP 41

Moving the blog to  http://pmiacp4u.blogspot.com

Comments

Popular posts from this blog

ACP Exam tips

       1.    Time: The 3 hours to answer 120 questions were sufficient. I finished answering all questions in 2 hours. There were 4-5 questions not framed well (poor English). I spend 1 hr to review all my answers again. 2. Agile Practices: There were multiple questions on SCRUM and XP, very few questions on Kanban and Lean, almost none on Crystal, FDD, and DSDM. 3. Roles: Completely Understand the Roles in SCRUM and XP, what are the responsibilities carried by those roles, various meetings, input and outcome of those meetings like review, retrospective etc, 4. Scenario Based Questions: There were multiple questions based on scenarios and how best will you apply agile practices under those scenarios. Mostly on Team,Scrum,Communication stuff. 5. Completely understand the when and what use of Scrum Artifacts and ceremony. 6. . Many questions on team Collaboration, Risk,Velocity. 7. Few Question on EVM,EV,PV (no calculation). 8. Multiple quest...

Node.js Examples – Basic Examples, Module Examples, Advanced Examples

Node.js Examples Node.js Examples  : We shall go through examples of basics, fs module, mysql module, http module, url module, parsing json, etc. with Node.js. Node.js Example : Simple Node.js Example Following is a simple  Node.js Example  to print a message to console. verifyNode.js console . log ( "Hi there! This is Node.js!" ) $  node  verifyNode . js Hi  there !   This   is   Node . js ! Node.js Example : Create a Module Following is  Node.js Example  where we create a Calculator Node.js Module with functions add, subtract and multiply. And use the Calculator module in another Node.js file. calculator.js // Returns addition of two numbers exports . add   =   function  ( a ,  b ) {      return   a + b ; };    // Returns difference of two numbers exports . subtract   =   function  ( a ,  b )...

The Characteristics of a Successful Agile Coach

1. Patience An agile coach, just like any coach, needs to be patient with the people they are leading. If you want your business to be agile, then you need  everyone in your company  to fully-understand what you’re working towards, and not everyone is going to “get it” straight away. Ultimately, you’re probably going to be asked the same question a thousand different times, and you need to figure out how to keep your cool. 2. Flexibility The agile framework can’t exist without flexibility. The whole point of being “agile” in the business world, is being able to adapt to changes in your marketplace. In other words, as a coach, you’ll need to be prepared for whatever happens in your organization, and have a certain strength about you when it comes to rolling with the punches. There will be times when you face challenges that leave you scratching your head and wondering what to do next. However, whenever you encounter a new scenario, you need to be able to take your trie...