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

Rishabh Bhojankar

Aim To Be Placed In A Challenging Organization That Gives Me Scope To Enhance My Knowledge & Skills In Accordance With The Latest Trends And Be A Part Of Team That Dynamically Works Towards Growth Of Organization.

Skills Acquired at Skill-Lync :

  • OOPS
  • MATLAB-BASICS
  • MODEL-BASED-DEVELOPMENT
  • ADAS-BASICS
  • SIMULINK-BASICS
  • HEV-FUNDAMENTALS
  • MATLAB
  • BMS-BASICS

Introduction

i Rishabh Rajuji Bhojankar I hold a bachelor’s of engineering degree from Priyadarshini J. L. College of engineering in 2020 with A first class. And I completed the diploma in engineering from Priyadarshini polytechnic with first class. & I completed my SSC from New English high school with first class.

16 Projects

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

Objective:

Solution : //Preprocessor section/header files#include //Standard input\output Library#include //Standard Library   //Define a structurestruct Node{    int num; //Declare integer variable    struct Node* nextptr; //Pointer to the next Node}; //Function prototypesstruct Node* createNodeList(int num); //Create a node listvoid…

calendar

02 Sep 2023 07:35 AM IST

    Read more

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

    Objective:

    Solution: //Preprocessor section/Header files#include //Standard input/output library#include //Standard library#include //Standard string library //Function prototypevoid Initiate_State_Machine(); //Initialize the state machinevoid GearDown(); //Shift the gear to the down positionvoid CheckingBeforeTakeOFF(); //Checking…

    calendar

    04 Sep 2023 04:56 PM IST

      Read more

      Project 3

      Objective:

      Solution : //Preprocessor Section/Header files#include //Standard input/output stream library#include //Standard vector library#include //Standard string library   using namespace std; // Define an enumeration type to represent different fuel typesenum Type{    GAS, //Represents gas-powered vehicles    DIESEL, //Represents…

      calendar

      05 Sep 2023 10:02 PM IST

        Read more

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

        Objective:

        Solution: Master Code://Header Files #include #include   LiquidCrystal lcd(13,12,5,4,3,2); //Create a LiquidCrystal object for the LCD with the specified I2C address    void setup() {   lcd.begin(16, 2); //Initialize the LCD   Wire.begin(); //Initialize the I2C communication }   void loop() {   int analogValue = analogRead(A0);…

        calendar

        26 Sep 2023 09:22 AM 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:

          Solution : const int pingPin = 12; //Define the Arduino pin connected to the ultrasonic sensor int distances[5]; //Array to store the last 5 distance measurements float average = 0.0; //Variable to store the average   void setup() {   Serial.begin(9600); }   void loop() {   long duration, inches; //Variables to store duration…

          calendar

          03 Oct 2023 02:36 PM IST

            Read more

            Project 1 - V&V SW Analysis - I

            Objective:

            Que .Write a Test plan to test features of a new mobile phone (Blackbox test) that needs to be implemented based on the following requirements. (The product is still under development stage and is yet to be UA (User Acceptance ) tested .Every other thing to be included in the test plan can be hypothetical.  US-1:As a Product…

            calendar

            08 Oct 2023 08:35 AM IST

              Read more

              Project 2

              Objective:

              Que 1. Solution: //Preprocessor Section/Header Files #include //Standard I/O Stream Library #include //Standard C String Library ? using namespace std; ? //Define Class named Vehicle class Vehicle { protected: //Access Specifier //Protected Member Variable string make; //The make of the vehicle string model; //The model…

              calendar

              19 Oct 2023 04:38 PM IST

                Read more

                Project 1

                Objective:

                Solution:     //Preprocessor Section/Header files #include <iostream> //Standard I/O Stream Library #include <cstring> //Standard C String Library #include <fstream>   using namespace std;   //Main Function int main() {     //Declare an array of strings to store commodity…

                calendar

                22 Oct 2023 10:00 AM IST

                  Read more

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

                  Objective:

                  Solution: #include <avr/io.h> //Including AVR Input/Output header file #define F_CPU 16000000ul //define the CPU frequency #include "avr/interrupt.h" //Including AVR interrupt header file #include <util/delay.h> //Including Delay header file   #define rs_high PORTD |= (1<<5) //Define a macro for…

                  calendar

                  26 Oct 2023 08:21 AM IST

                    Read more

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

                    Objective:

                    In this project, the implementation of code for “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…

                    calendar

                    31 Oct 2023 08:52 AM IST

                      Read more

                      Project 2 - V&V SW Analysis II

                      Objective:

                      Que 1. Perform Static Code Review Analysis for “C:\**\LDRA_workarea\Examples\C_Testbed_examples\Testrain\Testrain.c” Generate Code review report and upload them. Solution:   Static Code Review Analysis STEP 1 : Open Testrain.c in the LDRA tool - Goto “Source” and select “Single File”…

                      calendar

                      03 Nov 2023 10:13 AM IST

                        Read more

                        Project 1

                        Objective:

                        Que.Using what you’ve learned in your hands-on labs, write a program that logs CAN data from one or more CAN buses. 1. CAN messages (from any bus) should be sorted into logs of even ARB ID messages and odd ARB ID messages 2. Even logs should be stored in a Linux Directory called “Even Logs”…

                        calendar

                        22 Nov 2023 01:06 PM IST

                          Read more

                          Project 2

                          Objective:

                          Que. Write a program that performs a binary search for any given signal (The instrument cluster can be used as a source for CAN traffic) - It should record a log, assisted by user prompt, and replay all other subsequent logs according to a prompt that the user checks (Did the signal occur again? Y/N) - After every…

                          calendar

                          30 Nov 2023 10:50 PM IST

                            Read more

                            Project 3

                            Objective:

                            Que. Program an attack terminal 1. The user should be able to select from the following CAN based attacks a. Full Bus DoS - The program should allow the user to set a duration for the attack b. Partial DoS - The program should ask the user “what priority should I DoS at?” - The program should allow the…

                            calendar

                            01 Dec 2023 02:28 AM IST

                              Read more

                              Project 1 - Develop the full featured char driver as a loaded module

                              Objective:

                              Overview of the Project:  • Device Driver o Write the device driver for MCP9808 Temperature Sensor.  Probe function: Register the Platform device under driver/misc.  Read function: It should send the i2c message to read the data from sensor and copy it to the user space.  Alert pin connected to BBB as gpio…

                              calendar

                              01 Dec 2023 10:07 AM IST

                              • HTML
                              Read more

                              Project 2 - Design and develop the web based Temperature control system using Beagle Bone Black.

                              Objective:

                              Overview of the Project:  Device Driver Write the device driver for MCP9808 Temperature Sensor. Probe function: Register the Platform device under driver/misc. Read function: It should send the i2c message to read the data from sensor and copy it to the user space. Alert pin connected to BBB as gpio interrupt. The…

                              calendar

                              02 Dec 2023 10:59 PM IST

                              Read more
                              Showing 1 of 16 projects

                              10 Course Certificates

                              certificate

                              Aptitude

                              CertificateIcon
                              Certificate UID: dfs8c32ay9wn7xpt
                              View Certificate
                              certificate

                              Verbal Ability

                              CertificateIcon
                              Certificate UID: 6t14axm93gjrclhb
                              View Certificate
                              certificate

                              HR Prep

                              CertificateIcon
                              Certificate UID: 1uzv9ekca8nblhgr
                              View Certificate
                              certificate

                              Embedded Programming Essentials

                              CertificateIcon
                              Certificate UID: vh1520xlew7fadib
                              View Certificate
                              certificate

                              Fundamentals of Embedded Systems

                              CertificateIcon
                              Certificate UID: h5n0f9ctaqm36l2j
                              View Certificate
                              certificate

                              Introduction to C++ Programming

                              CertificateIcon
                              Certificate UID: m84su1qrdi6vcbe0
                              View Certificate
                              certificate

                              AVR Bare Metal Programming- Live Sessions

                              CertificateIcon
                              Certificate UID: 6zv82143h5dkwbu7
                              View Certificate
                              certificate

                              Software Verification and Validation and System Testing for Hand Code

                              CertificateIcon
                              Certificate UID: yuk25bx7f9crt3s1
                              View Certificate
                              certificate

                              Introduction to Automotive Cybersecurity and Vehicle Networks

                              CertificateIcon
                              Certificate UID: q2v04phk5dszte1j
                              View Certificate
                              certificate

                              Linux Driver Development

                              CertificateIcon
                              Certificate UID: 5ag1ixhzqjwn8l0s
                              View Certificate
                              Showing 1 of 10 certificates

                              1 Workshop Certificates

                              certificate

                              Electric vehicle Components and Fundamentals

                              CertificateIcon
                              Certificate UID: vnod4zu026
                              View Certificate
                              Showing 1 of 1 certificates

                              Academic Qualification

                              B.E

                              Priyadarshini J. L. College of Engineering

                              17 Aug 2017 - 15 Nov 2019

                              Diploma

                              Priyadarshini Polytechnic Higna MIDC Electric Zone Nagpur

                              12 Jun 2012 - 13 Jun 2017

                              10th

                              New English High School

                              01 Mar 2011 - 26 Mar 2012

                              Schedule a counselling session

                              Please enter your name
                              Please enter a valid email
                              Please enter a valid number

                              Here are the courses that I have enrolled

                              coursecard
                              5

                              35 Hours of Content

                              coursecard
                              Recently launched

                              18 Hours of Content

                              coursecard
                              Recently launched

                              21 Hours of Content

                              coursecard
                              Recently launched

                              10 Hours of Content

                              coursecard
                              Recently launched

                              13 Hours of Content

                              coursecard
                              Recently launched

                              18 Hours of Content

                              coursecard
                              Recently launched

                              19 Hours of Content

                              coursecard
                              3.4

                              7 Hours of Content

                              coursecard
                              Recently launched

                              7 Hours of Content

                              coursecard
                              Recently launched

                              23 Hours of Content

                              coursecard
                              4.7

                              17 Hours of Content

                              Similar Profiles

                              Apoorv Ranjan
                              Apoorv Ranjan

                              Ladder of success cannot be climbed with hands in pocket.

                              Pruthvi Jagadeesh GK
                              Pruthvi Jagadeesh GK

                              The Future in Motion

                              Krantiveer .
                              Krantiveer .

                              Give more than what you get you will get more than what you gave