When is an interface "good"?
Answer / 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 |
What is the difference between union and structure in c?
when i declare as: void main() { clrscr(); int a=10; printf("%d",a) } my problem that why generate a error in above programs. please tell me answer seriously .
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
What is the basic structure of c?
what is difference between overriding and overloading?
Tell me can the size of an array be declared at runtime?
What is the c value paradox and how is it explained?
Find the middle node in the linked list?? (Note:Do not use for loop, count and count/2)
What is the 'named constructor idiom'?
input may any number except 1,output will always 1.. conditions only one variable should be declare,don't use operators,expressions,array,structure
What are the loops in c?
Write a program to find minimum between three no.s whithout using comparison operator.