Object Oriented System Design Questions and Answers

Object Oriented System Design Questions and Answers   SET 1 Question 1 Which of the following are known re-factorings (according to Fowler)? Select one: a. None of the given answer b. Replace Delegation with Inheritance c. Protect Variations d. Introduce Association Class Question 2 8. …

Object Oriented Analysis and Design Questions & Answers | OOAD | MCQ

Object Oriented Analysis and Design | OOAD | MCQ 1 Which of these framework activities is not normally associated with the user interface design processes? Select one: a. user and task analysis b. interface construction c. interface validation d. cost estimation 2 S418 Which of …

Object Oriented Analysis and Design Questions & Answers | OOAD MCQs

Object Oriented Analysis and Design | OOAD MCQs Question 1 JNQ106. Which of the following diagram is time oriented? Select one: a. Collaboration b. Activity c. Sequence d. None of the given options Question 2 MDQ102 The three types of relationships use cases have in …

Object Oriented Analysis and Design Questions & Answers | OOAD MCQs

Object Oriented Analysis and Design | OOAD MCQs Question 1 STQ101 TDD can be view as combination of Refactoring +______? Select one: a. SCRUM b. CRC cards c. TFD d. DFD Question 2 JNQ108. Which four framework activities are found in the Extreme Programming (XP) …

Object Oriented Programming Questions & Answers | OOP | MCQ

Object Oriented Programming | OOP | MCQ Q 1. What is the output of the following StringBuffer sb1 = new StringBuffer(“Amit”); StringBuffer sb2= new StringBuffer(“Amit”); String ss1 = “Amit”; System.out.println(sb1==sb2); System.out.println(sb1.equals(sb2)); System.out.println(sb1.equals(ss1)); System.out.println(“Poddar”.substring(3)); Ans: a) false false false dar b) false true false Poddar c) …

Object Oriented Programming Questions & Answers | OOP | MCQ

Object Oriented Programming | OOP | MCQ Software consists of programs, or sets of instructions, that tell the computer to perform certain processing functions. System software is the collection of software that controls the basic functions of the computer. That is, it coordinates the interaction …