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 |
define switch statement?
write a c program to find biggest of 3 number without relational operator?
write a program to find a given no. is divisible by 3 or not without using any arthimetic operators?
what will be the output for the following main() { printf("hi" "hello"); }
write aprogram for There is a mobile keypad with numbers 0-9 and alphabets on it. take input of 7 keys and then form a word from the alphabets present on those keys.
1 Answers iGate, Shashi, Source Bits, Subex,
What is the right way to use errno?
What is ## preprocessor operator in c?
Write a C program where input is: "My name is xyz". output is: "xyz is name My".
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
In a header file whether functions are declared or defined?
different between overloading and overriding
write a own function to compare two strings with out using stringcomparition function?