Posts

Showing posts from July, 2023

Programs

Image
   PROGRAMS DESCRIBED IN DAY 4 VIDEO ON YOUTUBE Program 1 : Program to describe for loop //Program to describe for loop #include<iostream.h> #include<conio.h> void main() {    int i;    clrscr();    for(i=1;i<=10;i++)       cout<<i<<endl;    getch(); } ---------------------------------------------------------------------------------------------------------------------- Program 2 : Program to describe while loop //Program to describe for loop #include<iostream.h> #include<conio.h> void main() {    int i,sum=0;    clrscr();    for(i=1;i<=10;i++)    {       cout<<i<<endl;       sum=sum+i;    }    cout<<"\n Addition of all numbers from 1 to 10 is "<<sum;    getch(); } -------------------------------------------------------------------------------------------------...
Image
 PROGRAMS DESCRIBED IN DAY 4 VIDEO ON YOUTUBE Program 1 : Hello World Program // Program to display hello world on screen #include<iostream.h> #include<conio.h> void main() {   clrscr();   cout<<"Hello World";   getch(); }
Image
 Object Oriented Programming using C++ Day 1 - Introduction :  OBJECT-ORIENTED PROGRAMMING PARADIGM The first object-oriented language Simula was developed in 1960 by researchers at the Norwegian Computing Center. In 1970, Alan Kay and his research group created a personal computer named Dynabook and the first pure object-oriented programming language (OOPL) - Smalltalk, for programming the Dynabook. In the 1980s, Ada. Object Oriented Programming language was developed. In the 1990s, Coad incorporated behavioral ideas into object-oriented methods. OBJECT ORIENTED ANALYSIS Object–Oriented Analysis (OOA) is the procedure of identifying the requirements for the program In the Object-oriented approach, requirements are organized around objects, which integrate both data and functions. They are modeled after real-world objects that the system interacts with. In traditional analysis methodologies, the two aspects - functions and data - are considered separately. According to Grady B...