Real Time System
It is a special purpose operating system. It is used when rigid time requirement have been placed on the operation of a procedure or the flow of data. It is often usedRead More…
It is a special purpose operating system. It is used when rigid time requirement have been placed on the operation of a procedure or the flow of data. It is often usedRead More…
In a non-interactive computing environment, a user has no direct contact with his program during its execution. Multi programming and batch operating system provides such environment where the various system resources areRead More…
A single user program cannot keep the CPU busy at all the time. The OS can put many user programs in the memory and let the CPU execute instructions of one programRead More…
When multiple decisions involved in the program at that time we can use else…if ladder but some time it is difficult to read and understand. In addition to this when the numbersRead More…
When one if statement contains another if statement then such type of structure is known as nested if. Nested if structure also helps in multi-way decision making where one condition depends onRead More…
When we have multiple options available or we need to take multiple decisions based on available condition, we can use another form of if statement called else…if ladder. In else…if ladder eachRead More…
If …else statement is an extension of simple if statement. When we have two different path to follow,then simple if statement cannot be useful because if provides a single path to follow.Read More…
Normally in c programming language statement are execute in a sequenced manner. Sometime we need to execute some statement based on some specific condition. Depending on the condition either we have toRead More…
Upper(): It returns specified string into the upper case. Syntax: Upper(String or Filed); Example: SELECT upper(‘Welcome’) FROM DUAL; // with constant String SELECT upper(firstName) FROM EMP ; // where firstName is aRead More…
An operator is a special symbol that tells the compiler to perform some task. C- Language provides large number of In-build operators. An operator operates on operands. Operators can be dividing intoRead More…