Skip to main content

Posts

Delete Operation

Delete Operation in C++ using class::  By A.P...     " it is used to remove to a data items In the given collection of data items. "            #include "iostream.h"        #include"conio.h"            Class ap                        {                  int arr[100];            public :                    void get_data();                   void del_data();              };             void ap::get_data()        {                 int size, i;            ...
Recent posts

Shorting Operation in c++

Shorting Operation Using Class in c++ ::           #include"iostream.h"           #include"condo.h"           class ap                                  {                  int a [10];            public :                         void get_data();                   void sort_data();                 }         void ap ::get_data()        {                 int i;           cout<<endl<<"enter elements ";          for (i=0; i...

Insertion Operation

Insertion Operation Using Class::             #include"iostream.h"           #include"conio.h"     Class ap                    {                                  int arr[100],size;               public:                                         void get_data();                          void insert_data();                          void show ();            };    void ap::get_data()   {              ...

About the Topology

Topology; :- (By A.P )           Topology define the structure of network, how all the components are interconnect to each other.  Type of topology;:- Bush topology  Ring topology  Tree topology  Star topology  Hybrid topology      Bus Topology :      Bus topology is the type of  topology which is every network devices connected to single cable. Every Bus topology have two end point. Example :- Ring topology :             Ring topology is a  network  topology type in , which every computer and network device is connected to the ring sequence. that the reason it is called ring topology.  Star Topology ::     In this type of topology all the computer and network device are connected to a single HUB through a cable. Tree topology ::        Tree topology is the ...

History of C++

C++:: (By A.P.)     C++ is the programming language was introduced "BJARNE STROUSTRUP".   C++ was developed in the year of 1971 to 1974. C++ is a high level programming language,  Which is of OOP( object oriented programme ) nature based language.  The major different between C and C++ is that C was function oriented Language and C++ is based on OOP ( object oriented programme ) concept.  As increment operator in C is ++ . So the newly supposed language, after C was named as c++. As it's name suggest, it  is more efficient and advanced in nature and features as  compared to C programming language.  Fast review :: C++-> Bjarne straustmp  C++-> year 1971 to 1974 in USA, LAB C++-> based on  OOP.  C++ keywords :    Keywords are reserved words that have specific meaning and use as variable . Some keywords in c++  are as follows ::-- asm     bool     ...

Object Oriented Programming :

* Object Oriented Programming ::    An OOP (object oriented programming ) is a concepts or programming principle which is used as a latest Programming methodology on which current programming language are based such as--: C++ Java C# Python This programming concept is best suited on which the current software development synory is based. It comprises all expects of software development that are require to developed such software which is perfect accurate and diligent.  The programming approach provide all necessary tool that are needed during development to make software secure smart and expendable. An OOP approach oriented approach which was introduced before the evolution of OOP  concepts procedure . Oriented Language such as C, pascal etc are based on processor oriented programming concept. In procedure programming approach a program is divided into modules or blocks that are know as function or procedure. It was an earlest approach in which ...