Static Data Member and Member Function
Static Data Member (Class variable): Static Data member has the following properties: It is initialized by zero when first object of class is created. Only one copy of static data member isRead More…
Static Data Member (Class variable): Static Data member has the following properties: It is initialized by zero when first object of class is created. Only one copy of static data member isRead More…
Similar to passing primary data-type variables, we can also pass object as argument to the function. Objects can be passed by two methods: Call by value: In this method a copy ofRead More…
As we know that in C programming language it is compulsory to pass all arguments during function call, which are used in function definition, but C++ allows us to call a functionRead More…
Function in C++ program is similar to function in C program. Function provides the top-down structured programming approach. It also provides re-usability that means we can use the same function multiple times.Read More…
Monolithic system Structure is written as a collection of procedures, each of which can call any other procedure whenever it needs. When this technique is used each procedure in the system hasRead More…
ALTER TABLE command is used to modify table structure. We can add new column, remove existing column or change data type and size by using alter table command. If records are availableRead More…
Oracle provides number of in-built functions. Oracle functions can be divided into two broad categories: Scalar functions Scalar functions are those functions that operates on individual row. It can be categories asRead More…
Aggregate functions are those functions that can be apply on multiple rows and returns signal result for all rows. They are also known as grouping functions. Oracle provides the following aggregate function.Read More…
In the layered system structure, operating system is organized as hierarchy of layers; each of the layers is constructed upon one another. The lowest layer (layer 0) contains hardware and the topRead More…
Break: A break statement can be used to terminate or to come out from the loop or conditional statement unconditionally. It can be used in switch statement to break and come outRead More…