Showing posts with label Student Corner. Show all posts
Showing posts with label Student Corner. Show all posts

Sunday, November 4, 2018

Inheritance Programs in C++


Ref: Kamthane.


/*C++ program to demonstrate example of private simple inheritance.*/

#include
using namespace std;
class A
{   private:
        int a;
    protected:
        int x;  //can access by the derived class
    public:
        void setVal(int v)
        {  x=v;   }
};
class B:private A
{
    public:
        void printVal(void)
        {
            setVal(10);  //accessing public member function here //protected data member direct access here
            cout << "value of x: " << x << endl;
        }
};
int main()
{
        B objB; //derived class creation
        objB.printVal();
        return 0;
}


/* C++ program to demonstrate example of multilevel inheritance.*/

#include
using namespace std;

//Base Class : class A
class A
{
    private:
        int a;
    public:
        void get_a(int val_a)
        {  a=val_a;  }
       
        void disp_a(void)
        {  cout << "Value of a: " << a << endl;   }
};
class B: public A
{
    private:
        int b;
    public:
        void get_b(int val_a, int val_b)
        {
            get_a(val_a);      //assign value of a by calling function of class A
            b=val_b;
        }
        void disp_b(void)
        {
            //display value of a
            disp_a();
            cout << "Value of b: " << b << endl;
        }
};

//Here class C is derived class and B is Base class

class C: public B
{
    private:
        int c;
    public:
        //assign value of a from here
        void get_c(int val_a, int val_b,int val_c)
        {
            /*** Multilevel Inheritance ***/
            //assign value of a, bby calling function of class B and Class A
            //here Class A is inherited on Class B, and Class B in inherited on Class B
            get_b(val_a,val_b);
            c=val_c;
        }
       
        void disp_c(void)
        {
            disp_b(); //display value of a and b using disp_b()
            cout << "Value of c: " << c << endl;
        }
};

int main()
{
    //create object of final class, which is Class C
    C objC;
    objC.get_c(10,20,30);
    objC.disp_c();
    return 0;
}
---------------------

/* C++ program to demonstrate example of Multiple inheritance.*/
class A
  {
    protected:
        int a;
  }
class B
  {
    protected:
        int b;
  }
class C
  {
    protected:
        int c;
  }
class D
  {
    protected:
        int d;
  }

class E:public A,B,C,D
  {
      int e;
     public:
      void getdata()
        {
          cout<<"\n Enter the values of a,b,c,d,e";
          cin>>a>>b>>c>>d>>e;
        }
      void showdata()
        {
          cout<<"\n Values of a"<

Saturday, November 3, 2018

Proejct Table Structures - Setting General Tables

Master  Tables


State_Master
id Auto Generated
code Auto Generated
Name User Input
ShortName User Input
createby Logged in User
createdate System Date
updateby Logged in User
updatedate System Date
STATUS User Input



Country_Master
id Auto Generated
code Auto Generated
Name User Input
ShortName User Input
createby Logged in User
createdate System Date
updateby Logged in User
updatedate System Date
STATUS User Input

Type_Master
id Auto Generated
code Auto Generated
Name User Input
createby Logged in User
createdate System Date
updateby Logged in User
updatedate System Date
STATUS User Input


SubType_Master
id Auto Generated
code Auto Generated
Name User Input
typeid Ref - Type_Master
createby Logged in User
createdate System Date
updateby Logged in User
updatedate System Date
STATUS User Input


User_Master
id Auto Generated
code Auto Generated
F_NAME      User Input
M_NAME      User Input
L_NAME      User Input
USER_NAME  
PASSWORD User Input
TYPEID      Ref - Type_Master
FIRST_LOGIN Auto Generated
EXPIRYDATE  Auto Generated
PASSUPDATE  Auto Generated
createby System Date
createdate Logged in User
updateby System Date
updatedate User Input
STATUS      User Input


First_Load (Back End table)
COMPANY_CODE    
COMPANY_NAME    
SOFTWARE_VERSION
SOFTWARE_NAME   
MAINSCREEN_PATH 
MOBILE_NO1      
MOBILE_NO2      
WEBSITE         
ADDRESS         
TAG_LINE        
PHONE_NO        
createby
createdate
updateby
updatedate
STATUS      User Input


SETTING_MASTER
 ID             Auto Generated
 CODE           Auto Generated
 FORM_NAME      User Input
 FORM_NAME_MENU User Input
 FORM_PATH      User Input
createby Logged in User
createdate System Date
updateby Logged in User
updatedate System Date
 STATUS         User Input

Tuesday, July 24, 2018

C++ Console Input/Output Function

/* This file contains program related to console input and output */

#include
#include

// 1. Program shows the application of setf function for left padding
int main()
{
   cout.width(20);
   cout.setf(ios::left,ios::adjustfield);
   cout.fill('*');
   cout<<"IT";
}

//2. Program shows the application of setf function right padding
int main()
{
   cout.width(20);
   cout.setf(ios::right,ios::adjustfield);
   cout.fill('*');
   cout<<"IT";
}

//3. Program shows the application of internal
int main()
{
   cout<<-3 .15="" n="" p="">   cout.width(20);
   cout.setf(ios::internal,ios::adjustfield);
   cout.fill('*');
   cout<<-3 .15="" p="">}

//4.  Program shows the application scientific
int main()
{
   cout<<-3 .15="" n="" p="">   cout.width(20);
   cout.setf(ios::scientific,ios::floatfield);
   cout.fill('*');
   cout<<-3 .15="" p="">}


//5.  Program to print of Hexa Decimal, Octal, Decimal No.
int main()
{
    int x = 65;   
   cout.width(20);
   cout.setf(ios::hex,ios::basefield);
   cout<<"\n Hexa -> "<   cout.setf(ios::oct,ios::basefield);
   cout<<"\n Octal -> "<   cout.setf(ios::dec,ios::basefield);
   cout<<"\n Dec -> "<}

Wednesday, September 7, 2016

Stories



1. Big John Does not Pay - Think before doing something

2. Lion with Goats - Identify your self.

3. Maharish Aurobindo: Objective of the life.

4. Sardar Patel: Power of the Person

5. Dr. Radha Krishana Sarv Palli: Wisdom of a person

6. Bicchu and Mahatam: Nature of the person

7. Snak and Mahatma:  What we should do?

8. Japani and India Roaring Competetion.Importance of leader.

9. Naramurthi and Wipro: Inspiration

10. Tortoise Family and Picnic: Think and Think dont do

11. Akbar Veerbal Null values stories.



Title For College Project

List of Projects of Project for Computer Science and Application Students


1.      Railway Reservation & Inquiry System
2.      School Management
3.      Reliance Web World
4.      College Management System
5.      Income Tax Management
6.      Library Management
7.      Cyber Café Management
8.      Payroll Management
9.      Address Book
10.   Gas Agency Management
11.   JET Airways
12.   Jewellery Shop Management
13.   Inventory Control
14.   Result Management
15.   Simple Business Solution System
16.    Telephone Directory Management System
17.   Transport Management System
18.   Computer Center Management
19.   Hotel Management
20.   Hero Honda Showroom
21.   Retail Shop Management
22.   Job Consultancy
23.   Krishna Dutt Book Store Management
24.   Bus Reservation System
25.   Employ Information System
26.   Institute Management System
27.   ‘Italian Food Restaurant’ Management System
28.   Car Workshop Management
29.   Canteen Automation
30.   Hospital Management
31.   Lab Assistant Software
32.   Mobile Shop
33.   Customer Detail System
34.   Transport Management
35.   College Management
36.   Hotel  Management
37.   Home Loan(Cent Bank
38.   Online Examination
39.   Computer Shop Management
40.   Domestic Gas agency
41.   Showroom Management
42.   School Management
43.   Nokia care Project
44.   Patrol Pump Management
45.   Project on Departmental store
46.   Online Test enrollment
47.   LIC
48.   Telephone directory
49.   ATM Management
50.   Courier Service
51.   Air line Reservation
52.   Admission Management System
53.   City Transport
54.   Electricity Bill
55.   Travel agency
56.   Stationary Mngt
57.   Bus Mngt
58.   Pay slip Mngt
59.   Mobile shop Mngt
60.   Hero Honda Agency
61.   Institute Mngt System
62.   Sales Enquiry System
63.   News paper Mngt
64.   Medical Agency
65.   Loan Scheme
66.   Pathology Mngt System
67.    Telephone exchange
68.   Book store Mngt
69.   Job consultancy Mngt
70.   Tourism Project
71.   Inventory mngt
72.   Tyre Showroom Mngt
73.   Computerized Consoling
74.   Reception Mngt System
75.   Hostel Mngt
76.   Automation Of Sai Transport
77.   Relience Sales System
78.   Electronic Shop
79.   Clincal Mngt
80.   Staff Mngt
81.   Fees Mngt
82.   Office Mngt
83.   Factory Mngt
84.   Dealer Information System
85.   Estimate Genrator
86.   Computer Hardware Mngt
87.   Whole sale marketing Mngt
88.   Employee Salary Mngt
89.   First Flight courier Service Mngt
90.   Enquiry and Service Mngt

Live Projects
91.   Automation of cost of Thermal Power System
92.   Medical sales & Purchase
93.   Grouped Email Service
94.   Display Classfied
95.   Drinking water sales mngt
96.   Marriage Bureue mngt
97.   Whiz master
98.   Hardware sales & Service
99.   Vastuland Developer
100.    Placement Agency
101.    Result Generator
102.   Cyber Lab
103.  College Website
104.   Send Free SMS
105.   Balaji Cement Worker
106.   Automobiles
107.   Quick Share
108.    Robotics School
109.    Thyroid Care
110.    Advertisement Website
111.   Online Solution for ‘professional’s Training Academy’
112.   Human Resource Management System

113.     OPD Registration

WEB DEVELOPMENT
1 ONLINE APPLICATION FOR THE TRAINING AND PLACEMENT
2 ONLINE LEAVE MANAGEMENT SYSTEM
3 RECIPE MANAGEMENT SYSTEM
4 COMPLAINT MANAGEMENT SYSTEM
5 WEB BASED MEETING SCHEDULER
6 STUDENT PROJECT ALLOCATION AND MANAGEMENT
7 FAMILY CONNECTION
8 ONLINE ON-REQUEST COURSES COORDINATION SYSTEM
9 ONLINE CARRIER GUIDANCE AND PLACEMENT UNIT
10 AD AGENCY
11 SHOPPING CART
12 HOSPITAL MANAGEMENT SYSTEM
13 ONLINE EXAMINATION
14 COURIER MANAGEMENT SYSTEM
15 STUDENT MONITORING SYSTEM
16 CRIME REPORT MANAGEMENT
17 SEMINAR HALL BOOKING SYSTEM
18 ONLINE MATRIMONIAL SYSTEM
19 MOVIE RENTAL SYSTEMS
20 DISCUSSION FORUMS
21 STUDENT INFORMATION SYSTEM
22 BOOK RENTAL SYSTEM
23 RECEIVING ORDERS FOR PRINTING DIGITAL PHOTOGRAPHS
24 RESUME BUILDER APPLICATION
25 HOSTEL MANAGEMENT SYSTEM
NETWORKING IN LINUX
1 KICKSTART AUTOMATED INSTALLATION OF LINUX
2 WEB SERVER SETUP
3 FTP SERVER SETUP FOR UPLOADING AND DOWNLOADING
4 NFS FILE SERVER FOR SHARING FILES
5 SAMBA SERVER FOR LINUX TO WINDOWS FILE SHARING
6 LOG MONITORING AND LOG ROTATING
7 NETWORK SETUP AND MONITORING
8 SHELL SCRIPTING BASE ADMINISTRATION
BACK END PROJECT
1 An Analytical Study on Technology Deploymnet in Top Banking Companies in India (Banking, Insurance, Services)
2 Studying Top Mutual Fund Companies of India and IT Deployment among them (Banking, Insurance, Services)
3 An Analysis On Enhancing The Technology Usage among Top Insurance Companies in India (Banking, Insurance, Services)
4 An Analytical Study on Technology Adaption in Top Financial Services Companies in India (Banking, Insurance, Services)
5 A Descriptive Study of Cloud Computing Infrastructure of IT Sector in India (Cloud Computing)
6 A Detailed Analysis of SAP ERP Installed Companies in West Region of India (ERP - SAP)
7 A Detailed Analysis of SAP ERP Installed Companies in North Region of India (ERP - SAP)
8 A Study On The IT Strategies Adopted on Usage of  Virtualization Technology by Business Conglomerates in India (Virtualization)
9 An Analysis of Top 1000 IT Spenders Companies in India (IT Infrastructure)
10 A Detailed Analysis of ET 500 Companies in India (IT Infrastructure)
11 A Detailed Analysis of Fortune Next 500 Companies in India (IT Infrastructure)
12 A Study On Growing Ecommerce Industry and its Technology dependency in India (Ecommerce)
13 A Study On Deployment Of Information Technology In Automobile Sector (Automobile)
14 Detailed IT Infrastructure Analysis of Top 10000 Companies in India (India Market)
15 Study on Information Technology Usage and Management Structure of Top 500 companies of Thailand (Thailand Market)
16 Study of Top Insurance Companies of APAC Region (APAC Market)
17 Study on Information Technology Usage and Management Structure of Top 500 companies of Singapore (Singapore Market)
18 Study of Top Banks of APAC Region (APAC Market)

Thursday, February 12, 2015

MSc-II (2014-2015)



CCE Marks

NAME RNO CODE SEM MARKS
JAAGRATI ASATI 143351 552033 2 9
MEENA PAROHA 143352 552033 2 7
MONIKA YADAV 143353 552033 2 8
NIDHI AGRAWAL 143354 552033 2 8
RAGINI JAIN 143355 552033 2 8
RAJ KUMAR SINGH 143356 552033 2 9
SHUBHAM UPADHYAY 143360 552033 2 7
UTKARSH SHARMA 143358 552033 2
-------------------------------------------------------------------------------------
    1. Practical Program List
     1.    Write a program in C for generating a line using line function.
     2.    Write a program in C for generating   Rectangle using rectangle function;
     3.    Write a program in C for generating     a circle using circle function 
     4.    Write a program in C for generating Create a triangle
     5.    Write a program in C for generating  Ven Diagram;
     6.    Write a program in C for generatin g Five Triangle
     7.   Write a program in C for Implement DDA line drawing algorithm.
     8.  Write a program in C for for ploting a Thick line using DDA line algorithm.
     9.   Write a program in C for Drawing a Straight  line Using Bresenhams Algorithm.
   10.   Write a program in C for drawing a dashed straight line using Bresenhams Algorithm. .
   11.   Write a program in C for drawing a thick straight line using Bresenhams Algorithm. .
   12.   Write a program in C to draw a Circle using MID Circle Algorithm.
   13.   Write a program in C to draw a Dashed circle using MID circle Algorithm.



  2. Unit - 1 (Marks - 2.5)
  Topic Assigned for Presentation
     1. Jagrati      -  Applications of Computer Graphics
     2. Nidhi        -  Refresh Cathode Ray Tubes,
     3. Ragini      -  Raster Screen Display  and Random Screen Display
     4. Shubham  -  Flat Panel Displays,
     5. Rajkumar  - LCD.
     6. Monika  -   Input Devices and Hardcopy Devices
     7. Meena   -   Architecture of Raster Scan and Random Scan display systems

Tuesday, February 10, 2015

BCA- IV (2014-15)

Unit - 1 ( Marks - 5)

Topic Assigned for Presentation
1. Java Program Structure       -       Vipin, Prashant, Vikas
2. Token and Structure            –      Sakshi, Saturan, Akansha
3. JVM( Java Virtual Machine)  –      Subhashree, Shubhi, Sonalika
4. Constant / Variable               –      Deepanjali, Roma, Rohini
5. Data Type                           -       Aishwarya, Sagar, Surya
6. Operators                           –        Nishu, Aman, Nishant,
7. Conditional Operation and Branching – Nikita, Prerna, Surbhi,
8. Scope of the  Variable          -         Poornima, Akansha, Veena
9. Java Java Virtual Machine     -         Preeti, Rubi, Shivani.
10. Type Casting                     -         Shrishti, Ayushi, Jisa
11. C++ Vs Java, Java Internet/www  -  Karan, Shubham, Mushraf
12. Looping Statement in Java    -   Shubhank, Mayank, Himanshu.


CCE (Unit - 1)
Group - 2: Token and Structure  
Akansha Tiwari:  3.5/5
Sakshi Pandey: 3/5
Seturan: 2.5/5
Question -1:What is label Statement? by Surya Garg
Answered by: Akansha (Satisfied).
Question - 2: What are literal? by Shivani
Answered by: Akansha, Sakshi (Satisfied).

Comments by Manish Tiwari ( Faculty)
1. Saturan did not prepared well even she does not answered any question.
2. Low confidence with all the three presenter.

Group - 3: JVM( Java Virtual Machine)
Subhshree Das: 3/5
Sonalika: 2.5/5
Shubhi: 3/5

Question -1:What is Difference between Compiler and Interpretor? by Manish Tiwari
Answered by:
Question - 2: When the interpreter executed: Run time or Compile time ? by 
Answered by: Wrong Answered.

Comments by Manish Tiwari ( Faculty):
1. Preparation not done before presentation.
2.  Subject not studied.

Group - 4: (Constant and Variable)
Deepanjali Patel: 3.5/5
Roma Khatton:  2.5/5
Rohani Prajapati: 2.5/5

Question -1: When to use Integer type and when to use real data?
Answered by: Not Answered
Question -2: What is application of static variable?
Answered by:NA
Question -3: Example of instance variable?
Question -4: Difference between instance variable/static variable?
Answered by: Deepanjali - Correct Answer.
Question -5: Example string Variable? Asked by Shrishti.
Answered by: Deepanjali.

Group - 5: JVM( Java Virtual Machine)
Sumit Deodhar:  1.75/5

Group - 6: (Type Casting)
Swechha: 3/5
Priyanshi: 2.5/5
Nisha: Absent - Taken Permission from Mala Madam.

Question -1: Example of type casting? Asked by Poornima
Answered by: Deepanjali.
Question - 2:  What is use application of type casting? Asked Akansha Gupta.


Group - 7: Looping Statement in Java
Shubhank: 2/5
Himanshu: 2/5
Mayank: Absent - Medical Reason.

Group - 8: Operators                        
Nishant:  Absent
Nishu:   Absent
Aman Jain: 2/5

Question -1: What is precedence sequence  arithmetic operator ?
Answered: Wrong Answer.
Question - 2: What is precedence sequence of relational operator?
Answered: Wrong Answer.

Group - 9: Java Program Structure
Prashant: 3/5
Vipin:     Absent
Vikas:     Absent

Group - 10: Data Types
Aishwarya: 2.5
Sagar:    2.5
Surya:  3.5

Question - 1:Explain the real time application of Boolan Data Type?
Answered: Surya Garg

Group - 11: JVM ( Java Virtual Machine)
Rubi: Absent ( Taken permission)
Shivani: 3/5
Preethi: 2.5/5

Question - 1:  What is difference between compiler and JVM?
Answer: Shivani.
Question - 2:  Advantage of JVM? Any Four?
Answer: Not Answered.
Question - 3:  Why Java is platform Independent?
Answer: Not Answered.

Group - 12: Type Casting
Sister Jisha: 4.5/5
Ayushi: 4.5/5
Shrishti: 3.75/5

Question -1: Example of Implicit Type casting? by Shivam.
Question -2: Application of Type Casting? by Aman jain.


Group - 13: C++ Vs Java, Java Internet/www  
Saharyar Mushraf : 2.75/5
karan Dirdhar:  New Topic will be given
Shubham Yadav: Absent( Medical Reason)

Question -1: What is used for replacement of Multilevel inheritance in Java?


Group - 14:  Conditional Operation and Branching 
Nikita: 4/5
Prerna: 4.25/5
Surbhi: 4.25/5
Question -1:Difference between break and Continue
Question -2:what is difference  conditional and if

Group - 15: Scope of Variable
Poornima:  2/5
Akansha:   2/5
Veena:  2/5
-----------------------------------------------------------------------------------------------------------------------

Final CCE Marks


SlNo Name Number JAVA
(20)
1 AAKANKSHA GUPTA 3137201 14
2 AISHWARY DUBEY 3137206 15
3 AKANKSHA TIWARI 3137207 18
4 AMAN JAIN 3137208 13
5 AYUSHI KHANDELWAL 3137213 19
6 CHOUDHARI M. SHAHERYER 3137214 14
7 DEEPANJALI PATEL 3137215 17
8 GAURAV SHARMA 3137217 14
9 HIMANSHU SAGGAR 3137219 15
10 JISHA CHACKO 3137221 18
11 KARAN GIRDHAR 3137222 15
12 MAYANK MEHTA 3137224 15
13 NIKITA RAJPUT 3137226 17
14 NISHA TOPPO 3137227 15
15 NISHANT KUMAR SINGH 3137228 17
16 NISHU KUSHWAHA 3137229 16
17 POORNIMA SHARMA 3137231 14
18 PRASHANT CHAUHAN 3137233 15
19 PRATEEK PATEL 3137235
20 PREETI SHRESHTH 3137236 16
21 PRERNA CHATURVEDI 3137237 17
22 PRIYANSHI RAI 3137238 16
23 ROHINI PRAJAPATI 3137240 16
24 ROMA KHATOON 3137241 17
25 RUBI KUMARI 3137242 16
26 SAGAR PATHAK 3137269 14
27 SAKSHAM LODHI 3137243
28 SAKSHI PANDEY 3137244 16
29 SETURAN GUPTA 3137247 16
30 SHIVANI SIRSATH 3137250 16
31 SHRISHTI CHOUKSEY 3137251 17
32 SHUBHAM YADAV 3137254 16
33 SHUBHANK GULATI 3137255 15
34 SHUBHI DWIVEDI 3137256 15
35 SONALIKA SINHA 3137258 16
36 SUBHASHREE DAS 3137259 14
37 SUMIT DEODHAR 3137261 14
38 SURABHI KOSTA 3137262 17
39 SURYA GARG 3137263 16
40 SWECHHA PATEL 3137264 17
41 VEENA PILLAI 3137266 14
42 VIPIN KUMAR SHUKLA 127347 11
43 VIKAS PAL 127346 0
44 SWAPNIL RAI



Financial Year Oracle PLSQL Program

 CREATE OR REPLACE function FINANCIAL_YEAR(p_date DATE) return varchar2 IS    v_first     varchar2(4);    v_second    varchar2(4);    v_year...