Wednesday, January 25, 2012

PROGRAM ON CONDITION NAME TO CHECK THE CHARACTERS


       IDENTIFICATION DIVISION.
       PROGRAM-ID "CONDITION-NAME".
       AUTHOR "ABC".
       DATE-WRITTEN 18/01/2012.
       DATE-COMPILED 18/01/2012.
     
       ENVIRONMENT DIVISION.
       CONFIGURATION SECTION.
       SOURCE-COMPUTER P4.
       OBJECT-COMPUTER P4.
     

Tuesday, January 24, 2012

PROGRAM TO CREATE SEQUENTIAL FILE

       IDENTIFICATION DIVISION.
       PROGRAM-ID "EMPLOYEE".
       AUTHOR "DEEPAK".
       DATE-WRITTEN 18/01/2012.
       DATE-COMPILED 18/01/2012.
       
       ENVIRONMENT DIVISION.
       CONFIGURATION SECTION.
       SOURCE-COMPUTER P4.
       OBJECT-COMPUTER P4.
 

Tuesday, January 10, 2012

Program to check evenness & oddness and bubble sort


       IDENTIFICATION DIVISION.
       PROGRAM-ID "EVEN-ODD".
       AUTHOR "ABC".
       DATE-WRITTEN 04/01/2012.
       DATE-COMPILED 04/01/2012.
       ENVIRONMENT DIVISION.
       CONFIGURATION SECTION.
       SOURCE-COMPUTER P4.
       OBJECT-COMPUTER P4.
       DATA DIVISION.
       WORKING-STORAGE SECTION.
       77 N PIC 99.
       77 Q PIC 99.
       77 R PIC 99.

Program to check prime number and leap year


       IDENTIFICATION DIVISION.
       PROGRAM-ID "PRIME".
       AUTHOR "ABC".
       DATE-WRITTEN 04/01/2012.
       DATE-COMPILED 04/01/2012.
       ENVIRONMENT DIVISION.
       CONFIGURATION SECTION.
       SOURCE-COMPUTER P4.
       OBJECT-COMPUTER P4.
       DATA DIVISION.
       WORKING-STORAGE SECTION.
       77 N PIC 99.
       77 I PIC 99.
       77 Q PIC 99.
       77 R PIC 99.
   

COBOL compiler

click below to download

download


Runs fine on windows xp & windows 7 32-bit.
Windows 7 64-bit edition users have to use ms-dos emulator DOS-BOX.
click here to download.

password is: deepaklama90

Thursday, December 29, 2011

How to Remove Virus Manually in Windows















Start->Run->type cmd


in each drive type attrib /s /d it will display the list of all files in that drive along with folders.concentrate on files having SHR attribute.normally virus files have two characteristics


1.SHR attribute


2.Queer name like amvo.exe,r6r.exe,autorun.inf etc.

10 Ways To Access Blocked WebSites


Websites like facebook, twitter and other social networking sites are generally blocked in schools, colleges and offices. There exist some tricks by which you can bypass the restrictions and access blocked sites, the most obvious is the use of proxies or Anonymizer websites. But using proxies doesn’t always works as they gets blocked by firewall as well . Here I am listing some other methods to access blocked contents.




Monday, August 15, 2011

Implement the concept of stack in c++


PROGRAM:

#include<iostream.h>
#include<conio.h>
#define MAX 20

class stack
{
private:
int s[MAX];
int top,item;

public:
stack()
{
top=-1;
}

Sunday, August 7, 2011

Implementation of Unary operator overloading using friend function.


#include<iostream.h>
#include<conio.h>

class point
{
private:
int x,y;
public:
point(int i,int j)
{
x=i;
y=j;
}