TEST PLAN:A test plan is a detailed document which describes software testing areas and activities. It outlines the test strategy, objectives, test schedule, required resources (human resources, software, and hardware), test estimation and test deliverables. Components of Test Plan: 1.Test Objective:It consist the information…
Suchitra Patil
updated on 14 Feb 2023
Project Details
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.
Other comments...
Read more Projects by Suchitra Patil (6)
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
CODE: #include <avr/io.h>#define F_CPU 16000000L#include <util/delay.h>#include "avr/interrupt.h"#define lcdport PORTB#define rs_high PORTD|=(1<<0);#define rs_low PORTD &=~(1<<0);#define en_high PORTD |=(1<<1);#define en_low PORTD &=~(1<<1);unsigned int tov=0, count, distance;void…
30 Mar 2023 03:48 PM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
CODE: #include <avr/io.h> // for using I/O registers of avr#define F_CPU 16000000L //defining frequency#include <util/delay.h> //delay function#include "avr/interrupt.h" //external interrupts pin#define lcd_port PORTB //port b pins are used for lcd data#define rs_high PORTD|=(1<<0) //d0 pin is…
30 Mar 2023 10:58 AM IST
Project 1 - V&V SW Analysis - I
TEST PLAN:A test plan is a detailed document which describes software testing areas and activities. It outlines the test strategy, objectives, test schedule, required resources (human resources, software, and hardware), test estimation and test deliverables. Components of Test Plan: 1.Test Objective:It consist the information…
14 Feb 2023 08:23 AM IST
Project 2 - V&V SW Analysis II
Question 1: Static Code Review Analysis: Que 2: Integration testing:
10 Feb 2023 04:37 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
This project explains the extraction and retraction of landing gear. Extraction of landing gear takes place while landing while retraction of landing gear takes place after takeoff. Here FSM(finite state machine)is used to check the different states. CODE: #include<stdio.h> /* Functions*/void Initial_state_machine();…
30 Jan 2023 09:27 AM IST
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory) using Linked List
OVERVIEW: In this project, we are implementing the mathematical set theory . CODE: #include#include#include typedef struct node//defining the structure{ int data; struct node *next;// self referential node}Node;//changing the structure name static Node *head1,*head2,*head,*head_union,*head_intersection,*newnode,*tail,*res_union,*res_intersection;//declaring…
22 Jan 2023 04:38 PM IST