What is DOS
Computer Fundamental

What is DOS?

Disk Operating System (DOS command user interface) – it is a collection of special programs that supervise and control the operation of the personal computer.Functions of DOS: (a.) interprets and executes commands. (b.) manages the disks, files and directories. (c.) oversees and communicates with peripheral devices.Parts of DOS: A) DOS System Files – it consists […]

Rekha Setia 
Calculator in C++
C++ Programming

Calculator in C++

Calculator that performing as calculator which allows all Arithmetic Operators with operands as input #include<iostream.h> #include<stdlib.h> #include<conio.h> int calculator(int a,char c,int b) {     int h,w,x,z;     float y,m=0.0;     z=(a+b);     x=(a*b);     w=(a-b);     h=(a%b);     y=(a/b);     m=y;     switch(c)     {     case ‘+’:         cout<<a<<“+”<<b<<“=”<<z<<endl;         break;     case ‘-‘: […]

Rekha Setia 
Count of Odd and even,sum of odd and even,average array program in C++
C++ Programming

Count of Odd and even,sum of odd and even,average array program in C++

/* Fill up an array,print the array,count number of values,count the number of odd,count the number of even,sum  of odd ,sum of even,average,find largest value,find smallest */ #include<iostream.h> int fill_up(int array[],int size); void main() {     int array[10],size;     cout<<“Enter the size of an array:”<<endl;     cin>>size;     fill_up(array,size); } int fill_up(int array[],int size) {     […]

Rekha Setia 
Structure of C++ Program
C++ Programming

Structure of C++ Program

A program is a sequence of logical instructions that can be executed by a compiler in a computer. All programs are written to solve any problem by programming language. The best way to learn a programming starts from the root of that language. Therefore, here we will try to write our first program: Step-1: // […]

Rekha Setia 
Access Modifiers in Java
Java Programming

Access Modifiers in Java

ACCESS MODIFIERS……. Access modifier is a reserve key word  or we can say visibility controls which is used to restrict access.We can use these access modifier  to determine whether  a fields or methods in a class ,can be called or used by another class or sub class or not.That means these access modifiers can prevent […]

Rekha Setia 
What is C Programming
C Programming

What is C Programming?

The C Programming language is more than 40 years of old. It got its name because it was influenced by a now almost forgotten programming language called B(which was in turn derived from BCPL) C has gone on to spawn a lot other languages, utilized for both general and niche purposes.C itself, though, has never […]

Rekha Setia 
What is PYTHON
PYTHON

What is PYTHON?

Python is a clear and powerful object oriented programming dialect similar to Tcl,Java,Scheme,Perl. Python is a general-purpose language which expose it can be build pretty much anything, which will be made simple with the right apparatuses/libraries. Professionally, Python is incredible for backend web improvement, data investigation, computerized reasoning, and scientific computing.Numerous engineers have also  utilized […]

Rekha Setia 
HTML Basics with Example
HTML Tutorial

HTML Basics with Example

  The Basics of HTML – Learn How to Create a Basic HTML Web Page       If you know how to code HTML, you have the basis to design any Web site. HTML, a text document that is used by Web browsers to present text, graphics and pictures, stands for the Hyper Text […]

Rekha Setia 
Pointers in C with Example
C Programming

Pointers in C with Example

Introduction of Pointer in C A pointer is a variable in the C Programming Language that holds the address of another variable of the same data type. For example, an integer variable contains an integer value, however, an integer pointer holds the address of an integer variable. Pointers in C have derived data types. Whenever a variable […]

Rekha Setia