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 |
#‎include‬<stdio.h> void main() { int i; for(i=5;0;i++) { printf("%d",i); } }
Give me basis knowledge of c , c++...
how many keywords are available in 'c' language a) 32 b) 34 c) 45 d) 48
Are there constructors in c?
7. Identify the correct argument for the function call fflush() in ANSI C: A)stdout B)stdin C)stderr D)All the above
Write a C program to print 1 2 3 ... 100 without using loops?
What is the purpose of sprintf() function?
There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side?
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????
What is variable declaration and definition in c?
Hierarchy decides which operator a) is most important b) is used first c) is fastest d) operates on largest numbers
why program counter is 16 bit?