WHAT'S NEW?
Loading...

Longform of BIOS

BIOS:- Basic Input Output System

Longform of Laptop

LAPTOP:- "Lightweight Analyatical Platform for Total Optimizing of Power"

Difference between Buffering & Spooling


Buffering:-

Buffering is a method of overlapping the computation of a job with its execution. It temporarily stores input or output data in an attempt to better match the speeds of two devices such as a fast CPU and a slow disk drive. If, for example, the CPU writes information to the buffer, it can continue in its computation while the disk drive stores the information. 

With spooling, the disk is used as a very large buffer. Usually complete jobs are queued on disk to be completed later. A typical example is the spooler for a printer. When a print job is issued, the spooler takes care of it, sending it to the printer if it is not busy, or storing it on disk otherwise. 

The main difference between buffering and spooling is that the latter allows the I/O of one job to overlap the computation of another. Buffering only allows the I/O of a job to overlap with its own computation. 

SPOLLING:
SPOOL(Simultaneous Peripheral Operations On Line)

Spooling is better than Buffering all the way... In Spooling,CPU Allows overlap of one Job with the computation and output of other job...whereas in Buffering,the CPU overlaps input,output and processing of a single Job. (Job = Program) 
Even in a simple system,the spooler may be reading the input of one job while printing the output of a different job. 

See Zoom TV

You can see Zoom Tv here:

This is what i have get error.

String Palindrome program in Java

import java.util.*;
import java.lang.*;

class palindrome
{
 public static void main(String args[])
 {
   Scanner din=new Scanner(System.in);
   
   System.out.println("Enter a string: ");
   String str=din.next();

   String rstr=new StringBuffer(str).reverse().toString();
  
   if(str.equals(rstr))
    System.out.println("Enterred string is palindrome.");
   else
    System.out.println("Enterred string isnt a palindrome string.");
 
 }
}

Songs Sites

Songs Sites :

http://www.songsone.com

http://www.djmaza.com

http://www.downloadming.com

http://www.hindigeetmala.com

http://www.geetganga.org

http://www.mp3fundoo.com

http://www.skillsongs.com

This sites are for those who loves music.Visit that sites & download your favourite songs.

Test a website

Tools for Testing a Website :

>http://www.woorank.com

>htpp://www.wave.webaim.org

>http://www.myipneighbours.com

>http://www.tools.pingdom.com

>http://www.browsershots.com

For programming

If you want some program cheat codes,just visit following site:

http://www.dreamincode.net

It can be useful for us.