Menu

Executive Programs

Workshops

Projects

Blogs

Careers

Student Reviews



More

Academic Training

Informative Articles

Find Jobs

We are Hiring!


All Courses

Choose a category

Loading...

All Courses

All Courses

logo

Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory) using Linked List

#include <stdio.h> #include <stdlib.h> /* A structure of linked list node */ struct node { int data; struct node *next; } *LLOne, *LLTwo, *unionLL, *intersectionLL; void initialize(){ LLOne = LLTwo = NULL; } /* Given a Inserts a node in front of a singly linked list. */ void insert(struct node **head, int num)…

    Project Details

    Loading...

    Leave a comment

    Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.

    Please  login to add a comment

    Other comments...

    No comments yet!
    Be the first to add a comment

    Read more Projects by Muthukumar P (10)

    Project 3

    Objective:

    live batch (preeti) Build an object-oriented library which can be used to track automobile maintenance. There can be different car types such as petrol, diesel, gas, electric etc., This library should be able to support at least three of the car types.  Maintenance tasks include activities like oil change or replace…

    calendar

    16 May 2023 04:14 PM IST

      Read more

      Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter

      Objective:

      Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter circuit :-   code:- // C++ code//#include <LiquidCrystal.h> LiquidCrystal lcd(12 ,11 ,5 ,4 ,3 ,2); //Define LCD Module Pins (RS,RN,D4,D5,D6,D7)int window[10] = {0}; // Creating a integer…

      calendar

      16 Mar 2023 04:01 PM IST

        Read more

        Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)

        Objective:

        Measuring distance of an object using ultrasonic distance sensor (HC-SR04) Goals: Measuring the distance of an object using Ultrasonic Distance Sensor (HC-SR04) Usage of Input Capture Mode Key Highlights of the Project:  Measuring the distance travelled by the wave to the object and gets bounced back from the object…

        calendar

        14 Mar 2023 04:06 PM IST

          Read more

          Project 1 - V&V SW Analysis - I

          Objective:

          live batch(preeti) Write a Test plan to test the features of a new mobile phone.   Black box testing: Black box testing is a technique of software testing which examines the functionality of the software without peering into its internal structure or coding. The primary source of black-box testing is a specification…

          calendar

          14 Mar 2023 03:17 PM IST

            Read more

            Project 2 - V&V SW Analysis II

            Objective:

            live batch(preeti) Perform Static Code Review Analysis for “C:\**\LDRA_workarea\Examples\C_Testbed_examples\Testrain\Testrain.c” Generate Code review report and upload them.   Perform Integration testing by including all the .C files available in the folder location C:\**\LDRA_workarea\Examples\Toolsuite\Cashregister_6.0\…

            calendar

            10 Mar 2023 02:35 PM IST

              Read more

              Project 1 - Controlling a DC motor using PWM and monitoring its Running status

              Objective:

              Controlling a DC motor using PWM and monitoring its Running status          

              calendar

              28 Feb 2023 02:51 AM IST

                Read more

                Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear

                Objective:

                #include void Initiate_State_Machine();void GearDown();void CheckingBeforeTakeOFF();void RaisingGear();void GearUp();void CheckBeforeLanding();void LoweringGear();static void(*statetable[])(void)={GearDown, CheckingBeforeTakeOFF, RaisingGear, GearUp, CheckBeforeLanding, LoweringGear};typedef enum State{GEAR_DOWN,CHECKING_BEFORE_TAKEOFF,RAISING_GEAR,GEAR_UP,CHECK_BEFORE_LANDING,LOWERING_GEAR,}State_Type;typedef…

                calendar

                31 Jan 2023 07:05 AM IST

                  Read more

                  Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear

                  Objective:

                  #include void Initiate_State_Machine();void GearDown();void CheckingBeforeTakeOFF();void RaisingGear();void GearUp();void CheckBeforeLanding();void LoweringGear();static void(*statetable[])(void)={GearDown, CheckingBeforeTakeOFF, RaisingGear, GearUp, CheckBeforeLanding, LoweringGear};typedef enum State{GEAR_DOWN,CHECKING_BEFORE_TAKEOFF,RAISING_GEAR,GEAR_UP,CHECK_BEFORE_LANDING,LOWERING_GEAR,}State_Type;typedef…

                  calendar

                  30 Jan 2023 05:19 PM IST

                    Read more

                    Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol

                    Objective:

                    CODE: #include //Library for I2C communication functions#include //Library for LCD functionsLiquidCrystal lcd(2,7,8,9,10,11); //define lcd module pins(rs,en,D4,D5,D6,D7)byte SlaveReceived = 0;void setup(){ lcd.begin(16,2); //initializes LCD display lcd.setCursor(0,0); //sets cursor at first line of lcd lcd.print("Skill…

                    calendar

                    23 Jan 2023 03:32 PM IST

                      Read more

                      Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory) using Linked List

                      Objective:

                      #include <stdio.h> #include <stdlib.h> /* A structure of linked list node */ struct node { int data; struct node *next; } *LLOne, *LLTwo, *unionLL, *intersectionLL; void initialize(){ LLOne = LLTwo = NULL; } /* Given a Inserts a node in front of a singly linked list. */ void insert(struct node **head, int num)…

                      calendar

                      27 Nov 2022 09:59 AM IST

                        Read more
                        Showing 1 of 10 projects