Exam Application
Exam Application
Introduction to Teamwork
Câu 1. Which statement is true about teamwork?
The team will need to build trust
Câu 2. Why do we need to build the teamwork?
The software projects are too large and those a diverse set of skills and
roles.
Câu 3. In tips for receiving feedback, when you listen carefully and try to
understand the meaning of the feedback, what is this kind of technic called?
Active listening
Câu 4. Role of a team leader in helping all members working together:
Suppress ego of each member
Câu 5. What is the characteristic of high-performance teams in company mission?
A clear, elevating goal
Câu 6. What is the characteristic of high-performance teams when your company
gets CMM standard?
External support and recognition
Câu 7. What are team member’s competence?
- Technical
- Personal
Câu 8. Positive receiving feedback, listen without frequent interruption or
objections is...
Open
Câu 9. What is the difference between team and group?
Result
Câu 10. What is the characteristic of high-performance teams when you share
knowledge with all team members?
Collaborative climate
1.7. Refactoring
Câu 101. Which statement is WRONG when you are talking about refactoring?
Refactoring does NOT make the codes better
Câu 102. What is a code smell?
Code smell is a finding defect technical, that used to find where codes need
to refactor
Code smell is any symptom in the source code of a program that possibly in
dicates a deeper problem.
Câu 103. Long method (code smell) is…
a method, function, or procedure that has grown too large
Câu 104. Duplicated code (code smell) is…
Duplicated code problem is identical or very similar code exists in more
than one location
Câu 105. When must you refactor your codes?
The codes have not defected but you want to improve its
Câu 106. How to refactor this code? (double circlesquare= radius*radius*3.14; )
- The circlesquare variable must be rename to circleSquare
- 3.14 much be naming such as const double PI= 3.14
Câu 107. What are the goals of Refactoring technology?
- Improve the understandability of the code
- Improve the structure of the code
- Remove unnecessary code
Câu 108. What is the reason for NOT to refactor codes?
The code right but not follow to standard
Câu 109. When you want to move some lines of codes to a new procedure. What
will you do in Eclipse?
Use the Extract method in Refactoring
Câu 110. For moving a method from subclass to supper class in eclipse. What
refactoring technic will you do?
Use the Pull Up in Refactoring