January 2012

Graphics Project : Bar Diagram [A Project work in Computer Graphics]

This was a Computer Graphics Project named Bar Diagram required in the coursework. [A Project work in Computer Graphics] #include #include #include #include #include #include /*FUNCTION FOR READING DATA FROM USER*/ void input(float ,float,float,float,float,float); /*FUNCTION FOR DRAWING BAR DIAGRAM*/ void bar1 (float); void bar2 (float); void bar3 (float); void bar4 (float); void bar5 (float); void …

Graphics Project : Bar Diagram [A Project work in Computer Graphics] Read complete article »

Write an assembly language program (Intel 8086) to READ A STRING, CONVERT IT INTO UPPER CASE AND FINALLY DISPLAY THE CONVERTED STRING

Write an assembly language program (Intel 8086) to READ A STRING, CONVERT IT INTO UPPER CASE AND FINALLY DISPLAY THE CONVERTED STRING title ALP to read a string, convert it into upper case and display the converted string dosseg .model small .stack 100H .code main proc far mov ax, @data ; initialize ds register mov …

Write an assembly language program (Intel 8086) to READ A STRING, CONVERT IT INTO UPPER CASE AND FINALLY DISPLAY THE CONVERTED STRING Read complete article »

To evaluate ordinary differential equations by RK-4 (Classical) Method

Evaluating ordinary differential equations by RK-4 or classical method both order first and second //To compute ordinary differential equations by RK-4 or classical method for order first #include #include #include void main() { cout<<“\t first order R-K 4th Classical Method\t”< double h,n,m1,i,m2,m3,m4,x[100],y[100]; cout<<“Number of intervals “; cin>>n; cout< cout<<“Enter the value of h”<<<“h = “; …

To evaluate ordinary differential equations by RK-4 (Classical) Method Read complete article »

To calculate the value of an integer using Trapezoidal rule both when functional values are both given and values NOT given independently

Trapezoidal rule can be applied to find the value of a limiting integer programmatically in both cases whether individual functional values are given or not. A complete algorithm follows the both process below. /********* Trapezoidal rule complete algorithm 1. start 2. read n= no of intervals 3. read initial and final values ie a,b 4. …

To calculate the value of an integer using Trapezoidal rule both when functional values are both given and values NOT given independently Read complete article »

Scroll to Top