Exit Control Loop
An Exit Control Loop checks the condition for exit and if given condition for exit evaluate to true, control will exit from the loop body else control will enter again into theRead More…
An Exit Control Loop checks the condition for exit and if given condition for exit evaluate to true, control will exit from the loop body else control will enter again into theRead More…
An entry control loop checks the condition at the time of entry and if condition or expression becomes true then control transfers into the body of the loop. Such type of loopRead More…
C-programming language provides one of the most powerful features known as looping structure When we want to execute some statements repeatedly based on some specific condition looping structure can be helpful. LoopingRead More…
C-language provides goto statement to transfer control unconditionally to other part of the program. Although use of goto statement is not advisable but sometime it is desirable to use go to statement.Read More…
ABS () It returns absolute value of the given values. Syntax: ABS (Val); Example: SELECT abs (-15) FROM DUAL ; Output: 15 Power () It returns power of Mn where m isRead More…
Add_Month: It returns date after adding specifies number of months in to the given dates. Syntax: Add_Month (date, month); Example: SELECT add_Month (sysdate, 3) FROM DUAL ; Output: 15-Aug-2016 ; Last_Day: ItRead More…
Conversion function are used to convert one data type value into another data type. to_number(): It converts character value in to the numeric data type. Syntax: to_number (char); Example: SELECT to_number (substrRead More…
A distributed computer system consists of several computer systems connected through a network for the communication and resource sharing purpose. A distributed system is a system consisting of two or more nodes,Read 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…