Ans : There are three stages in this process. These are: Qualification, Adaptation (also known as wrapping), Composition (all in the context of components). Component qualification: examines reusable components. These are identified by characteristics in their interfaces, i.e., the services Read More …
Author: ignougroup
Ques : Describe similarities and differences between Cleanroom and OO Paradigm
Ans : The following are the similarities and the differences between the Cleanroom software engineering development and OO software engineering paradigm. Similarities Lifecycle – both rely on incremental development Usage – cleanroom usage model similar to OO use case State Read More …
Ques : What is Formal Method in software development ?
Ans : A formal method in software development is a method that provides a formal language for describing a software artifact (e.g., specifications, designs, source code) such that formal proofs are possible, in principle, about properties of the artifact so Read More …
Ques : What is use of mathematics in software development ?
Ans : Mathematics supports abstraction and therefore is a powerful medium for modeling. Because they are exact, mathematical specifications are unambiguous and can be validated to uncover contradictions and incompleteness. It allows a developer to validate a specification for functionality. Read More …
Ques : What is Organization for Economic Cooperation and Development (OECD) ?
Ans : The OECD an international organization working in the area of data privacy and information security, established an ad hoc process of meetings (the first was on 1-2 July 1997 and second on 22 October 1997) on approaches being Read More …
Ques : Advantages of Block Cipher
Ans : • It is faster than stream cipher.• If any block contains any transmission error then it will not have affect on other blocks.• It is not sufficient in hardware but may be used to connect keyboard to CPU Read More …
Ques : Describe a Move a Layout Cell ?
Ans : If you need to line up the cells next to each other you can resize and move the layout cells as you need. You can change the size of a layout cell by using one of its resize Read More …
Ques : What is the various types of invoking functions ?
Ans : • With no arguments and with no return value.• With no arguments and with return value• With arguments and with no return value• With arguments and with return value.
Ques : What is Register Variables ?
Ans : Besides three storage class specifications namely, Automatic, External and Static, there is a register storage class. Registers are special storage areas within a computer’s CPU. All the arithmetic and logical operations are carried out with these registers. For Read More …
Ques : What is Static Variables ?
Ans : In case of single file programs static variables are defined within functions and individually have the same scope as automatic variables. But static variables retain their values throughout the execution of program within their previous values. Points to Read More …