Answer Posted / harish saini
verification means are we building right product. for
example at evry stage of product building some constraints
are applied so one can verify that product is building
right.
Validation means the finished product is right i.e its full
filling the user requirement. validation defines that
result producing by system is right.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What are the two different types of polymorphism?
what is the sylabus for priliminaries?
What is meant by oops concept?
What are the 3 principles of oop?
i=20;k=0;
for(j=1;k-i;k+=j<10?4:3)
{
cout< What language is oop? Why we use classes in oop? Explain virtual inheritance? How is class defined? What is the significance of classes in oop? What is oops with example? class CTest
{
public:
void someMethod()
{
int nCount = 0;
cout << "This is some method --> " << nCount;
}
};
int main()
{
CTest *pctest;
pctest->someMethod();
return 0;
}
It will executes the someMethod() and displays the value
too. how is it possible with our creating memory for the
class . i think iam not creating object for the class.
Thanks in Advance...
Prakash How to handle exception in c++,
For example in a functions i am assigning memory to some
variables and also in next instructions in am dividing one
variable also.
If this functions generates a error while allocating memory
to those variable and also while dividing the variable if i
divide by zero then catch block how it will identify that
this error has cone from perticular instruction What is the difference between a constructor and a destructor? How do you use inheritance in unity?