diff --git a/.DS_Store b/.DS_Store
new file mode 100644
index 0000000..023fffd
Binary files /dev/null and b/.DS_Store differ
diff --git a/README.md b/README.md
index 6bcc731..017bf8a 100644
--- a/README.md
+++ b/README.md
@@ -1,24 +1,28 @@
-## Introduction
+## Round 0
-
-Discipline | Fill your discipline name here
+Discipline | Computer Science
:--|:--|
- Lab | Fill your lab name here
- Experiment| Fill your experiment name and number here
-
-### About the Experiment
+Lab | Python Programming Lab
+Experiment| Classes and Objects
-Fill a brief description of this experiment here
+ About the Experiment :
+To teach the basics of Classes and Objects in python using an interactive simulator. Initially, we have a task that will help
+user to recall his knowledge about Classes and Objects and then an interactive
+representation through the simulator that will the help user to enhance his/her concepts.
-Name of Developer | Fill the name of experiment owner here
+Name of Developer | Dr. Aparna Dixit
:--|:--|
- Institute |
- Email id|
- Department |
+Institute | Pranveer Singh Institute Of Technology, Kanpur, Uttar Pradesh
+Email id| garima002@gmail.com
+Department | Basic Science and Humanities(Assistant Professor)
+
-### Contributors List
+#### Contributors List
SrNo | Name | Faculty or Student | Department| Institute | Email id
:--|:--|:--|:--|:--|:--|
-1 | . | . | . | . | .
-2 | . | . | . | . | .
+1 | Dr. Aparna Dixit | Faculty | Basic Science and Humanities(Assistant Professor) | Pranveer Singh Institute Of Technology, Kanpur, Uttar Pradesh | garima002@gmail.com
+2 | Yash Srivastava | Student | Dept. of Information Technology | Pranveer Singh Institute Of Technology, Kanpur, Uttar Pradesh | officialyash2616@gmail.com
+3 | Pawan Yadav | Student | Dept. of Information Technology | Pranveer Singh Institute Of Technology, Kanpur, Uttar Pradesh | pkpawan954@gmail.com
+4 | Sumit Yadav | Student | Dept. of Computer Science and Engineering | Pranveer Singh Institute Of Technology, Kanpur, Uttar Pradesh | sumityadav2408@gmail.com
+5 | Suryansh Tripathi | Student | Dept. of Computer Science and Engineering | Pranveer Singh Institute Of Technology, Kanpur, Uttar Pradesh | suryansh1004@gmail.com
diff --git a/experiment/.DS_Store b/experiment/.DS_Store
new file mode 100644
index 0000000..5c6b3a9
Binary files /dev/null and b/experiment/.DS_Store differ
diff --git a/experiment/README.md b/experiment/README.md
index 4dd6e8c..4030cdd 100644
--- a/experiment/README.md
+++ b/experiment/README.md
@@ -1 +1,168 @@
-### README
\ No newline at end of file
+### Aim
+
+In this experiment, user will learn the concepts of objects and classes used in Python programming language.
+
+2. To implement those concepts in solving a simple problem in the simulator.
+
+### Theory
+
+ There are three things that we can do with class
+
+1.) Class variables:- A variable that can be shared by each and every object of the class.
+2.) Instance variable:- A variable that is unique and can be used only in the instance or object in which it is called.
+3.) Method :- These are the functions that define inside a class.
+Syntax:
+class class_name:
+statements
+
+How to define class objects
+
+Syntax:
+Object_name.class_name()
+
+How to give values to objects in a class
+Syntax:
+Object_name.Marks = 56,
+Object_name.Name = 'Nitin Rautela'
+
+h4>How to call objects of a class
+
+Syntax:
+print(Object_name.Marks)
+Output: 56
+
+### Procedure
+
+ Steps of simulator
+ 1. Read the Simulator details.
+ 2. Enter the desired input.
+ 4. Press CALCULATE to proceed.
+ 5. The code will be displayed
+ 6. Press NEXT to see the execution of code.
+ 7. Relevant line in the code will be highlighted.
+ 8. The local variables will be shown in the Output Panel with their values.
+
+### Pre Test
+
+1. "What is Instantiation?"
+
+ A. Modifying an instance of class
+
+ B. Copying an instance of class
+
+ C. Creating an instance of class
+
+ D. Deleting an instance of class
+
+
+
+ www.learnpython.org/en/Classes_and_Objects
diff --git a/experiment/details.json b/experiment/details.json
new file mode 100644
index 0000000..8580d91
--- /dev/null
+++ b/experiment/details.json
@@ -0,0 +1,46 @@
+{
+
+ "details": [
+ {
+ "Experiment": "Constructors and Inheritance", // Write your experiment name inside the quotes
+ "Lab": "Python Programming Lab", // Write your lab name inside the quotes
+ "Discipline": "Computer Science", // Write discipline name to which experimet belongs inside the quotes
+ "Technology": "Python" // Write technologies used inside the quotes
+ }
+ ],
+
+ "developer": [
+ {
+ "Developer": "Dr. Aparna Dixit", // Write the name of the developer inside the quotes
+ "Institute": "Pranveer Singh Institute of Technology", // Write your institute name inside the quotes
+ "InstituteAcronym": "P.S.I.T." // Write acronym of the institute inside the quotes
+ }
+ ],
+
+ "contributer": [
+ {
+ "Contributer": "Yash Srivastava", // Write the name of the first contributer inside the quotes
+ "Institute": "Pranveer Singh Institute of Technology", // Write your institute name inside the quotes
+ "InstituteAcronym": "P.S.I.T." // Write acronym of the institute inside the quotes
+ },
+
+ {
+ "Contributer": "Pawan Yadav", // Write the name of the second contributer inside the quotes
+ "Institute": "Pranveer Singh Institute of Technology", // Write your institute name inside the quotes
+ "InstituteAcronym": "P.S.I.T." // Write acronym of the institute inside the quotes
+ },
+
+ {
+ "Contributer": "Sumit Yadav", // Write the name of the third contributer inside the quotes
+ "Institute": "Pranveer Singh Institute of Technology", // Write your institute name inside the quotes
+ "InstituteAcronym": "P.S.I.T." // Write acronym of the institute inside the quotes
+ },
+
+ {
+ "Contributer": "Suryansh Tripathi", // Write the name of the fourth contributer inside the quotes
+ "Institute": "Pranveer Singh Institute of Technology", // Write your institute name inside the quotes
+ "InstituteAcronym": "P.S.I.T." // Write acronym of the institute inside the quotes
+ }
+ ]
+
+}
diff --git a/experiment/images/README.md b/experiment/images/README.md
deleted file mode 100644
index 5723b13..0000000
--- a/experiment/images/README.md
+++ /dev/null
@@ -1 +0,0 @@
-### This folder contains images used in round 3 documentation.
diff --git a/experiment/images/post_q.PNG b/experiment/images/post_q.PNG
new file mode 100644
index 0000000..b8211d5
Binary files /dev/null and b/experiment/images/post_q.PNG differ
diff --git a/experiment/institute.md b/experiment/institute.md
new file mode 100644
index 0000000..d5f8431
--- /dev/null
+++ b/experiment/institute.md
@@ -0,0 +1 @@
+#### Pranveer Singh Institute of Technology
diff --git a/experiment/lab-name.md b/experiment/lab-name.md
new file mode 100644
index 0000000..65654d7
--- /dev/null
+++ b/experiment/lab-name.md
@@ -0,0 +1 @@
+## Python Programming Lab
diff --git a/experiment/posttest.json b/experiment/posttest.json
index 32f215c..193afbf 100644
--- a/experiment/posttest.json
+++ b/experiment/posttest.json
@@ -1,12 +1,12 @@
[{
- "question": "A class is instantiated by:",
+ "question": "_is used to create an object:",
"answers": {
- "a": "Calling the class object",
- "b": "Creating the class object",
- "c": "Declaring the class",
- "d": "None of the mentioned,"
+ "a": "class",
+ "b": "constructor",
+ "c": "User-defined functions",
+ "d": "In-built functions"
},
- "correctAnswer": "a"
+ "correctAnswer": "b"
}, {
"question": "Which among the following is not a class method?",
"answers": {
@@ -15,14 +15,14 @@
"c": "Unbounded",
"d": "Bounded"
},
- "correctAnswer": "b"
+ "correctAnswer": "c"
}, {
- "question": "For declaration a = Employee(), which of the following statement is correct.",
+ "question": "
+ A. . Calling the class object
+
+ B. Creating the class Object
+
+ C. Declaring the class
+
+ D. None of the mentioned
+
+
-### 5. Storyboard :
+### 4. Mindmap
-Link the storyboard (.gif file ) in here :
-(guide: This document should include sketching and description scene wise (duration, action, description). Software to be used for storyboarding : https://wonderunit.com/storyboarder/ (Its a FOSS tool).
+
+
+### 5. Storyboard
+
diff --git a/storyboard/flowchart/README.md b/storyboard/flowchart/README.md
deleted file mode 100644
index 7fa03b4..0000000
--- a/storyboard/flowchart/README.md
+++ /dev/null
@@ -1 +0,0 @@
-### This directory contains flowchart used in [storyboard document](https://github.com/virtual-labs/ph3-exp-dev-process/blob/main/storyboard/README.org).
diff --git a/storyboard/mindmap/README.md b/storyboard/mindmap/README.md
deleted file mode 100644
index 61da038..0000000
--- a/storyboard/mindmap/README.md
+++ /dev/null
@@ -1 +0,0 @@
-### This directory contains mindmap used in [storyboard document](https://github.com/virtual-labs/ph3-exp-dev-process/blob/main/storyboard/README.org).
diff --git a/storyboard/storyboard/README.md b/storyboard/storyboard/README.md
deleted file mode 100644
index 4ea4322..0000000
--- a/storyboard/storyboard/README.md
+++ /dev/null
@@ -1 +0,0 @@
-### This directory would contain images of the [storyboard document](https://github.com/virtual-labs/ph3-exp-dev-process/blob/main/storyboard/README.org).