ABSTRACT:

Campus Solution is a School Management Application Software, which is unparallel and comprehensive School Software that covers each and every entity of school. It is an interactive platform for all the entities of School like Teachers, Management, Financial Department, Students, Parents and Librarian, Inventory etc. This project helps the management with less work. This project creates the webpage for the school with all the information about the school. The management updates the event which is going to be held so that students can view the details of the event and actively participate in the event. Also it also consists of the library details and list of awards for the student in the annual function with the details of the function.


EXISTING SYSTEM:

. We need to keep a number of records related to the student and want to enter the details of the student and the marks manually. It is a timeconsuming process and difficult to maintain database manually.

PROPOSED SYSTEM

This proposed system helps to maintain database and made computerised. This is user friendly interface, fast access to database and more storage capacity. This has access to the management as well as staff to update database and marks of the student.

ARCHITECTURE:




SAMPLE CODE:

Sign In.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 IDOL_MANUFACTURING_COMPANY
{
    public partial class SIGN_IN : Form
    {
        public SIGN_IN()
        {
            InitializeComponent();
        }

        private void button2_Click(object sender, EventArgs e)
        {
            string message = "DO YOU WANT TO CLOSE THIS PAGE?";
            string title = "CLOSE WINDOW";
            MessageBoxButtons buttons = MessageBoxButtons.YesNo;
            DialogResult result = MessageBox.Show(message, title, buttons, MessageBoxIcon.Warning);
            if (result == DialogResult.Yes)
            {
                this.Close();
            }
        }

        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
                REGISTER reg = new REGISTER();
                reg.Show();
                this.Hide();
        }
        private void button1_Click(object sender, EventArgs e)
        {
            string a = textBox1.Text;
            string b = textBox2.Text;
            if ((textBox1.Text == "") || (textBox2.Text == ""))
            {
                MessageBox.Show("enter all the required columns");
            }
            else
            {
                if ((textBox1.Text == "kkh") && (textBox2.Text == "kkh"))
                {
                    admin ad = new admin();
                    ad.Show();
                    this.Hide();
                }
                else
                {
                    SqlConnection con = new SqlConnection(@"Data Source=LAPTOP-UQEH4P2F\VENKAT;Integrated Security=true;Initial Catalog=kkprojects");
                    con.Open();
                    SqlCommand cmd = new SqlCommand(@"select *from register where username='" + textBox1.Text + "' and password='" + textBox2.Text + "'", con);
                    SqlDataReader dr = cmd.ExecuteReader();
                    if (dr.HasRows)
                    {
                        MATERIAL_TYPE mt = new MATERIAL_TYPE();
                        mt.Show();
                        this.Hide();
                    }
                    else
                    {
                        MessageBox.Show("enter all the required columns");
                    }
                }
            }
        }

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

        private void idol_Click(object sender, EventArgs e)
        {

        }

        private void name_Click(object sender, EventArgs e)
        {

        }

        private void SIGN_IN_Load(object sender, EventArgs e)
        {

        }

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

        private void Ctrl_KeyUp(object sender, KeyEventArgs e)
        {
            if (e.KeyCode == Keys.Enter)
            {
                this.SelectNextControl((Control)sender, true, true, true, true);
            }
        }
    }
}


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 IDOL_MANUFACTURING_COMPANY
{
    public partial class REGISTER : Form
    {
        public REGISTER()
        {
            InitializeComponent();
        }

        private void label1_Click(object sender, EventArgs e)
        {

        }

        private void textBox8_TextChanged(object sender, EventArgs e)
        {

        }

        private void REGISTER_Load(object sender, EventArgs e)
        {

        }

        private void button2_Click(object sender, EventArgs e)
        {
            string message = "DO YOU WANT TO CLOSE THIS PAGE?";
            string title = "CLOSE WINDOW";
            MessageBoxButtons buttons = MessageBoxButtons.YesNo;
            DialogResult result = MessageBox.Show(message, title, buttons, MessageBoxIcon.Warning);
            if (result == DialogResult.Yes)
            {
                this.Close();
            }
        }

        private void button1_Click(object sender, EventArgs e)
        {

            SqlConnection con = new SqlConnection(@"Data Source=LAPTOP-UQEH4P2F\VENKAT;Integrated Security=true;Initial Catalog=kkprojects");
            con.Open();
            SqlCommand cmd = new SqlCommand(@"insert into register values('" + textBox1.Text + "','" + textBox2.Text + "','" + textBox3.Text + "','" + textBox4.Text + "','" + textBox5.Text + "','" + textBox6.Text + "','" + textBox7.Text + "','" + comboBox1.Text + "','" + textBox9.Text + "')", con);
            string a = textBox4.Text;
            if ((textBox1.Text == "") || (textBox2.Text == "") || (textBox3.Text == "") || (textBox4.Text == "") || (textBox5.Text == "") || (textBox6.Text == "") || (textBox7.Text == "") || (comboBox1.Text == "") || (textBox9.Text == "") || (textBox5.Text != textBox6.Text) || (a.Length != 10))
            {
                if ((textBox5.Text != textBox6.Text) || (a.Length != 10))
                {
                    if (textBox5.Text != textBox6.Text)
                    {
                        MessageBox.Show("enter your valid password");
                    }
                    if (a.Length != 10)
                    {
                        MessageBox.Show("enter your valid phone number");
                    }
                }
                else
                {
                    MessageBox.Show("enter all the required columns");
                }
            }
            else
            {
                int x = cmd.ExecuteNonQuery();
                if (x > 0)
                {
                    MATERIAL_TYPE mt = new MATERIAL_TYPE();
                    mt.Show();
                    this.Hide();
                }
            }
        }

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

        private void Ctrl_KeyUp(object sender, KeyEventArgs e)
        {
            if (e.KeyCode == Keys.Enter)
            {
                this.SelectNextControl((Control)sender, true, true, true, true);
            }
        }
    }
}



Type of material.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 IDOL_MANUFACTURING_COMPANY
{
    public partial class MATERIAL_TYPE : Form
    {
        public MATERIAL_TYPE()
        {
            InitializeComponent();
        }

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

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

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


B Marble.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 IDOL_MANUFACTURING_COMPANY
{
    public partial class B_MARBEL : Form
    {
        public B_MARBEL()
        {
            InitializeComponent();
        }

        private void button2_Click(object sender, EventArgs e)
        {
            SqlConnection con = new SqlConnection(@"Data Source=LAPTOP-UQEH4P2F\VENKAT;Integrated Security=true;Initial Catalog=kkprojects");
            con.Open();
            int k = Convert.ToInt32(numericUpDown1.Value);
            string str = comboBox1.Text;
            int q=0;
            if ((str == "SAI BABA(RS.1500)") || (str == "SIVA(RS.1500)") || (str == "GANESHA(RS.1500)") || (str == "MURUGA(RS.1500)") || (str == "KRISHNA(RS.1500)") || (str == "VENKATESHA(RS.1500)"))
            {
                q += k * 1500;
            }
            if ((str == "JESUS CHRIST(RS.1450)") || (str == "ALHAMDULILLAH(RS.1450)") || (str == "BUDDHA(RS.1450)") || (str == "MAHAVIRA(RS.1450)"))
            {
                q += k * 1450;
            }
            if ((str == "PTAH(RS.1400)") || (str == "LETO(RS.1400)") || (str == "ZEUS(RS.1400)") || (str == "ARES(RS.1400)"))
            {
                q += k * 1400;
            }
            SqlCommand cmd = new SqlCommand(@"insert into register6 values('METAL:" + comboBox1.Text + "','" + numericUpDown1.Value + "','"+q+"')", con);
            if ((comboBox1.Text == "") || (numericUpDown1.Value == 0))
            {
                MessageBox.Show("enter all the required columns");
            }
            else
            {
                int x = cmd.ExecuteNonQuery();
                if (x > 0)
                {
                    ORDER_CHECKING OC = new ORDER_CHECKING();
                    OC.Show();
                    this.Hide();
                }
                else
                {
                    MessageBox.Show("enter all the required columns");
                }
            }

            SqlConnection con1 = new SqlConnection(@"Data Source=LAPTOP-UQEH4P2F\VENKAT;Integrated Security=true;Initial Catalog=kkprojects");
            con1.Open();
            SqlCommand cmd1 = new SqlCommand(@"insert into register11 values('" + comboBox1.Text + "','" + numericUpDown1.Value + "','" + q + "')", con);
            cmd1.ExecuteNonQuery();
        }

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

        private void label1_Click(object sender, EventArgs e)
        {

        }

        private void B_MARBEL_Load(object sender, EventArgs e)
        {

        }

        private void pictureBox2_Click(object sender, EventArgs e)
        {

        }

        private void pictureBox3_Click(object sender, EventArgs e)
        {

        }

        private void domainUpDown1_SelectedItemChanged(object sender, EventArgs e)
        {

        }

        private void Ctrl_KeyUp(object sender, KeyEventArgs e)
        {
            if (e.KeyCode == Keys.Enter)
            {
                this.SelectNextControl((Control)sender, true, true, true, true);
            }
        }
    }
}


W Marble.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 IDOL_MANUFACTURING_COMPANY
{
    public partial class W_MARBEL : Form
    {
        public W_MARBEL()
        {
            InitializeComponent();
        }

        private void W_MARBEL_Load(object sender, EventArgs e)
        {

        }

        private void label3_Click(object sender, EventArgs e)
        {

        }

        private void button2_Click(object sender, EventArgs e)
        {
            SqlConnection con = new SqlConnection(@"Data Source=LAPTOP-UQEH4P2F\VENKAT;Integrated Security=true;Initial Catalog=kkprojects");
            con.Open();
            int k = Convert.ToInt32(numericUpDown1.Value);
            string str = comboBox1.Text;
            int p = 0;
            if ((str == "SAI BABA(RS.1200)") || (str == "SIVA(RS.1200)") || (str == "GANESHA(RS.1200)") || (str == "MURUGA(RS.1200)") || (str == "KRISHNA(RS.1200)") || (str == "VENKATESHA(RS.1200)"))
            {
                p += k * 1200;
            }
            if ((str == "JESUS CHRIST(RS.1150)") || (str == "ALHAMDULILLAH(RS.1150)") || (str == "BUDDHA(RS.1150)") || (str == "MAHAVIRA(RS.1150)"))
            {
                p += k * 1150;
            }
            if ((str == "MAAT(RS.1100)") || (str == "HATHOR(RS.1100)") || (str == "DIONYSUS(RS.1100)") || (str == "LETO(RS.1100)"))
            {
                p += k * 1100;
            }
            SqlCommand cmd = new SqlCommand(@"insert into register5 values('MARBEL:"+ comboBox1.Text + "','" + numericUpDown1.Value + "','"+p+"')", con);
            if ((comboBox1.Text == "") || (numericUpDown1.Value== 0))
            {
                MessageBox.Show("enter all the required columns");
            }
            else
            {
                int x = cmd.ExecuteNonQuery();
                if (x > 0)
                {
                    ORDER_CHECKING OC = new ORDER_CHECKING();
                    OC.Show();
                    this.Hide();
                }
                else
                {
                    MessageBox.Show("enter all the required columns");
                }
            }
            SqlConnection con1 = new SqlConnection(@"Data Source=LAPTOP-UQEH4P2F\VENKAT;Integrated Security=true;Initial Catalog=kkprojects");
            con1.Open();
            SqlCommand cmd1 = new SqlCommand(@"insert into register11 values('" + comboBox1.Text + "','" + numericUpDown1.Value + "','" + p + "')", con);
            cmd1.ExecuteNonQuery();
        }

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

        private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
        {

        }

        private void Ctrl_KeyUp(object sender, KeyEventArgs e)
        {
            if (e.KeyCode == Keys.Enter)
            {
                this.SelectNextControl((Control)sender, true, true, true, true);
            }
        }
    }
}


          
Order Checking.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 IDOL_MANUFACTURING_COMPANY
{
    public partial class ORDER_CHECKING : Form
    {
        public ORDER_CHECKING()
        {
            InitializeComponent();
        }

        private void ORDER_CHECKING_Load(object sender, EventArgs e)
        {

        }

        private void label6_Click(object sender, EventArgs e)
        {

        }

        private void button2_Click(object sender, EventArgs e)
        {
            SqlConnection con = new SqlConnection(@"Data Source=LAPTOP-UQEH4P2F\VENKAT;Integrated Security=true;Initial Catalog=kkprojects");
            con.Open();
            SqlCommand cmd = new SqlCommand(@"insert into register3 values('" + textBox1.Text + "','" + textBox2.Text + "','" + textBox3.Text + "','"+comboBox1.Text+"')", con);
            string a = textBox3.Text;
            if ((textBox1.Text == "") || (textBox2.Text == "") || (textBox3.Text == "") || (a.Length != 10))
            {
                if (a.Length != 10)
                {
                    MessageBox.Show("enter your valid phone number");
                }
                else
                {
                    MessageBox.Show("enter all the required columns");
                }
            }
            else
            {
                int x = cmd.ExecuteNonQuery();
                if (x > 0)
                {
                    CHECKOUT_POINT OC = new CHECKOUT_POINT();
                    OC.Show();
                    this.Hide();
                }
                else
                {
                    MessageBox.Show("enter all the required columns");
                }
            }
            SqlConnection con1 = new SqlConnection(@"Data Source=LAPTOP-UQEH4P2F\VENKAT;Integrated Security=true;Initial Catalog=kkprojects");
            con1.Open();
            SqlCommand cmd1 = new SqlCommand(@"insert into register10 values('" + textBox1.Text + "','" + textBox2.Text + "','" + textBox3.Text + "','"+comboBox1.Text+"')", con);
            cmd1.ExecuteNonQuery();
        }

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

        private void Ctrl_KeyUp(object sender, KeyEventArgs e)
        {
            if (e.KeyCode == Keys.Enter)
            {
                this.SelectNextControl((Control)sender, true, true, true, true);
            }
        }
    }
}

Purchase Details.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 IDOL_MANUFACTURING_COMPANY
{
    public partial class admin : Form
    {
        public admin()
        {
            InitializeComponent();
        }

        private void label1_Click(object sender, EventArgs e)
        {

        }

        private void button2_Click(object sender, EventArgs e)
        {
            SqlConnection con = new SqlConnection(@"Data Source=LAPTOP-UQEH4P2F\VENKAT;Integrated Security=true;Initial Catalog=kkprojects");
            con.Open();
            SqlCommand cmd = new SqlCommand(("select *from register10"), con);
            SqlDataAdapter da = new SqlDataAdapter(cmd);
            DataSet ds = new DataSet();
            da.Fill(ds);
            dataGridView1.DataSource = ds.Tables[0];
            SqlCommand cmd1 = new SqlCommand(("select *from register11"), con);
            cmd1.ExecuteNonQuery();
            SqlDataAdapter da1 = new SqlDataAdapter(cmd1);
            DataSet ds1 = new DataSet();
            da1.Fill(ds1);
            dataGridView2.DataSource = ds1.Tables[0];
        }

        private void button1_Click(object sender, EventArgs e)
        {
            this.Close();
        }
    }
}

Check Out.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 IDOL_MANUFACTURING_COMPANY
{
    public partial class CHECKOUT_POINT : Form
    {
        public CHECKOUT_POINT()
        {
            InitializeComponent();
        }

        private void cheeckout_Load(object sender, EventArgs e)
        {

        }

        private void button1_Click(object sender, EventArgs e)
        {
            SqlConnection con = new SqlConnection(@"Data Source=LAPTOP-UQEH4P2F\VENKAT;Integrated Security=true;Initial Catalog=kkprojects");
            con.Open();
            SqlCommand cmd = new SqlCommand(("select *from register3"),con);
            SqlDataAdapter da = new SqlDataAdapter(cmd);
            DataSet ds = new DataSet();
            da.Fill(ds);
            dataGridView1.DataSource = ds.Tables[0];
            SqlCommand cmd1 = new SqlCommand(@"select *from register5 union select *from register6", con);
            cmd1.ExecuteNonQuery();
            SqlDataAdapter da1 = new SqlDataAdapter(cmd1);
            DataSet ds1 = new DataSet();
            da1.Fill(ds1);
            dataGridView2.DataSource = ds1.Tables[0];
            SqlCommand cmd2 = new SqlCommand(@"truncate table register5",con);
            cmd2.ExecuteNonQuery();
            SqlCommand cmd4 = new SqlCommand(@"truncate table register6",con);
            cmd4.ExecuteNonQuery();
            SqlCommand cmd5 = new SqlCommand(@"truncate table register3",con);
            cmd5.ExecuteNonQuery();
            con.Close();
        }

        private void button2_Click(object sender, EventArgs e)
        {
            string message = "ARE YOU SURE THAT YOU WANT TO PLACE THE ORDER?";
            string title = "CLOSE WINDOW";
            MessageBoxButtons buttons = MessageBoxButtons.YesNo;
            DialogResult result = MessageBox.Show(message, title, buttons, MessageBoxIcon.Asterisk);
            if (result == DialogResult.Yes)
            {
                MessageBox.Show("YOUR ORDER HAS BEEN PLACED SUCCESSFULLY\nTHANK YOU FOR SHOPPING!!");
                this.Close();
            }
        }

        private void button3_Click(object sender, EventArgs e)
        {
            string message = "DO YOU WANT TO CANCEL THE ORDER?";
            string title = "CLOSE WINDOW";
            MessageBoxButtons buttons = MessageBoxButtons.YesNo;
            DialogResult result = MessageBox.Show(message, title, buttons, MessageBoxIcon.Warning);
            if (result == DialogResult.Yes)
            {
                MATERIAL_TYPE mt = new MATERIAL_TYPE();
                mt.Show();
                this.Hide();
            }
        }

        private void dataGridView2_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {

        }

        private void vScrollBar1_Scroll(object sender, ScrollEventArgs e)
        {

        }
    }
}



MODULES SPECIFICATION:

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.

• LOGIN MODULE
• ADMIN MODULE
• TEACHER’S INFO MODULE
• STUDENT’S INFO MODULE
• EVENT MODULE
• LIBRARY MODULE
• AWARDS MODULE

LOGIN MODULE:

In Login Module, the user used can used to login to view the school events or informations. The login can be used by the student or management. Fields required in this module are listed below
• Username: name of the user
• Password: password for user

ADMIN MODULE :

In this module, the user can either choose the teacher’s portal or student’s portal. The teachers has access to change the schedule. But, student can view the schedule.

TEACHER’S INFO MODULE:

In this module, the teacher’s can view the schedule of the class and timings allocated for the faculty.

STUDENT’S INFO MODULE:

In this module, the management set the study plan to the student and activities to be done on weekly basis. This can be viewed by the students.

EVENT MODULE:

In this module, it consists of the event details that will be occurring in the upcoming days. The student ca n view the list od activities and can actively participate in the events. This module contains the following fields:
• Event Name : Name of the event
• Event Date : Event date
• Event Description : Description of the event

LIBRARY MODULE:

This module has the information about the books in library and students who borrow the book from library with date. This module contains following fields:
• Faculty Name : Name of the faculty incharge for library
• Student Name : Name of the student
• Student ID : Id number of the student
• Name of the book : Name of the book the student borrow
• Date of issue : Date of the book issued
• Due Date : Due date for the book to be returned

AWARDS MODULE:

In this module, the details of the award function with the list of the awards. It contains the detailed information of the award event where students can be viewed and actively participate in the events. This module contains following fields:
• Name of faculty incharge : Faculty incharge for this event
• Date of the event : Event date
• Time of commencement : Time of the event beginning

ISO CERTIFIED - MINI PROJECTS FOR AERONAUTICAL:

KaaShiv Offers, Mini projects for aeronautical. Mini project for aeronautical 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 aeronautical 2nd year, mini projects for aeronautical 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 aeronautical 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 aeronautical.

    • Real-time project development and Technology Training by Microsoft Awarded Most Valuable Professiona
    • mini projects for aeronautical 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, AERONAUTICAL STUDENTS MINI PROJECTS SHOULD BE A REAL TIME MINI PROJECTS ?

    • mini projects for aeronautical students provides a real time exposure for the mini projects for aeronautical 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, aeronautical Student mini projects - programme hornes you in the above said skills / job roles from basics to Advanced.

MINI PROJECTS FOR AERONAUTICAL - PROGRAMME HIGHLIGHTS :

    • mini projects for aeronautical program duration: 5days/ 10days / Or Any number of days
    • Training hours: 3hrs per day
    • Software & others tools installation Guidance
    • Hardware support
    • mini projects for aeronautical Report creation / Project Report creation
    • mini projects for aeronautical 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 AERONAUTICAL :

    • 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 AERONAUTICAL - MATERIALS :

    • mini project for aeronautical 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 AERONAUTICAL- 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 AERONAUTICAL PROGRAMME :

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

MINI PROJECTS FOR AERONAUTICAL- 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 AERONAUTICAL :

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

REGISTRATION LINK FOR – MINI PROJECTS FOR AERONAUTICAL :

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

MINI PROJECTS FOR AERONAUTICAL – DEMO LINK :

Check out our Sample mini project for aeronautical 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 AERONAUTICAL:

mini projects for aeronautical- Feedback - inplant-training-feedback /
mini projects for aeronautical- Feedback - internship-feedback

CHECK OUT THE COLLEGES ATTENDED OUR MINI PROJECT FOR AERONAUTICAL:

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 AERONAUTICAL:

In our, internship on mini projects for aeronautical- programme below are following different kind of programmes focused such as,
1. Mini projects for aeronautical(or) paid Mini projects for aeronautical,
- Kaashiv Provides an in-depth knowledge of software Platform and other relevant software technologies.
2. Mini projects for aeronautical work from home – Our company provides facility for the students to learn from home as an mini projets for aeronautical based on latest technological trends.
3. Mini projects for aeronautical report – Reports are also provided for the Mini projects for aeronautical students in our company related
4. Mini projects for aeronautical jobs – 100% Job assistance will be provided for the students to gain practical knowledge during the Mini projects for aeronautical period in our company.
5. Mini projects for aeronautical 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 aeronautical 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 aeronautical 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 aeronautical certificate – Industry recognized certificates will be provided for the students who perform internship in our company based .
9. Mini projects for aeronautical online– Learn Mini projects for aeronautical from home, our company perform internship through online too.
10. Mini projects for aeronautical ppt / projects report – We provide Mini projects for aeronautical based ppts. projects and project reports as materials after the internship in our company.
11. Free Mini project for aeronautical - Our company will provide Mini projects for aeronautical the best students of kaashiv infotech.
12. Project For Diploma mini projects for aeronautical – We offer project for the diploma mini project for aeronautical students in our company.
13. Mini project for aeronautical 2nd Year – Our company offers you mini projects for aeronautical the above students.

MORE PROJECTS