what is real time system?what is the differance between hard
and soft real time systems
Answers were Sorted based on User's Feedback
real time system processing must be done within a defined
timed constraint otherwise system fails.
hard real time: time is strictly bounded ex: space
crafts,avionics,military application
soft real time : time is not strictly bounded ex: ATMs..
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / nilesh chauhan
REAL TIME SYSTEM are the operating system which are defined
with restricted constraint lile time constraint,visuability
constraint etc.
Best example of real time system is QNX
HRTS are those which have great degree of constaint & SRTS
are those which have low degree of constaint.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is hash table in c?
Explain the meaning of keyword 'extern' in a function declaration.
What are the 3 types of structures?
What's a "sequence point"?
What are the c keywords?
What is the scope of static variables?
what is difference between ++(*p) and (*p)++
17 Answers Accenture, HCL, IBM,
What is the output of the following program main();{printf ("chennai""superkings"}; a. Chennai b. superkings c. error d. Chennai superkings
10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
Difference between C and Embedded C?
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.