Skip to main content

Posts

Sem 8 Practical Exam

 DC LAB ASSIGNMENTS  https://github.com/siddharthlanke/Sem-VIII-Academic-Labs/tree/main LAB-1 LAB-2 LAB-3 LAB-4 https://colab.research.google.com/drive/1wf96qi9RH3oGN039QbcmU6s3PEY6txn7?usp=sharing LAB-5 https://colab.research.google.com/drive/1i_a5owxrYdRB1ZQPa6vWGsKdC0ALiSHU?usp=sharing LAB-6 https://colab.research.google.com/drive/1CdPxCss_ppyZf4rCdiEl12CQSarvTBh9?usp=sharing CI LAB ASSIGNMENTS  LAB-1 https://colab.research.google.com/drive/1s07YgacC2nTC-vQUxtT3dKifgKZBwCaI?usp=sharing LAB-2 https://colab.research.google.com/drive/1wj6x-eunLDBx3J8Q-nheShHTMftyvgDu?usp=sharing LAB-3 https://colab.research.google.com/drive/1gw4ZekLF5WYVg3r4Rn0gnwKg177rkMmo?usp=sharing LAB-4 https://colab.research.google.com/drive/1WO0bPhM_y3xSMrNLJBjvVQ7gNpGJHCys?usp=sharing DL LAB ASSIGNMENTS  LAB-1 LAB-2 https://colab.research.google.com/drive/1324qVAvwPeqWoOQgEZ7SHRXwCVQVVZs1?usp=sharing LAB-3 https://colab.research.google.com/drive/1RCX1xvUXex6ksUtQtnj5zpoOGM_fipbr?usp=sharing L...

Sem 7 Practical Exam

 ML LAB ASSIGNMENTS  LAB-1 https://colab.research.google.com/drive/1iQXKgk2nsysWXnO7xbajrSjGcYlReIhE LAB-2 https://colab.research.google.com/drive/1Ilmd52oXNojLpIUKNpVGkDiweL3smrvz LAB-3 https://colab.research.google.com/drive/1U6tD9lT7ktMxfDFVQRXTGGMh7sSA_-Sf LAB-4 https://colab.research.google.com/drive/1S3LFQdfJ0sodYIrNBIvCbuineHN5xRBs LAB-5 https://colab.research.google.com/drive/1u61o7jXxmqw4gnvF-YBKHElMDjHDwBSN LAB-6 https://colab.research.google.com/drive/1-LdxSoE2oKJr9Q84qWPH4Xo5uM7aDvLB QAI LAB ASSIGNMENTS  LAB-1 https://colab.research.google.com/drive/1w8j9LEK_ihcgc6QYhR-s_WQ0FZLbcF3t LAB-2 https://colab.research.google.com/drive/1l10kBvC7qNS2L17f3VBmpyDpNFlG2Mj7 LAB-3 https://colab.research.google.com/drive/1V2u0BZP63lZT9rMYRTcs88XnMNK0Uz6z LAB-4 https://colab.research.google.com/drive/1i7NJukPd-TQ5VAJP02TEOKCArEylmoGp LAB-6 https://colab.research.google.com/drive/1EvbH1DuDC06dkHCJi4XUd6iG87w3DhAl DMV LAB ASSIGNMENTS  LAB-1 https://colab.research.google.co...

Computer networks lab 5 subnetting code

 def findClass(ip):     if (ip[0]>=0 and ip[0]<=126):         return "A"     elif(ip[0]>=128 and ip[0]<=191):         return "B"     elif(ip[0]>=192 and ip[0]<=223):         return "C"     elif(ip[0]>=224 and ip[0]<=239):         return "D"     else:         return "E"         def separate (ip, className):     if (className=="A"):         print("Network address is : " , ip[0])         print("Host address is : ",".".join(ip[1:4]))             elif(className=="B"):         print("Network address is : ",".".join(ip[0:2]))         print("Host address is : ",".".join(ip[2:4]))             elif(className=="C"):         print("netw...

computer networks lab 6 tcp socket

 Write a program using TCP socket for wired network for following a. Say Hello to Each other b. File transfer. Server Program: /****************** SERVER CODE ****************/ #include <stdio.h> #include <sys/socket.h> #include <netinet/in.h> #include <string.h> int main(){ int welcomeSocket, newSocket; char buffer[1024]; struct sockaddr_in serverAddr; struct sockaddr_storage serverStorage; socklen_t addr_size; welcomeSocket = socket(PF_INET, SOCK_STREAM, 0); serverAddr.sin_family = AF_INET; serverAddr.sin_port = htons(7891); serverAddr.sin_addr.s_addr = inet_addr(“127.0.0.1”); memset(serverAddr.sin_zero, ‘\0’, sizeof serverAddr.sin_zero); bind(welcomeSocket, (struct sockaddr *) &serverAddr, sizeof(serverAddr)); if(listen(welcomeSocket,5)==0) printf(“Listening\n”); else printf(“Error\n”); addr_size = sizeof serverStorage; newSocket = accept(welcomeSocket, (struct sockaddr *) &serverStorage, &addr_size); strcpy(...

Computer Networks lab 5 socket programming

 Socket Programming using C/C++/Java / python. a. TCP Client, TCP Server b. b. UDP Client, UDP Server. Example: UDP Server using Python import socket   localIP     = &quot;127.0.0.1&quot; localPort   = 20001 bufferSize  = 1024   msgFromServer       = &quot;Hello UDP Client&quot; bytesToSend         = str.encode(msgFromServer)   # Create a datagram socket UDPServerSocket = socket.socket(family=socket.AF_INET, type=socket.SOCK_DGRAM)   # Bind to address and ip UDPServerSocket.bind((localIP, localPort))   print(&quot;UDP server up and listening&quot;)   # Listen for incoming datagrams while(True):     bytesAddressPair = UDPServerSocket.recvfrom(bufferSize)     message = bytesAddressPair[0]     address = bytesAddressPair[1]     clientMsg = &quot;Message from Client:{}&quot;.format(message)     clientIP...

IOT Experiment -5

   IOT Experiment -5 READ TEMPERATURE AND DISPLAY ON SERIAL MONITOR USING ARDUINO UNO IN DEGREE CELCUIS AND FAHREINHEIT SORCE CODE: const int sensor=A5; float tempc; float tempf; float vout; void setup(){   pinMode(sensor,INPUT);   Serial.begin(9600); } void loop(){   vout = analogRead(sensor);   vout=(vout *500)/1023; tempc=vout; tempf=(vout*1.8)+32; Serial.print("in DegreeC="); Serial.print("\t"); Serial.print(tempc); Serial.print("  "); Serial.print("in Fahrenheit=");   Serial.print("\t"); Serial.print(tempf); Serial.println(); delay(500); }

IOT Experiment -4

  IOT Experiment -4 READ TEMPERATURE AND DISPLAY ON SERIAL MONITOR USING ARDUINO UNO SORCE CODE: float temp; int temppin=0; void setup(){   Serial.begin(9600); } void loop(){   temp = analogRead(temppin);   temp=temp * 0.48828125;      Serial.print("temperature=");   Serial.print(temp);   Serial.print("*C");   Serial.println();   delay(1000); }

IOT Experiment -2

 IOT Experiment -2  LED INTENSITY VARIATION SORCE CODE: void Setup()  {  // initialize digital pin 5,6,7 & 8 as an output.  pinMode(5, OUTPUT);  pinMode(6, OUTPUT);  pinMode(7, OUTPUT);  digitalWrite(5, HIGH);  digitalWrite(6, HIGH);  digitalWrite(7, HIGH);  }   void Loop()  {  digitalWrite(5, HIGH);  digitalWrite(6, LOW);  digitalWrite(7, LOW);  delay(500); digitalWrite(5, LOW); digitalWrite(6, LOW); digitalWrite(7, HIGH); delay(500); digitalWrite(5, LOW); digitalWrite(6, HIGH); digitalWrite(7, LOW); delay(500); int red_light_pin= 7; int green_light_pin = 6; int blue_light_pin = 5; int count = 0; void setup() {   pinMode(red_light_pin, OUTPUT);   pinMode(green_light_pin, OUTPUT);   pinMode(blue_light_pin, OUTPUT); } void loop() {   if (count >= 0 && count<=100)   {   RGB_color(255, 0, 255); // Yellow   delay(50);   count++;   }   else ...

OOP LAB MANUAL

1. Develop a program in C++ to create a database of student’s information system containing the      Information. https://drive.google.com/file/d/15dCVV8ynkYBKAHhJA_gX7MrjUbsfWsjW/view?usp=sharing 2.To study exception handling using books and audio cassette. https://drive.google.com/file/d/10IB4qhyMnOXO7SeQHUHxeAsXu5gWkLRE/view?usp=sharing,  3.Write a C++ program that –           1. Creates an output file           2. Writes information to it           3. Closes the file           4. Open it again as an input file and read the information from the file. https://drive.google.com/file/d/13OfSsWxlzXCHqKnabblH9AftrHPIjgqj/view?usp=sharing,   4.To write a function template for selection sort that inputs, sorts and outputs an integer array and a float array. Objectives: 1) To learn and understand templates. https://drive.google.com/file/d/15bwF-5BjhLXk-XrCjZDyDUn8G2KiVt...

FIRST YEAR SPPU NOTES

FIRST YEAR SPPU NOTES  ENGINEERING MECHANICS : Unit 1 -  OPEN PDF Unit 2 -  OPEN PDF Unit 3 -  OPEN PDF Unit 4 -  OPEN PDF ENGINEERING GRAPHICS : Unit 1 -  OPEN PDF Unit 2 -  OPEN PDF Unit 3 -  OPEN PDF Unit 4 -  OPEN PDF ENGINEERING MATHEMATICS - 2 : NIRALI PRAKASHAN UNIT 1 TO 4 -  OPEN  PDF ENGINEERING PHYSICS :                                  COMING SOON BASIC ELECTRONICS ENGINEERING :                                  COMING SOON

BACHELOR OF ENGINEERING IN ARTIFICIAL INTELLIGENCE AND DATA SCIENCE | B.E. (AI-DS)

Artificial Intelligence and Data Science is an interdisciplinary branch of science, engineering and technology creating a complete ecosystem and a paradigm shift in virtually every sector of the technical industry, academics and research. Artificial Intelligence and Data Science is the future of technology which are changing the world at very high pace. The basic objectives of this course is to train students with the next age of Intelligence and analytics generated by machines, influencing nearly every facet of our lives to help improve efficiencies and augment human capabilities, influencing consumer products with significant breakthroughs in healthcare, manufacturing, finance and retail industries. With the tremendous amount of data generated every day and the computing power available, Data Science plays important role helping every business organisation in identifying business trends and changes through advanced Big Data Analytics with variety of techniques and tools to interpret...

GEOGRAPHY MAPS

GEOGRAPHY ALL CHAPTERS MAPS : (1) Coal is used on large scale in industries. Give reasons (2) Composition of population is often affected by migration. Give reasons (3) Deccan plateau is known as Silicon Plateau. Give reasons (4) Describe Electronic industries. (5) Describe the World Trade Organization. (6) Describe the different Trade Organization. (7) Domestic trade is more developed in densely population in densely populated region. Give reasons (8) Explain the Mumbai-Pune industrial belt in India. (9) Explain the classification of minerals. (10) Explain the factor affecting the location of industries. (11) Explain the important of minerals. (12) Explain the role of minerals in the economic development of a country. (13) Explain the role of ports in international trade. (14) Explain the world distribution of mineral oil. (15) Improvement in communication has brought major change in the International migration. Give reasons. (16) In which factors...

COMPUTER SCIENCE QUESTIONS

CS PART 1 CS PART 2

MATHS FORMULAS FOR PART 1

MATHS FORMULAS FOR PART 1

MATHS IMPORTANT QUESTION 2020 HSC

MATHS IMPORTANT QUESTION 2020 HSC PART - 1 PART - 2 FOR THEOREMS: CLICK HERE FOR UTTAM QUESTION BANK : CLICK HERE NOTE: SOLVE ALL THE SUMS PROPERLY. THEOREMS ARE GOING TO COME SURE SHOT[14-20 MARKS]. ALL THE BEST ...👍👍😎

CHEMISTRY IMPORTANT QUESTION 2020 HSC

CHEMISTRY IMPORTANT QUESTION 2020 HSC PLZ DO IT. PART - 1 PART - 2

PHYSICS GUESS PAPER HSC 2020

PHYSICS GUESS PAPER HSC 2020

ENGLISH HSC 2020 ANSWER KEY

ENGLISH HSC 2020 ANSWER KEY