Skip to main content

Posts

Showing posts from November, 2016

3RD SEMESTER DATESHEET(BCA-2nd Year)

3rd-Semester DateSheet(2nd Year) Theory Examination : Timing:  01:30 P.M. TO 04:30 P.M. Subject Date Day Practical Lab 28-11-16 Monday Computer-based Num. (CONM) 09-12-16 Friday Datastructures 13-12-16 Tuesday OOPS 16-12-16 Friday NOTE: The candidates must be in their seats at 1:15 P.M sharp as per date sheet above.The question paper will be distributed at 01:30 P.M sharp and the examination will continue till 04:30 P.M. Check out 3rd Semester-Syllabus: CONM Datastructures OOPS Practical Timings: Morning Session: 9:00 a.m to 1.00 p.m Evening Session: 1:30 p.m to 5:30 p.m

IMPORTANT PROGRAMS

Practical Programs Practical Timings : Morning Session: 9:00 a.m to 1.00 p.m OOPS Factorial   Function-Overloading Constructor-Overloading Inheritance CONM Bisection Method To find Arithmetic mean using Step Deviation method Newton-Raphson Data structures Queue   Insertion Sort Selection Sort Bubble Sort

TO FIND ARITHMETIC MEAN BY STEP DEVIATION METHOD

TO FIND ARITHMETIC MEAN BY STEP DEVIATION METHOD

FUNCTION OVERLOADING

Function Overloading #include<iostream> #include<conio.h> using namespace std; void area(int,int,int); void area(int,int); void area(int); int main() { int side=9; area(side); int len=7,bre=8; area(len,bre); int a=3,b=2,c=9; area(a,b,c); cout<<"\n END" ; getch(); return 0; }

QUEUE

QUEUE   //QUEUE #include<stdio.h> #include<conio.h> #include<alloc.h> typedef struct stk { int info; struct stk *link; }node; node *start; void create() { printf("\n'Create' Function Called\n"); start=NULL; } void enqueue() {

INSERTION SORT

Insertion Sort #include<iostream> #include<conio.h> using namespace std; int main() { int a[]={1,2,6,8,9,4,5,7,0,3,2}; int temp; for(int i=0;i<11;i++) { for( int j=0;j<11;j++ ) { if( a[j+1]<a[j] ) { temp=a[j]; a[j]=a[j+1]; a[j+1]=temp; }

LIST OF PROGRAMS

Practical Lab Quadratic   Bisection  False position  Newton raphson  Birgei vieta    Soln. of simultaneous linear equation   Gauss seidal method    Interpolation    Construct a diff. Table (forward /backward /divided)   Any one -  Newton Forward   Newton Backward   Newton Divided   Lagrange   Integration   Find integral value using - Simpsons ⅓  Simpsons ⅜  Statistics   Mean (AM) - any series - step deviation  Dispersion- md/sd  Correlation Coefficient  Regression lines

STATISTICS

Download the *full Statistics assignment PDF from below- Statistics PDF

5TH-SEMESTER DATESHEET(3RD YEAR)

5th-Semester DateSheet(3rd Year) Theory Examination : Timing:  1:30 P.M. TO 04:30 P.M. Subject Date Day Practical Lab 29-11-16 Tuesday ENTREPRENEURSHIP DEV. PROGRAMME 10-12-2016 Saturday Computer Graphics 14-12-16 Wednesday DISCRETE MATHEMATICS 17-12-16 Saturday NOTE: The candidates must be in their seats at 1:15 P.M sharp as per date sheet above.The question paper will be distributed at 1:30 P.M sharp and the examination will continue till 04:30 P.M. Check out 5th Semester-Syllabus: Entrepreneurship Dev. Programme Computer Graphics Discrete Mathematics Practical Timings: Morning Session: 9:00 a.m to 1.00 p.m Evening Session: 1:30 p.m to 5:30 p.m