I/O Constraints
I/O Constraints Constrains that control data insertion and data retrieval speed are known as I/O (Input-Output) constraints. It includes the following constraints. Primary Key Foreign Key Unique Key Not Null Primary KeyRead More…
I/O Constraints Constrains that control data insertion and data retrieval speed are known as I/O (Input-Output) constraints. It includes the following constraints. Primary Key Foreign Key Unique Key Not Null Primary KeyRead More…
Sometimes we need to provide some restriction on the data for security and data integrity reason. We must ensure that only valid and complete data should be stored into the database. OracleRead More…
C programming language provides a rich set of string handling functions to perform different task on string easily. They are available inside string.h header file so we need to include string.h intoRead More…
Overloading refers to the process of using the same thing for different purposes. It is also referred to as function polymorphism. It works on the concept “Same name, multiple tasks”. In programmingRead More…
Problem in Using Normal Function The main advantage of function is to save codding efforts, memory space and reusability. But whenever we call a function, it consume a lot of time sayRead More…
CPU scheduling is the basis of multi-programming operating system. By switching the CPU among the processes the operating system can make the use of computer effectively. The objective of multi programming isRead More…
What is Context Switch? When the processor moves from one process to another process, it is called context switch. The CPU will be deallocated from the old process and the new processRead More…
Arrays of string can be represented using the two dimension character array. An array having two subscripts is known as two-dimension array. Two-dimensional array is a collection of rows and columns soRead More…
A String is an array of character. We can easily represent a string using one dimension array. Similar to an array of integer that allows storing collection of integer values, we canRead More…
A process transfers between various scheduling queues throughout its lifetime. The operating system must select a process from these queues in some order for scheduling purposes. The selection process is done byRead More…