Answer Posted / abalonesoft
When it provides a simplified view of a chunk of software,
and it is expressed in the vocabulary of a user (where a
"chunk" is normally a class or a tight group of classes, and
a "user" is another developer rather than the ultimate
customer).
The "simplified view" means unnecessary details are
intentionally hidden. This reduces the user's defect-rate.
The "vocabulary of users" means users don't need to learn a
new set of words and concepts. This reduces the user's
learning curve.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
if the area was hit by a virus and so the decrease in the population because of death was x/3 and the migration from other places increased a population by 2x then annually it had so many ppl. find our the population in the starting.
write a c program to find the sum of five entered numbers using an array named number
How do you declare a variable that will hold string values?
What is a built-in function in C?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
Write a program to check palindrome number in c programming?
What are different types of operators?
What is memcpy() function?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
Write a program to print factorial of given number without using recursion?
Why can't I perform arithmetic on a void* pointer?
What is c language in simple words?
What is self-referential structure in c programming?
What is far pointer in c?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none