ABSTRACT:

Insurance management system project is implemented in java platform using oracle as backend application. Main aim of this project is to develop a online application for insurance company to atomize work procedure, using this system agents and policy holders can know details about present policies, schemes, policy specifications, terms and conditions on policy, policy registration by the customers. Agents commission is based upon customer policy registration and target agent achieves for every month or year. This system maintains information of branch managers who can deal with agents and customers. In existing system manual procedure is followed where records are used to maintain data which is a time taking process and require more man power and calculating commissions dues..etc are done manually. In present system there is no need of human interference in calculating any details. Total work is done using management system which will save time and less paper work and even human resource. This project used to claim for insurance online. The insurance type consists of general insurance, health insurance, home insurance, and vehicle insurance. Each insurance page has different fields to register claim.

EXISTING SYSTEM:

In existing system manual procedure is followed where insurance is prepared manually. It will take lot of time to write to claim the insurance.

PROPOSED SYSTEM:

The proposed system is to computerize the agent and client department for claiming their insurance. The main objective to automate the manual claiming for insurance and retrieval of the stored data.

ARCHITECTURE:




SAMPLE CODE:

Agent Login.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace INSURANCE_SYS
{
    public partial class agent_login : Form
    {
        public agent_login()
        {
            InitializeComponent();
        }

        private void agent_login_Load(object sender, EventArgs e)
        {

        }

        private void button1_Click(object sender, EventArgs e)
        {

            SqlConnection con = new SqlConnection(@"Data Source=MYPC-PC\SQLEXPRESS; Integrated Security = true ; Initial Catalog = inms");
            con.Open();
            SqlCommand cmd = new SqlCommand(@"select * from sai where username='" + textBox1.Text + "' and pwd='" + textBox2.Text + "'", con);

            SqlDataReader obj = cmd.ExecuteReader();

            if (obj.HasRows)
            {
                MessageBox.Show("login succesS");


            }
            else
            {
                MessageBox.Show("login failed");
            }
        }

        private void button2_Click(object sender, EventArgs e)
        {
            agent_login swa = new agent_login();
            swa.Show();
            this.Hide();

        }

        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            agent_register swa = new agent_register();
            swa.Show();
            this.Hide();
        }

        private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            home swa = new home();
            swa.Show();
            this.Hide();
        }

        private void label2_Click(object sender, EventArgs e)
        {

        }
    }
}


Registration.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace INSURANCE_SYS
{
    public partial class agent_register : Form
    {
        public agent_register()
        {
            InitializeComponent();
        }

        private void agent_register_Load(object sender, EventArgs e)
        {

        }

        private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            home swa = new home();
            swa.Show();
            this.Hide();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            SqlConnection con = new SqlConnection(@"Data Source=MYPC-PC\SQLEXPRESS; Integrated Security = true ; Initial Catalog = inms");
            con.Open();
            SqlCommand cmd = new SqlCommand(@"insert into sai values('" + textBox1.Text + "','" + textBox2.Text + "','" + textBox3.Text + "','" + textBox4.Text + "','" + textBox5.Text + "')", con);

            int x = cmd.ExecuteNonQuery();

            if (x > 0)
            {
                MessageBox.Show("Data inserted Successfully");


            }
            else
            {
                MessageBox.Show("Data not inserted successfully");
            }
        }

        private void button3_Click(object sender, EventArgs e)
        {
            agent_register swa = new agent_register();
            swa.Show();
            this.Hide();
        }

        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            agent_login swa = new agent_login();
            swa.Show();
            this.Hide();
        }
    }
}



Home.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace INSURANCE_SYS
{
    public partial class home : Form
    {
        public home()
        {
            InitializeComponent();
        }

        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            agent_login swa = new agent_login();
            swa.Show();
            this.Hide();
        }

        private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            agent_register swa = new agent_register();
            swa.Show();
            this.Hide();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            vehicle swa = new vehicle();
            swa.Show();
            this.Hide();
        }

        private void button2_Click(object sender, EventArgs e)
        {
            health swa = new health();
            swa.Show();
            this.Hide();
        }

        private void button3_Click(object sender, EventArgs e)
        {
            general swa = new general();
            swa.Show();
            this.Hide();
        }

        private void button4_Click(object sender, EventArgs e)
        {
            house swa = new house();
            swa.Show();
            this.Hide();
        }

        private void home_Load(object sender, EventArgs e)
        {

        }
    }
}


General Insurance.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace INSURANCE_SYS
{
    public partial class general : Form
    {
        public general()
        {
            InitializeComponent();
        }

        private void general_Load(object sender, EventArgs e)
        {

        }

        private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            home swa = new home();
            swa.Show();
            this.Hide();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            SqlConnection con = new SqlConnection(@"Data Source=MYPC-PC\SQLEXPRESS; Integrated Security = true ; Initial Catalog = inms");
            con.Open();
            SqlCommand cmd = new SqlCommand(@"insert into general values('" + textBox1.Text + "','" + textBox2.Text + "','" + textBox3.Text + "','" + textBox4.Text + "','" + dateTimePicker1.Value.Date.ToString("yyyyMMdd") + "')", con);

            int x = cmd.ExecuteNonQuery();

            if (x > 0)
            {
                MessageBox.Show("Data inserted Successfully");


            }
            else
            {
                MessageBox.Show("Data not inserted successfully");
            }
        }

        private void label1_Click(object sender, EventArgs e)
        {

        }

        private void button2_Click(object sender, EventArgs e)
        {
            general swa = new general();
            swa.Show();
            this.Hide();
        }
    }
}


Health Insurance.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace INSURANCE_SYS
{
    public partial class health : Form
    {
        public health()
        {
            InitializeComponent();
        }

        private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            home swa = new home();
            swa.Show();
            this.Hide();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            SqlConnection con = new SqlConnection(@"Data Source=MYPC-PC\SQLEXPRESS; Integrated Security = true ; Initial Catalog = inms");
            con.Open();
            SqlCommand cmd = new SqlCommand(@"insert into health values('" + textBox1.Text + "','" + textBox2.Text + "','" + textBox3.Text + "','" + textBox4.Text + "','" + dateTimePicker1.Value.Date.ToString("yyyyMMdd") + "','" + textBox5.Text + "')", con);

            int x = cmd.ExecuteNonQuery();

            if (x > 0)
            {
                MessageBox.Show("Data inserted Successfully");


            }
            else
            {
                MessageBox.Show("Data not inserted successfully");
            }
        }

        private void button2_Click(object sender, EventArgs e)
        {
            health swa = new health();
            swa.Show();
            this.Hide();
        }
    }
}



House Insurance.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace INSURANCE_SYS
{
    public partial class house : Form
    {
        public house()
        {
            InitializeComponent();
        }

        private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            home ho = new home();
            ho.Show();
            this.Hide();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            SqlConnection con = new SqlConnection(@"Data Source=MYPC-PC\SQLEXPRESS; Integrated Security = true ; Initial Catalog = inms");
            con.Open();
            SqlCommand cmd = new SqlCommand(@"insert into house values('" + textBox1.Text + "','" + textBox2.Text + "','" + textBox3.Text + "','" + textBox4.Text + "','" + textBox5.Text + "','" + dateTimePicker1.Value.Date.ToString("yyyyMMdd") + "')", con);

            int x = cmd.ExecuteNonQuery();

            if (x > 0)
            {
                MessageBox.Show("Data inserted Successfully");


            }
            else
            {
                MessageBox.Show("Data not inserted successfully");
            }
        }

        private void label2_Click(object sender, EventArgs e)
        {

        }

        private void label5_Click(object sender, EventArgs e)
        {

        }

        private void button2_Click(object sender, EventArgs e)
        {
            house swa = new house();
            swa.Show();
            this.Hide();
        }
    }
}


Vehicle Insurance.cs

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace INSURANCE_SYS
{
    public partial class vehicle : Form
    {
        public vehicle()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            SqlConnection con = new SqlConnection(@"Data Source=MYPC-PC\SQLEXPRESS; Integrated Security = true ; Initial Catalog = inms");
            con.Open();
            SqlCommand cmd = new SqlCommand(@"insert into vehicle values('" + textBox1.Text + "','" + textBox2.Text + "','" + textBox3.Text + "','" + textBox4.Text + "','" + textBox5.Text + "','" + dateTimePicker1.Value.Date.ToString("yyyyMMdd") + "')", con);

            int x = cmd.ExecuteNonQuery();

            if (x > 0)
            {
                MessageBox.Show("Data inserted Successfully");


            }
            else
            {
                MessageBox.Show("Data not inserted successfully");
            }
        }

        private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            home swa = new home();
            swa.Show();
            this.Hide();
        }

        private void button2_Click(object sender, EventArgs e)
        {
            vehicle swa = new vehicle();
            swa.Show();
            this.Hide();
        }

        private void label1_Click(object sender, EventArgs e)
        {

        }

        private void label2_Click(object sender, EventArgs e)
        {

        }

        private void dateTimePicker1_ValueChanged(object sender, EventArgs e)
        {

        }
    }
}



     

PROJECT MODULES

A module is a part of a program. Programs are composed of one or more independently developed modules that are not combined until the program is linked. A single module can contain one or several routines. The project contains the following main modules.
• Agent Login Module
• Agent Registration Module,
• Home Module
• General Insurance Module
• Health Insurance Module
• House Insurance Module
• Vehicle Insurance Module

AGENT LOGIN MODULE

In this module, it is used to login by the customer to claim the insurance. This module consists of the following fields:
• User Name: Name of the customer used to login
• Password: Password set by the customer

AGENT REGISTRATION MODULE

In this module, the new customer will register to claim the insurance. This module requires few details of the customer. This module consists of the following fields:

• First Name: First Name of the customer
• Last Name: Last Name of the customer
• Email: Mail ID of the customer
• User Name: Name of the customer used to login
• Password: Password set by the customer

HOME MODULE

In this module, the customer can choose the type of insurance. There are four types of insurance general, health, house and vehicle insurance. The customer will choose any one from this.

GENERAL INSURANCE MODULE

In this module, the customer will claim for the general insurance. This module consists of the following fields:
• Name: Name of the customer
• Claim Number: Number of the claim
• Shop Number: Number of the shop
• Mobile: Contact number of the customer
• Valid Upto: Validity date of the claim

HEALTH INSURANCE MODULE

This Module is same as the general module. But in this module we can claim an insurance for any health issues. This module consists of the following fields:
• Name: Name of the customer
• Mobile: Contact number of the customer
• Age: Age of the customer
• Address: Address of the customer
• Valid Upto: Validity date of the claim
• Claim Number: Number of the claim

HOUSE INSURANCE MODULE

This Module is same as the general module. But in this module we can claim an insurance for any health issues. This module consists of the following fields:
• Name: Name of the customer
• Mobile: Contact number of the customer
• Age: Age of the customer
• Address: Address of the customer
• Valid Upto: Validity date of the claim
• Claim Number: Number of the claim

VEHICLE INSURANCE MODULE

In this module, the customer will claim for the vehicle insurance. This module consists of the following fields:
• Name: Name of the customer
• Email: Mail Id of the customer
• Mobile: Contact number of the customer
• Vehicle Number: Number of the vehicle
• Claim Number: Number of the claim
• Valid Upto: Validity date of the claim



ISO CERTIFIED - MINI PROJECTS FOR MACHINE LEARNING:

KaaShiv Offers, Mini projects for machine learning. Mini project for machine learning includes Block Chain, Big data analytics,cloud computing,ethical hacking,android and mobile app,internet of things . This internship includes the topics related to mini projects for machine learning 2nd year, mini projects for machine learning 3rd year with circuit diagram.This company runs by,
    • 10 Years Awarded Microsoft Most Valuable Professional
    • Google Recognized Experts
    • Cisco Recognized Certified Experts
    • Microsoft Awarded Certified Experts
    • Robotics Experts
    • HCL Technologies Awarded Expert

Trainers at KaaShiv InfoTech are real-time Software / IT professionals worked in leading MNCs like,
    • CTS,
    • Wipro,
    • TCS,
    • Infosys,
    • Accenture and
    • Mindtree.

The Course curriculum for mini projects for machine learning is carefully researched and prepared by professionals from MNC to meet the demands expected in the IT industry. After completing the mini project Training in Chennai at KaaShiv Infotech, students will be familiar with the Software development process followed in IT industry. Below are some of the insights of our mini projects program for machine learning.

    • Real-time project development and Technology Training by Microsoft Awarded Most Valuable Professiona
    • mini projects for machine learning students involves Full practical training
    • Hardware and software tools full support
    • Technology training
    • Placement training
    • Full documentation and report analysis
    • R & D projects
    • Industrial exposure
    • Endorsing Corporate skills

WHAT IS MINI PROJECT ?

    • The mini Projects plays a crucial role in the teaching-learning process.
    • It is also a way of identifying the ability of the student to perform an industrial project or applied research linked to the knowledge discipline.
    • A project is defined as an effort to create or modify a specific product or service.
    • Projects are temporary work efforts with a clear beginning and end.
    • mini project (or program) any undertaking, carried out individually or collaboratively and possibly involving research or design, that is carefully planned (usually by a project team) to achieve a particular aim.

WHAT ARE THE BENEFITS GAINED BY DOING MINI PROJECT :

    • mini projects if done well can add a lot of credibility to your profile.
    • And especially your mini projects building experience can help you perform well in core job placements & higher studies admission interviews.

TIPS TO SELECT GOOD MINI PROJECTS:

    • Analyze the current trends
    • Focus your mini projects on any social issue
    • Get expert’s assistance whenever possible
    • Research about the mini projects done by your seniors
    • Refer the research journals published by scholars
    • Check the feasibility of your mini projects
    • Work with organizations like Kaashiv InfoTech

WHY, MACHINE LEARNING STUDENTS MINI PROJECTS SHOULD BE A REAL TIME MINI PROJECTS ?

    • mini projects for machine learning students provides a real time exposure for the mini projects for machine learning students on the latest and trending technologies. Below are some of the Top jobs in the IT Industry Job Openings ,
    • Software Developers – Good in Python, Machine Learning, Data Science and AI programming
    • BlockChain Administrators
    • IOT Specialists
    • Cyber Security
    • Web Application Developer – Web Designers
    • Information Security Analyst – Security Specialist
    • Network Engineers / Analyst
KaaShiv Infotech, machine learning Student mini projects - programme hornes you in the above said skills / job roles from basics to Advanced.

MINI PROJECTS FOR MACHINE LEARNING - PROGRAMME HIGHLIGHTS :

    • mini projects for machine learning program duration: 5days/ 10days / Or Any number of days
    • Training hours: 3hrs per day
    • Software & others tools installation Guidance
    • Hardware support
    • mini projects for machine learning Report creation / Project Report creation
    • mini projects for machine learning students based 2 projects ( real time)
    • Mini project Certificate & Inplant Training Certificate & Industrial exposure certificate + (Achievement certificate for best performers)

ADVANTAGES OF OUR- MINI PROJECTS FOR MACHINE LEARNING :

    • Get Real Work Experience
    • Get a Taste of Your Chosen Field
    • Start Networking
    • Helps You Choose a Speciality
    • Helps You Become More Self-Confident
    • Boosts Your CV
    • Increases Your Market Value

MINI PROJECTS FOR MACHINE LEARNING - MATERIALS :

    • mini project for machine learning student , includes Materials after the internship programme
    • Technological guidance and materials will be shared in entire year for the students to mold technically.
    • Our be student involves Free Projects at the end of the programme.

QUERIES OR CONTACT DETAILS :

Venkat (7667662428) and Asha (7667668009)
Email ID: kaashiv.info@gmail.com , priyanka.kaashiv@gmail.com

MINI PROJECTS FOR MACHINE LEARNING- PROGRAMME DURATION :

1 month / 2 months / 3 months to 6 Months ( Any Number of Days - Based on student preferences)

WHO CAN ATTEND THIS MINI PROJECTS FOR MACHINE LEARNING PROGRAMME :

Mini projects for machine learning - Programme can be attended by the students who are looking for mini projects for machine learning/ mini projects for 2nd year/ mini projects for machine learning 3rd year/ mini projects for machine learning final year

MINI PROJECTS FOR MACHINE LEARNING- PROGRAMME OUTCOME :

1. Student will be specialized in Block Chain, Artificial Intelligence, Machine Learning, Python and R programming, Application Development , Web designing and Networking concepts (Basics to Advanced)
2. Covering 45 concepts
3. Students will be getting trained in / writing 45 Programs – Will change based on the durations of the program.
4. 2 Projects and project documents will be given at the end of the program

REFERENCE YOUTUBE URL FOR MINI PROJECTS FOR MACHINE LEARNING :

Check our Internship Training sample videos at this URL –
www.youtube.com/channel

REGISTRATION LINK FOR – MINI PROJECTS FOR MACHINE LEARNING :

mini projects for machine learning - Offline - Office training
Fill our online Internship form

MINI PROJECTS FOR MACHINE LEARNING – DEMO LINK :

Check out our Sample mini project for machine learning Content for the training
kaashivinfotech.com/inplant-training-in-chennai-for-cse-demo

CHECK OUR PREVIOUS TESTIMONIALS FROM STUDENTS FROM DIFFERENT COUNTRIES AND DIFFERENT STATES :

www.kaashivinfotech.com/testimonials/

CHECK OUR STUDENTS FEEDBACK ON OUR - MINI PROJECTS FOR MACHINE LEARNING :

mini projects for machine learning- Feedback - inplant-training-feedback /
mini projects for machine learning- Feedback - internship-feedback

CHECK OUT THE COLLEGES ATTENDED OUR MINI PROJECT FOR MACHINE LEARNING :

internship-and-inplant-training-attendees/

CHECK OUR SOCIAL SERVICE YOUTUBE CHANNELS:

www.youtube.com/channel
Check our Social Service youtube channels

REAL TIME PROJECT:

We ranked Top 200 technological companies in Tamil Nadu, Click here to view

MORE ON OUR, MINI PROJECTS FOR MACHINE LEARNING :

In our, internship on mini projects for machine learning- programme below are following different kind of programmes focused such as,
1. Mini projects for machine learning(or) paid Mini projects for machine learning,
- Kaashiv Provides an in-depth knowledge of software Platform and other relevant software technologies.
2. Mini projects for machine learning work from home – Our company provides facility for the students to learn from home as an mini projets for machine learning based on latest technological trends.
3. Mini projects for machine learning report – Reports are also provided for the Mini projects for machine learning students in our company related
4. Mini projects for machine learning jobs – 100% Job assistance will be provided for the students to gain practical knowledge during the Mini projects for machine learning period in our company.
5. Mini projects for machine learning summer / Winter internship 2019/2020 – Summer / Winter holiday internship in mini projects will be given to the student based on the developer knowledge base.
6. Mini projects for machine learning interview questions – We provide top trending and frequently asked question for the intern students during the internship period based on software development and trending technologies.
7. Mini projects for machine learning test – Based on the students request, if you are looking for any test to validate your knowledge. we are ready to provide the same.
8. Mini projects for machine learning certificate – Industry recognized certificates will be provided for the students who perform internship in our company based .
9. Mini projects for machine learning online– Learn Mini projects for machine learning from home, our company perform internship through online too.
10. Mini projects for machine learning ppt / projects report – We provide Mini projects for machine learning based ppts. projects and project reports as materials after the internship in our company.
11. Free Mini project for machine learning - Our company will provide Mini projects for machine learning the best students of kaashiv infotech.
12. Project For Diploma mini projects for machine learning – We offer project for the diploma mini project for machine learning students in our company.
13. Mini project for machine learning 2nd Year – Our company offers you mini projects for machine learning the above students.

MORE PROJECTS