--»Engineering Colleges in Pune --»
SEARCH YOUR COLLEGE...!!
Top Engineering Colleges in Pune with Courses and Fees Structure for 2022
1) College of Engineering College of Engineering,
Pune, Maharashtra
SPPU, Pune
Public (Autonomous)
2) Bharati Vidyapeeth Deemed University
Bharati Vidyapeeth Deemed University,
Pune, Maharashtra
3) D. Y. Patil College of Engineering Akurdi D. Y. Patil College of Engineering Akurdi,
Pune, Maharashtra
SPPU, Pune
Private
4) Symbiosis Institute of Technology Symbiosis Institute of Technology,
Pune, Maharashtra
Private Institute
5) Ajeenkya DY Patil University Ajeenkya DY Patil University,
Pune, Maharashtra
Private University
6) Pune Institute of Computer Technology Pune Institute of Computer Technology,
Pune, Maharashtra
SPPU, Pune
Private
7) Sinhgad College of Engineering Sinhgad College of Engineering,
Pune, Maharashtra
SPPU, Pune
Private
8) Government College of Engineering and Research
Or Government College of Engineering and Research, Pune
Maharashtra
SPPU, Pune
Public
9)Featured MIT World Peace University MIT World Peace University,
Pune, Maharashtra
Private University
10) GH Raisoni College of Engineering gh raisoni College of Engineering,
Pune, Maharashtra
Private
TOP SEARCHES:
Engineering Colleges in Maharashtra Engineering Colleges in Chennai Engineering Colleges in Hyderabad Engineering Colleges in Bangalore Engineering Colleges in Bhopal Engineering Colleges in Jaipur Engineering Colleges in Coimbatore Engineering Colleges in Kolkata Engineering Colleges in Bhubaneswar Engineering Colleges in Lucknow Engineering Colleges in Indore Engineering Colleges in India
Follow us...!!

https://ganesh-bodakhe.github.io/Enggineering-wallah/
ReplyDeleteThis comment has been removed by the author.
ReplyDeleteg++ first.cpp -lGL -lGLU -lglut
ReplyDelete#include //graphics Library Utility Toolkit
ReplyDeletevoid bg()
{
glClearColor(0.5,0.7,1.0,0.9);//(R,G,B,A)--> To change the background color {A--> for color blending}
glMatrixMode(GL_PROJECTION); //
gluOrtho2D(0.0,200.0,0.0,200.0);//area of the object
}
void draw()
{
glClear(GL_COLOR_BUFFER_BIT);
glColor3f(0.9,0.4,0.1);
glLineWidth(4);
glBegin(GL_LINES);
glVertex2i(100,100);
glVertex2i(200,200);
glEnd();
glFlush();
}
int main(int argc,char** argv)
{
glutInit(&argc,argv);
glutInitDisplayMode(GLUT_SINGLE); //to refresh and display window & color mode
glutInitWindowPosition(150,100); //it is used to set the position on the screen
glutInitWindowSize(1080,400); //size of the display
glutCreateWindow("Ganesh Bodakhe"); //Display Title Bar on the screen
bg();
glutDisplayFunc(draw);
glutMainLoop();//This function is used for window processing operation
}
#include
ReplyDelete#include
using namespace std;
int count=0;
struct node
{
string name;
int val,bs;
struct node *next;
};
struct node *head=NULL;
struct node *head1=NULL;
void insert(struct node *temp)
{
struct node *nn=new node;
cout<<"enter your name: ";
cin>>nn->name;
int ch;
cout<<"enter 1.vanilla 2.butterscotch 3.both 4.neither: ";
cin>>ch;
if(ch==1)
{
nn->val=1;
nn->bs=0;
}
else if(ch==2)
{
nn->val=0;
nn->bs=1;
}
else if(ch==3)
{
nn->val=1;
nn->bs=1;
}
else if(ch==4)
{
nn->val=0;
nn->bs=0;
}
nn->next=temp;
temp=nn;
count++;
}
void conca(struct node *temp)
{
while(temp->next!=NULL)
{
temp=temp->next;
}
temp->next=head1;
}
void both(struct node *ptr)
{
cout<<"like both ice-creams"<next!=NULL)
{
if(ptr->val==1 && ptr->bs==1)
{
cout<name<next;
}
}
void either(struct node *temp)
{
cout<<"likes either one of the ice-cream"<val==1 && temp->bs==0 )
{
cout<name<bs==1 && temp->val==0)
{
cout<name<next;
}
}
void neither(struct node *temp)
{
cout<<"likes neither of the ice-cream"<next!=NULL)
{
if(temp->val==0 && temp->bs==0)
{
cout<name<next;
}
}
int main()
{
char c='y',e='y';
int ch;
char d='y';
while(d=='y')
{
cout<<"enter 1.setA 2.setB: ";
cin>>ch;
switch(ch)
{
case 1:
{
while(c=='y')
{
insert(head);
cout<<"enter 'y' if you want to continue with setA: "<>c;
}
break;
}
case 2:
{
while(e=='y')
{
insert(head1);
cout<<"enter 'y' if you want to continue with setB: "<>e;
}
break;
}
}
cout<<"enter 'y' if you want to continue with insertion: "<>d;
}
conca(head);
both(head);
either(head);
neither(head);
return 0;
}
engineeringwallah.000webhostapp.com
ReplyDeleteThis comment has been removed by the author.
ReplyDeletehttps://drive.google.com/drive/folders/1a3YLie1nf3NsGkCrzt_SH8rKLThOVKt0?usp=share_link
ReplyDeleteBharati Vidyapeeth College of Engineering Pune is a leading engineering college in India, located in the city of Pune. Bharati Vidyapeeth College Of Engineering Pune It is an autonomous institute of the Bharati Vidyapeeth Deemed University.
ReplyDelete// Arduino program to control the color of an RGB LED using potentiometers
ReplyDelete// Pin assignments
const int redPin = 9; // PWM pin for red color
const int greenPin = 10; // PWM pin for green color
const int bluePin = 11; // PWM pin for blue color
const int redPotPin = A0; // Analog pin for red potentiometer
const int greenPotPin = A1; // Analog pin for green potentiometer
const int bluePotPin = A2; // Analog pin for blue potentiometer
void setup() {
// Set the PWM pins as output
pinMode(redPin, OUTPUT);
pinMode(greenPin, OUTPUT);
pinMode(bluePin, OUTPUT);
// Start serial communication
Serial.begin(9600);
}
void loop() {
// Read the values from the potentiometers
int redValue = analogRead(redPotPin);
int greenValue = analogRead(greenPotPin);
int blueValue = analogRead(bluePotPin);
// Map the potentiometer values to the range 0-255
int red = map(redValue, 0, 1023, 0, 255);
int green = map(greenValue, 0, 1023, 0, 255);
int blue = map(blueValue, 0, 1023, 0, 255);
// Update the color of the RGB LED
analogWrite(redPin, red);
analogWrite(greenPin, green);
analogWrite(bluePin, blue);
// Print the RGB values
Serial.print("Red: ");
Serial.print(red);
Serial.print(" | Green: ");
Serial.print(green);
Serial.print(" | Blue: ");
Serial.println(blue);
delay(100); // Delay for smoother transitions
}
create table instructor(ID char(5),name varchar(20), dept_name varchar(20), salary numeric(8,2))
ReplyDeleteINSERT INTO instructor VALUES('121','shushant','AI&DS','40000');
SELECT * FROM instructor;
________________________________________________________________
select distinct last_name from Customers
select 'USA'
select 'USA' as foo
select Age from Customers
select first_name,last_name,age/2 as half_age from Customers
select * from Customers where age=22 and country='UK'
__________________________________________________________________
create table Employee('Eid' varchar(10),'First_Name'char(50),'Address'char(50),'City' char(50),'Country' char(20),'Birth_Date'date);
DESCRIBE Employee;
alter table Employee ADD Address2 varchar2(100)
alter table instructor drop dept_name
DESCRIBE Employee;
create table Client('ID' char(10), 'name' varchar(20));
select * from Client;
drop table Client;
drop database Client;
RENAME table Employee To EMP;
TRUNCATE TABLE EMP;
___________________________________________________
insert into instructor values('123','Tushar','AI&DS','42000');
select * from instructor;
_______________________________________________________________
DELETE
delete from instructor where id=123;
select * from instructor;
______________________________________________________
delete from Client;
insert into instructor values('','Ravi','AI&DS','34000');
insert into instructor values('','Maggi','AI&DS','42000');
select * from instructor;
__________________________________________________________
update instrocutor
set id=123
where name='Ravi';
select * from instrocutor;
03/08/23________________________________________
create table customer (Name char(25) NOT NULL, F_Name char(100) NULL,
SUR_Name char(100), Gender char(1),check (Gender IN ('M','F')))
insert into customer values(,'rajs','aher','M');
insert into customer values(NULL,'rushbh','Gaware','M');
insert into customer values(‘siya’,'amol','shide','F');
insert into customer values('Sunita','ram','Veer','T');
insert into customer values('Niranjan',NULL,NULL,'M');
insert into customer values(NULL,NULL,NULL,'M');
select * from Customer;
CREATE TABLE Persons (
ID int NOT NULL,
LastName varchar(255) NOT NULL,
FirstName varchar(255),
Age int,
City varchar(255) DEFAULT 'Sandnes'
);
insert into Persons values(3,'nehe','suraj',21,NULL);
select * from Persons;
create table stud5 (Name varchar(50) DEFAULT'Gandhi',age float(3),email_id varchar(20)UNIQUE)
insert into stud5 values('rajan',14,'rajan@gmail.com');
select * from stud5;
create table Cust(name char(22),Cid char(10)PRIMARY KEY)
insert into Cust values('Rutuja',5);
select * from Cust;
create table EMP(Emp_id int,Emp_Name varchar(100)not null,Did REFERENCES Dept(did))
create table Dept(did int,Dept_Name varchar(100)not null,Primary Key(did))
insert into Dept values(4,'Mech');
insert into Dept values(3,'Civil');
insert into Dept values(2,'Comp');
insert into Dept values(3,'AI & DS');
select * from Dept;
insert into EMP values(3,'Monish',41);
insert into EMP values(1,'ritesh',3);
insert into EMP values(12,'Rani',2);
--insert into EMP values(23,'Sunidhi',5);
--select * from EMP;
_________________________________________________________________