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 |
How to swap two values using a single variable ? condition: Not to use Array and Pointer ?
What are the types of macro formats?
Write programs for String Reversal & Palindrome check
How the processor registers can be used in C ?
What is a keyword?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
how to write a prog in c to convert decimal number into binary by using recursen function,
find largest of 3 no
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is unary operator?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.