Code Question Option A Option B Option C Option D Answer
CS504 System Architecture Is Important To Consider Because It Helps In Making ------------- Mutual Communication Early Design Decisions Reusable Abstraction Of A System All Of The Above D
CS504 Test Cases Should Be Designed Long Before Testing Begins True False Na Na A
CS504 Testing Activities Require Destructive Instincts In __________ For The Purpose Of Breaking System To Discover Loopholes Into Its Functionality Bug Fixers Tester Developer Requirement Engineer B
CS504 Testing Is An Intellectually Demanding Activity And Has A Lifecycle ---------- To Software Development Equal Parallel Sequential In Contrast B
CS504 The Above Statement Is The Symptom Of __________ Runtime Error Logical Error Memory Leak Exception B
CS504 The Code Becomes Self Explanatory With The Help Of Proper Use Of Parentheses. Select The Right One Leapyear = Year % 4 == 0 && Year % 100 != 0 || Year % 400 == 0 ; Leapyear = ((Year % 4 == 0) && (Year % 100 != 0) || ((Year % 400 == 0)); Leapyear = ((Year % 4 == 0) && (Year % 100 != 0)) || (Year % 400 == 0); Leapyear = (Year % 4 == 0) && (Year % 100 != 0) || (Year % 400 == 0); C
CS504 The Code Is Misbehaving In A Way That Cannot Be Easily Explained. The Above Statement Is The Symptom Of __________ Runtime Error Logical Error Memory Leak Exception B
CS504 The Construction Is Used To Avoid ---------------- Errors Compilation Runtime Design Time Non Of Them A
CS504 The Construction Should Appear At The __________ Of The Header File Top Bottom Left Right A
CS504 The Criteria Used To Assess The Quality Of An Architectural Design Should Be Based On System Accessibility And Reliability Data And Control Functionality Implementation Details A
CS504 The Cyclomatic Complexity Metric Provides The Designer With Information Regarding The Number Of Cycles In The Program Errors In The Program Independent Logic Paths In The Program Statements In The Program C
CS504 The Cyclomatic Complexity Metric Provides The Designer With Information Regarding The Number Of __________ Statements In The Program Cycles In The Program Errors In The Program Independent Logic Paths In The Program D
CS504 The Data Dictionary Contain Description Of Each Software Configuration Item Data Object Diagram Notation B
CS504 The Data Flow Diagram Must Be Augmented By Descriptive Text In Order To Describe The Functional Requirements For A Software Product True False Na Na A
CS504 The Design Process For Identifying The Sub-Systems Making Up A System And The Framework For Sub-System Control And Communication Is Architectural Design Interface Design Component Design Data Design A
CS504 The Development View Describes The -----------Organization Of The Software In Its Development Environment Static Dynamic Still Static & Dynamic A
CS504 The First “Bug” Was Actually A Moth Which Flew Through An Open Window And Into One Of The Mark ---------’S Relays I Ii Iii Iv B
CS504 The First Most Important Study In Developing Any System Is To Indentify Purpose Of The System Implementation Of The System Design Of The System Architecture Of The System D
CS504 The First Step In Any Ooa Process Model Is To___________ Build An Object-Relationship Model Define Collaborations Between Objects Elicit Customer Requirements Select A Representation Language A
CS504 The Goal Of Testing Is To Expose ---------- Defects In A Software System Before It Is Put To Use Latent Already Present Current Runtime A