Simple Program
CLS
s$ = "NEPAL"
r = 1
t = 10
FOR i = 5 TO 1 STEP -2
PRINT TAB(t); MID$(s$, r, i)
r = r + 2
t = t + 2
NEXT i
END
by using SUB END SUB
DECLARE SUB pat(a...Read more »
Class is a blueprint to template of real world objects that specifies what data and what methods will be included in object of the class. Class is also called description group of object objects havin...Read more »
JSP is a Java Server side technology that does all the processing at server. It is used for creating dynamic web application using Java as programming language.
JSP Program to print "I Love Pro...Read more »
Array is a data structure which contains of similar data type. We store only fixed set of elements in a java array. Array is used to store a collection of data, but it is often more useful to think of...Read more »
The thread is a lightweight process that means one single program can be divided into small threads which will execute concurrently for fast execution of task. We can say that thread is a sub pr...Read more »
Write a Java program to create a form with student id, student name, level, and two button insert and clear. Handle the event such that buttons with perform the operations as implied by their name.
...Read more »
Multiprocessing is the use of two or more central processing unit within a single computer system. The term also refers to the ability of a system to support more than one processor or the ability to ...Read more »
A process scheduler schedules different process to be assigned to the CPU based on particular scheduling algorithms. In this section we will discuss about FCFS (First come First Server) Scheduling alg...Read more »
Device driver is the software that is responsible for communicating with device controller and reset of the operating system. Device drivers are vendor specific software and are provided by I/O device...Read more »
Fragmentation refers to the condition of disk in which files are divided into pieces scattered around the disk. Fragmentation occurs naturally when we use a disk frequently, creating, deleting and mod...Read more »
virtual memory is a section of a hard disk that's set up to emulate the computer's RAM.
A computer can address more memory than the amount physically installed on the system. This extra memory is a...Read more »
Concept of semaphore was devised by Dijkastra in 1965. Semaphore is an integer variable that is used to record number of weakups and had been saved. If it is equal to zero it indicates that no wake...Read more »
The shell is an interface between user and the operating system
The operating system shell is the mechanism that carries out the system calls requested by the various parts of the system.
...Read more »
Mainframe Operating Systems:
A mainframe with 1000 disks and thousands of gigabytes of data is not unusual. Mainframes are normally used as web servers, servers for large-scale electronic co...Read more »
In this section we take a brief look at the history of operating system which is almost the same as looking at the history of computers.
First Generation (1945-1955)
During second second world wa...Read more »
Paged virtual memory is one-dimensional in which virtual addresses goes from 0 to some maximum address
A segment is a logical entity. It might contain a procedure, or an array, or a stack, or a colle...Read more »
If a system does not employ either a deadlock-prevention or a deadlock-avoidance algorithm, then a deadlock situation may occur. In this environment, the system must provide:
An algorithm that examin...Read more »
One way to avoid race conditions is not to allow two processes to be in their critical sections at the same time.
Critical section is the part of the process that accesses a shared variable.&n...Read more »
Race conditions are situations where two or more processes reads or writes some shared data at the same time and the final result is incorrect.
Final result may be different according to order ...Read more »
System calls are the interface between the operating system and the user programs. Access to the operating system is done through system calls.
Each system call has a procedure associated with it so ...Read more »
Process
Process is a program that is ready for execution in CPU. When a program is loaded into memory, it becomes ready for execution and competes with other process to access CPU. Thus when ...Read more »