Difference between multiprogramming and uniprogramming

What is uniprogramming Uniprogramming means one program sits in main memory at a time. Uniprogramming was used in old computers and mobiles. When the computer starts then operating system and application programs are loaded into main memory. We only count user programs running in RAM. RAM is also called main memory. In old operating systems (OS) only one program runs on the computer at a time. Either of [...]

By |2021-11-04T15:05:50+00:00July 19, 2018|computers|0 Comments

Difference between multiprogramming and multitasking

Definition of multiprogramming The process of sharing CPU time with multiple programs or jobs is called multiprogramming. Multiprogramming is based on content switching. In context switching, one job run until I/O interrupt occurs. When I/O interrupt occurs then CPU switch to another job. There may also occur other types of interrupts like event interrupt, memory interrupt, hardware interrupt etc. Interrupts are just like alert actions that notify CPU [...]

By |2021-11-04T15:47:46+00:00July 19, 2018|computers|0 Comments

Difference between batch processing and real time processing

What is batch processing In batch processing data is processed in parts. This type of processing is done at the end of the day, week, or month. Batch processing is used in many places like printing utility bills, processing credit cards, processing group of images in Photoshop. In batch processing, all data is stored in a master file. Data in the master file is first sorted and then [...]

By |2021-11-04T15:45:45+00:00July 14, 2018|computers|0 Comments

Find IP address, referrer, uri , operating system using php

Today i will teach you how to find IP address, referrer, uri , operating system using php. We will use $_SERVER to get all this information. $_SERVER['HTTP_REFERER'] is used to get the url of the page that refered the user to the current location. $_SERVER['REMOTE_ADDR'] is used the get the client IP address $_SERVER['REQUEST_URI'] is used to get the uri of the URL. For example the [...]

By |2017-09-12T19:15:36+00:00February 8, 2011|Programming|0 Comments
Go to Top