Introduction to Array
What is Array? A normal variable can hold a single value at a time. Say for example if we declare a variable of integer type, it can store any single integer valueRead More…
What is Array? A normal variable can hold a single value at a time. Say for example if we declare a variable of integer type, it can store any single integer valueRead More…
Process and Process State: In this article, we are going to discuss about process, process state diagram and process control block (PCB). A process is a program which is currently in execution.Read 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…