Skip to main content

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-XrCjZDyDUn8G2KiVtEy/view?usp=sharing, 

5.To perform various operation like creating store database ,sort, search ,display, delete

and utilize vector concept in STL for it.

https://drive.google.com/file/d/15dCVV8ynkYBKAHhJA_gX7MrjUbsfWsjW/view?usp=sharing, 

6.Demonstrate use of operator overloading for Complex class.

https://drive.google.com/file/d/16qVVnah7V8gM6-rPZMImpBxVnbtxDnfY/view?usp=sharing, 

7.To learn the use of maps  associative container in  C++ under STL

https://docs.google.com/document/d/1c2PTtvFganAbMmWt5oE_DvmX35xUWJgC/edit?usp=sharing&ouid=115722135061797032136&rtpof=true&sd=true

Comments

Popular posts from this blog

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...

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...