COSC 4351 - 1
Which is not part of the UML CLASS MODEL? - Class - Actor - method - attribute
Actor UML CLASS MODEL uses 3 symbols: Rectangle for Class, Oval for attribute, and Line for method.
The ERD MODEL is a/an ___ MODEL.
Analysis Workflow
What is the maximum number of items that can be sent to the server? <form> <input type="checkbox" name="check1" checked> <input type="checkbox" name="check2"> <input type="radio" name="radio1" value="1" checked> <input type="radio" name="radio2" value="2"> <input type="radio" name="radio3" value="3"> <input type="submit"> </form>
5
CSS stands for ___ ___ ___
Cascading Style Sheets
What is ERD standing for?
Entity Relationship Diagram
Is the following a valid HTML link? <a "http://cnn.com">CNN</a>
False <a href="http://cnn.com">CNN</a>
Separation of concerns is the design principle of breaking up web content using distinct languages and documents that overlap as little as possible. In modern web design, document structure and text, visual layout, and page interaction are separately specified using three key languages. ______ is the language that describes the page content.
HTML
What is UML standing for?
Unified Modeling Language
Javascript is a programming language that runs in a ___, enabling web pages supporting actions like responding to a button click. JavaScript can be included in the HTML file's header part.
browser
The Flexibility of Change feature is ......
The Flexibility of Change feature is difficult for WATERFALL and easy for INCREMENTAL SDLC.
In OPEN SOURCE SDLC projects is the of not attracting a team to work on the project real?
True
The "template" for ERD MODEL is in BlackBoard under the TUTORIALS/TUTORIAL 1 on ERD MODELING folder.
True
The "templates" for UML USE CASE & MVC CLASS MODELS are in BlackBoard under the TUTORIALS/TUTORIAL 1 on UML MODELING folder.
True
To see how a web page is constructed, a user can view the page source in the browser.
True
Using the Waterfall SDLC there is a risk that by the time (long) the PRODUCT is delivered the Client's needs might have changed.
True
Which 2 are symbols for UML USE CASE MODEL? - Actor - Class - Use Case - attribute
- Actor - Use Case UML USE CASE uses only 2 symbols: Stick figure for Actor and Oval for Use Case.
Map the order of the stages of the SDLC.
1. Planning 2. Defining 3. Designing 4. Building 5. Testing 6. Deployment
Separation of concerns is the design principle of breaking up web content using distinct languages and documents that overlap as little as possible. In modern web design, document structure and text, visual layout, and page interaction are separately specified using three key languages. ______ is the language that describes page layout.
CSS
Which one is not part of the ERD MODEL? - Entity - Relationship - Class - Atribute
Class
Which is not an UML MODEL? - CLASS MODEL - SEQUENCE MODEL - ERD MODEL - USE CASE MODEL
ERD MODEL
The intial UML USE CASE MODEL is created during the ___ Phase.
Inception
Separation of concerns is the design principle of breaking up web content using distinct languages and documents that overlap as little as possible. In modern web design, document structure and text, visual layout, and page interaction are separately specified using three key languages. ______ is the language that provides interactive functionality.
Javascript
Using unifying IBM Rational Jazz ALM, these are the Real results:
Nationwide enjoys a 50% improvement in code quality and a 70% reduction in system downtime with agile.
If a company at CMM Level 1 (Adhoc) is on the verge of bankruptcy, what is the first step to restore the company to profitability?
Provide Software Engineering education for all employees, including managers. This is a necessary prerequisite for advancing to CMM Level 2 (Repeatable)
The Client Satisfaction feature is ......
The Client Satisfaction feature is low for WATERFALL and high for INCREMENTAL SDLC.
Is the UML USE CASE MODEL a Requirement Workflow MODEL?
Yes
Is there an error in this HTML Unordered list tags? <ul> <li>Apples</li> <li>Oranges </ul>
error The line is missing a closing </li> tag. Omitting a closing </li> tag is a common error.