Tuesday, March 31, 2015

Cursors in SQL Server

0 comments
What are Cursors? A cursor is a temporary work area created in the system memory when a SQL statement is executed. A cursor contains information on a select statement and the rows of data accessed by it. This temporary work area is used to store the data retrieved from the database, and...
Read full post »

Monday, March 30, 2015

Types of Operating System in Computer Machine

0 comments
Batch processing Operating System Batch processing is a technique in which Operating System collects one programs and data together in a batch before processing starts. Operating system does the following activities related to batch processing. OS defines a job which has predefined...
Read full post »

What is an Operating System (OS)

0 comments
Operating System (OS) An operating system (OS) is software that manages computer hardware and software resources and provides common services for computer programs. The operating system is an essential component of the systemsoftware in a computer system....
Read full post »

Sunday, March 29, 2015

Difference Compiler vs Interpreter in Programming Language

0 comments
Difference Compiler vs Interpreter  Compiler Interpreter Scans the entire program before translating it into machine code.  Translates and executes the program line by line.  Converts the entire program to machine...
Read full post »

Difference Between call by value and call by reference

0 comments
Difference Between call by value and call by reference  Call By Value  Call By Reference  Call by value return the value to the main function  Call by reference return the address to the main function.  Change in the sub function does...
Read full post »

Difference between array and linked list with Point

0 comments
Difference between array and linked list with Point Aspect Array Linked List Size ·        Fixed Number ·        Size need to be specific during declaration. ·        Grow...
Read full post »