Answer Posted / radha raman
A general purpose high level programming to build any kind of application.
1. Word Processors
a. Word Star
2. Electronic Spreadsheet
a. Lotus 123
3. Database Management Systems
a. dBase
b. FoxBase
c. FoxPro
d. Firebird
4. Operating System
a. Unix
b. Linux
c. DOS
5. Device Drivers
6. Scada Systems
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is #pragma statements?
What is the difference between constant pointer and constant variable?
Can the sizeof operator be used to tell the size of an array passed to a function?
What does %d do?
What is hungarian notation? Is it worthwhile?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What is assert and when would I use it?
Explain how can I prevent another program from modifying part of a file that I am modifying?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
Are the outer parentheses in return statements really optional?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
Can include files be nested?
Why we use int main and void main?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above