Saturday 11 January 2014

About C Plus Online Blog

                                                              
Cplusonline.blogspot.com  is a collection of various type of Programmings tutorials i.e. Object Oriented Programmings,notes of different Programming languages .This blog is  basically written for the programming learners as well as the students who require the knowledge of C++ or other Programming Languages.
All the learners can easily understand the Programming Concepts and the programmings language also. They can also Learns Like C,Java,Web Designing and Web development also for the job Puspose or for the Subject in the Syllabus In Schools or colleges.

Railway-Reservation MINI PROJECT in C

#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
#include<string.h>
#include<iostream.h>
#include<time.h>
#include<iomanip.h>
#include<fstream.h>

PROGRAMS : (C & C++ Programming)


1.         Find the roots of a quadratic equation.

2.         Find whether given number is prime or not.

3.         Find the reverse of a given number.
            (Ex : 12345 becomes 54321).

4.         Find whether given number is palindrome or not.
            (Ex : 34543)

Data Structure Using C/C++ Language examples list


  1. Write a program to calculate the area and circumference of a circle using the relation.    ( Area = πr2  ) and circumference = 2πr.
  2. Write a program to find the grade obtained by the students of a class.
  3. Write a program to find the largest and the smallest from the given three integers.
  4. Write a program to find sum, difference, product and quotient of any two integers as per the choice of the user.
  5. Write a program to print a chart showing the temperature in centigrade from 0° to 100° to with their corresponding values in Farenhiet, using while loop and using the relation  C / 5 = F-32 / 9

JAVA OR INTERNET PROGRAMMING LIST( JAVA)


  1. Converting Temperature in Fahrenheit into Temperature in Celsius.
  2. Program for student Mark-List preparation
  3. Program for reverse and finding sum of individual digits of a given number
  4. Program to generate Fibonacci series
  5. Program for finding Factorial of a given number
  6. Program for find whether a given number is prime or not.
  7. Program for sorting the given numbers in Ascending and Descending order.
  8. Program for Matrix Multiplication

SOFTWARE ENGINEERING PRACTICAL QUESTIONS LISTS

1.Describe as many source of information as you can think of that should be consulted in order to perform a domain analysis for each of the following systems.
a.       Airline Reservation System
b.      The investments System
  1. You are developing a system for managing the processes of a small town public library. List all the actors for this system.
  2. An organization has three categories of employees : Professional staff, technical staff and support staff. The organization also has departments and divisions. Each employee belongs to either a departments or a divisions. Draw a class diagram corresponding to this. Assume that there will be different attributes or operations in all the classes, and that people will never need to change from one category to another.

VISUAL BASIC & WINDOWS PROGRAMMING LIST

VISUAL BASIC PROGRAMMING
  1. To write a Visual Basic application for calculator that will perform simple as well as complex calculations.
  2. To write a Visual Basic application for inserting and deleting strings from the list box.
  3. To develop a visual basic application for displaying the contents of the selected file using the file list box , directory list box and drive list box.
  4. To write a Visual Basic application to make a label to scroll from left to right and vice versa and change the mouse icon at each of the 8 * 8 cells.
  5. To create a menu editor with cut, copy and paste operations and search the word in the text.
  6. To create a Visual Basic application for a basic designer for drawing Line, Circle, Rectangle, Ellipse and Triangle.

A C++ program to perform linear search.

#include<iostream.h>
#include<conio.h>
Void main()
{
            Int a[100],n,ser;
Clrscr();
            Cout<<’\n Enter The Size of the value:”;
            Cin>>n;

A C++ program to find whether given triangle is isosceles or not.


#include<iostream.h>
#include<conio.h>
#include<stdio.h>
void main()
{
clrscr();
int a,b,c,angle;
cout<<"\n Enter the three sides=";
cin>>a>>b>>c;

calculates grade of every student.

A C++ program which calculates grade of every student.

Range
Grade
>90
O
90<to>80
C
80<to>70
B
70<to>60
A
<60
E


#include<iostream.h>
#include<conio.h>
Void main()
{