├── .github ├── ISSUE_TEMPLATE │ └── report-mistake.yaml ├── PULL_REQUEST_TEMPLATE │ └── any-pr.md └── workflows │ └── pr-review.yaml ├── contributing.md ├── papers ├── Semester 1 │ ├── CS0.101 Computer Programming │ │ ├── CS0.101 Endsems Lab Exam Set 1.pdf │ │ ├── CS0.101 Endsems Lab Exam Set 2.pdf │ │ ├── CS0.101 Endsems.pdf │ │ ├── CS0.101 Midsems.pdf │ │ ├── CS0.101 Quiz 1.pdf │ │ └── CS0.101 Quiz 2.pdf │ ├── EC2.101 Digital Systems and Microcontrollers │ │ ├── EC2.101 Endsems.pdf │ │ ├── EC2.101 Midsems.pdf │ │ ├── EC2.101 Quiz 1.pdf │ │ └── EC2.101 Quiz 2.pdf │ ├── GS0.101 Spatial Thinking and Practice │ │ ├── GS0.101 Endsems.pdf │ │ ├── GS0.101 Midsems.pdf │ │ └── GS0.101 Quiz 1.pdf │ ├── HS4.102 Making of the Contemporary India │ │ ├── HS4.102 Endsems.pdf │ │ ├── HS4.102 Midsems Make-Up.pdf │ │ ├── HS4.102 Midsems.pdf │ │ └── HS4.102 Quiz 1.pdf │ ├── MA4.101 Real Analysis │ │ ├── MA4.101 Endsems.pdf │ │ ├── MA4.101 Midsems.pdf │ │ ├── MA4.101 Quiz 1.pdf │ │ └── MA4.101 Quiz 2.pdf │ ├── MA5.101 Discrete Structures │ │ ├── MA5.101 Endsems.pdf │ │ ├── MA5.101 Midsems.pdf │ │ ├── MA5.101 Quiz 1 Section A.pdf │ │ ├── MA5.101 Quiz 1 Section B.pdf │ │ └── MA5.101 Quiz 2.pdf │ └── SC4.101 Computing in Sciences - I │ │ ├── SC4.101 Endsems.pdf │ │ └── SC4.101 Quiz 2.pdf ├── Semester 2 │ ├── CS1.201 Data Structures and Algorithms │ │ ├── CS1.201 Endsems.pdf │ │ ├── CS1.201 Midsems.pdf │ │ └── CS1.201 Quiz 2.pdf │ ├── CS3.303 Introduction to IoT │ │ ├── CS3.303 Endsems.pdf │ │ ├── CS3.303 Midsems.pdf │ │ ├── CS3.303 Quiz 1.pdf │ │ └── CS3.303 Quiz Answer Key.pdf │ ├── EC2.103 Analog Electronic Circuits │ │ ├── EC2.103 Endsems.pdf │ │ ├── EC2.103 Midsems.pdf │ │ ├── EC2.103 Quiz 1 Solutions.pdf │ │ └── EC2.103 Quiz 2.pdf │ ├── EC5.102 Information and Communication │ │ ├── EC5.102 Endsems.pdf │ │ ├── EC5.102 Midsems.pdf │ │ ├── EC5.102 Quiz 1.pdf │ │ └── EC5.102 Quiz 2.pdf │ ├── GS0.301 Introduction to Spatial Sciences │ │ ├── GS0.301 Endsems.pdf │ │ └── GS0.301 Midsems.pdf │ ├── HS0.201 Thinking and Knowing in the Human Sciences - I │ │ ├── HS0.201 Endsems.pdf │ │ └── HS0.201 Midsems.pdf │ ├── HS8.101 Making of Contemporary World │ │ ├── HS8.101 Endsems.pdf │ │ └── HS8.101 Midsems.pdf │ ├── MA2.101 Linear Algebra │ │ ├── MA2.101 Endsems.pdf │ │ ├── MA2.101 Midsems Solutions.pdf │ │ ├── MA2.101 Midsems.pdf │ │ ├── MA2.101 Quiz 1.pdf │ │ └── MA2.101 Quiz 2.pdf │ ├── SC1.101 Electrodynamics │ │ └── SC1.101 Endsems.pdf │ ├── SC1.102 Classical Mechanics │ │ ├── SC1.102 Midsems.pdf │ │ └── SC1.102 Quiz 1.pdf │ ├── SC2.101 General and Structural Chemistry │ │ ├── SC2.101 Quiz 1.pdf │ │ └── SC2.101 Quiz 2.pdf │ └── SC4.102 Computing in Sciences - II │ │ ├── SC4.102 CIS-2_quiz.pdf │ │ └── SC4.102 Endsems.pdf └── Semester 3 │ ├── CL2.203 Language and Society │ └── .keep │ ├── CL3.202 Computational Linguistics - II │ └── .keep │ ├── CS1.301 Algorithm Analysis and Design │ ├── CS1.301 Quiz 1 Solutions.pdf │ └── CS1.301 Quiz 1.pdf │ ├── CS1.302 Automata Theory │ └── .keep │ ├── CS3.301 Operating Systems and Networks │ └── .keep │ ├── EC2.201 VLSI Design │ └── .keep │ ├── EC3.202 Embedded Systems Workshop │ └── .keep │ ├── EC5.201 Signal Processing │ └── .keep │ ├── GS2.401 Spatial Informatics │ ├── .keep │ └── GS2.401 Midsem.pdf │ ├── HS0.202 Thinking and Knowing in the Human Sciences - II │ └── HS0.202 Quiz 1.jpg │ ├── HS0.301 Classical Text Readings - I │ └── .keep │ ├── MA6.101 Probability and Statistics │ └── MA6.101 Quiz 1.pdf │ ├── MA6.102 Probability and Random Processes │ └── MA6.102 Quiz 1.pdf │ ├── SC1.110 Science - I │ ├── .keep │ └── SC1.110 Quiz-1.pdf │ ├── SC1.203 Quantum Mechanics │ └── SC1.203 Quiz 1.pdf │ └── SC3.101 Introduction to Biology │ └── .keep ├── readme.md └── scripts ├── check-course-code ├── check-keep-files ├── data └── courses.csv ├── generate-comment ├── remove-keep-files └── validate-format /.github/ISSUE_TEMPLATE/report-mistake.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/.github/ISSUE_TEMPLATE/report-mistake.yaml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/any-pr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/.github/PULL_REQUEST_TEMPLATE/any-pr.md -------------------------------------------------------------------------------- /.github/workflows/pr-review.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/.github/workflows/pr-review.yaml -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/contributing.md -------------------------------------------------------------------------------- /papers/Semester 1/CS0.101 Computer Programming/CS0.101 Endsems Lab Exam Set 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/CS0.101 Computer Programming/CS0.101 Endsems Lab Exam Set 1.pdf -------------------------------------------------------------------------------- /papers/Semester 1/CS0.101 Computer Programming/CS0.101 Endsems Lab Exam Set 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/CS0.101 Computer Programming/CS0.101 Endsems Lab Exam Set 2.pdf -------------------------------------------------------------------------------- /papers/Semester 1/CS0.101 Computer Programming/CS0.101 Endsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/CS0.101 Computer Programming/CS0.101 Endsems.pdf -------------------------------------------------------------------------------- /papers/Semester 1/CS0.101 Computer Programming/CS0.101 Midsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/CS0.101 Computer Programming/CS0.101 Midsems.pdf -------------------------------------------------------------------------------- /papers/Semester 1/CS0.101 Computer Programming/CS0.101 Quiz 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/CS0.101 Computer Programming/CS0.101 Quiz 1.pdf -------------------------------------------------------------------------------- /papers/Semester 1/CS0.101 Computer Programming/CS0.101 Quiz 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/CS0.101 Computer Programming/CS0.101 Quiz 2.pdf -------------------------------------------------------------------------------- /papers/Semester 1/EC2.101 Digital Systems and Microcontrollers/EC2.101 Endsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/EC2.101 Digital Systems and Microcontrollers/EC2.101 Endsems.pdf -------------------------------------------------------------------------------- /papers/Semester 1/EC2.101 Digital Systems and Microcontrollers/EC2.101 Midsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/EC2.101 Digital Systems and Microcontrollers/EC2.101 Midsems.pdf -------------------------------------------------------------------------------- /papers/Semester 1/EC2.101 Digital Systems and Microcontrollers/EC2.101 Quiz 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/EC2.101 Digital Systems and Microcontrollers/EC2.101 Quiz 1.pdf -------------------------------------------------------------------------------- /papers/Semester 1/EC2.101 Digital Systems and Microcontrollers/EC2.101 Quiz 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/EC2.101 Digital Systems and Microcontrollers/EC2.101 Quiz 2.pdf -------------------------------------------------------------------------------- /papers/Semester 1/GS0.101 Spatial Thinking and Practice/GS0.101 Endsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/GS0.101 Spatial Thinking and Practice/GS0.101 Endsems.pdf -------------------------------------------------------------------------------- /papers/Semester 1/GS0.101 Spatial Thinking and Practice/GS0.101 Midsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/GS0.101 Spatial Thinking and Practice/GS0.101 Midsems.pdf -------------------------------------------------------------------------------- /papers/Semester 1/GS0.101 Spatial Thinking and Practice/GS0.101 Quiz 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/GS0.101 Spatial Thinking and Practice/GS0.101 Quiz 1.pdf -------------------------------------------------------------------------------- /papers/Semester 1/HS4.102 Making of the Contemporary India/HS4.102 Endsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/HS4.102 Making of the Contemporary India/HS4.102 Endsems.pdf -------------------------------------------------------------------------------- /papers/Semester 1/HS4.102 Making of the Contemporary India/HS4.102 Midsems Make-Up.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/HS4.102 Making of the Contemporary India/HS4.102 Midsems Make-Up.pdf -------------------------------------------------------------------------------- /papers/Semester 1/HS4.102 Making of the Contemporary India/HS4.102 Midsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/HS4.102 Making of the Contemporary India/HS4.102 Midsems.pdf -------------------------------------------------------------------------------- /papers/Semester 1/HS4.102 Making of the Contemporary India/HS4.102 Quiz 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/HS4.102 Making of the Contemporary India/HS4.102 Quiz 1.pdf -------------------------------------------------------------------------------- /papers/Semester 1/MA4.101 Real Analysis/MA4.101 Endsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/MA4.101 Real Analysis/MA4.101 Endsems.pdf -------------------------------------------------------------------------------- /papers/Semester 1/MA4.101 Real Analysis/MA4.101 Midsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/MA4.101 Real Analysis/MA4.101 Midsems.pdf -------------------------------------------------------------------------------- /papers/Semester 1/MA4.101 Real Analysis/MA4.101 Quiz 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/MA4.101 Real Analysis/MA4.101 Quiz 1.pdf -------------------------------------------------------------------------------- /papers/Semester 1/MA4.101 Real Analysis/MA4.101 Quiz 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/MA4.101 Real Analysis/MA4.101 Quiz 2.pdf -------------------------------------------------------------------------------- /papers/Semester 1/MA5.101 Discrete Structures/MA5.101 Endsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/MA5.101 Discrete Structures/MA5.101 Endsems.pdf -------------------------------------------------------------------------------- /papers/Semester 1/MA5.101 Discrete Structures/MA5.101 Midsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/MA5.101 Discrete Structures/MA5.101 Midsems.pdf -------------------------------------------------------------------------------- /papers/Semester 1/MA5.101 Discrete Structures/MA5.101 Quiz 1 Section A.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/MA5.101 Discrete Structures/MA5.101 Quiz 1 Section A.pdf -------------------------------------------------------------------------------- /papers/Semester 1/MA5.101 Discrete Structures/MA5.101 Quiz 1 Section B.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/MA5.101 Discrete Structures/MA5.101 Quiz 1 Section B.pdf -------------------------------------------------------------------------------- /papers/Semester 1/MA5.101 Discrete Structures/MA5.101 Quiz 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/MA5.101 Discrete Structures/MA5.101 Quiz 2.pdf -------------------------------------------------------------------------------- /papers/Semester 1/SC4.101 Computing in Sciences - I/SC4.101 Endsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/SC4.101 Computing in Sciences - I/SC4.101 Endsems.pdf -------------------------------------------------------------------------------- /papers/Semester 1/SC4.101 Computing in Sciences - I/SC4.101 Quiz 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 1/SC4.101 Computing in Sciences - I/SC4.101 Quiz 2.pdf -------------------------------------------------------------------------------- /papers/Semester 2/CS1.201 Data Structures and Algorithms/CS1.201 Endsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/CS1.201 Data Structures and Algorithms/CS1.201 Endsems.pdf -------------------------------------------------------------------------------- /papers/Semester 2/CS1.201 Data Structures and Algorithms/CS1.201 Midsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/CS1.201 Data Structures and Algorithms/CS1.201 Midsems.pdf -------------------------------------------------------------------------------- /papers/Semester 2/CS1.201 Data Structures and Algorithms/CS1.201 Quiz 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/CS1.201 Data Structures and Algorithms/CS1.201 Quiz 2.pdf -------------------------------------------------------------------------------- /papers/Semester 2/CS3.303 Introduction to IoT/CS3.303 Endsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/CS3.303 Introduction to IoT/CS3.303 Endsems.pdf -------------------------------------------------------------------------------- /papers/Semester 2/CS3.303 Introduction to IoT/CS3.303 Midsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/CS3.303 Introduction to IoT/CS3.303 Midsems.pdf -------------------------------------------------------------------------------- /papers/Semester 2/CS3.303 Introduction to IoT/CS3.303 Quiz 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/CS3.303 Introduction to IoT/CS3.303 Quiz 1.pdf -------------------------------------------------------------------------------- /papers/Semester 2/CS3.303 Introduction to IoT/CS3.303 Quiz Answer Key.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/CS3.303 Introduction to IoT/CS3.303 Quiz Answer Key.pdf -------------------------------------------------------------------------------- /papers/Semester 2/EC2.103 Analog Electronic Circuits/EC2.103 Endsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/EC2.103 Analog Electronic Circuits/EC2.103 Endsems.pdf -------------------------------------------------------------------------------- /papers/Semester 2/EC2.103 Analog Electronic Circuits/EC2.103 Midsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/EC2.103 Analog Electronic Circuits/EC2.103 Midsems.pdf -------------------------------------------------------------------------------- /papers/Semester 2/EC2.103 Analog Electronic Circuits/EC2.103 Quiz 1 Solutions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/EC2.103 Analog Electronic Circuits/EC2.103 Quiz 1 Solutions.pdf -------------------------------------------------------------------------------- /papers/Semester 2/EC2.103 Analog Electronic Circuits/EC2.103 Quiz 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/EC2.103 Analog Electronic Circuits/EC2.103 Quiz 2.pdf -------------------------------------------------------------------------------- /papers/Semester 2/EC5.102 Information and Communication/EC5.102 Endsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/EC5.102 Information and Communication/EC5.102 Endsems.pdf -------------------------------------------------------------------------------- /papers/Semester 2/EC5.102 Information and Communication/EC5.102 Midsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/EC5.102 Information and Communication/EC5.102 Midsems.pdf -------------------------------------------------------------------------------- /papers/Semester 2/EC5.102 Information and Communication/EC5.102 Quiz 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/EC5.102 Information and Communication/EC5.102 Quiz 1.pdf -------------------------------------------------------------------------------- /papers/Semester 2/EC5.102 Information and Communication/EC5.102 Quiz 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/EC5.102 Information and Communication/EC5.102 Quiz 2.pdf -------------------------------------------------------------------------------- /papers/Semester 2/GS0.301 Introduction to Spatial Sciences/GS0.301 Endsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/GS0.301 Introduction to Spatial Sciences/GS0.301 Endsems.pdf -------------------------------------------------------------------------------- /papers/Semester 2/GS0.301 Introduction to Spatial Sciences/GS0.301 Midsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/GS0.301 Introduction to Spatial Sciences/GS0.301 Midsems.pdf -------------------------------------------------------------------------------- /papers/Semester 2/HS0.201 Thinking and Knowing in the Human Sciences - I/HS0.201 Endsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/HS0.201 Thinking and Knowing in the Human Sciences - I/HS0.201 Endsems.pdf -------------------------------------------------------------------------------- /papers/Semester 2/HS0.201 Thinking and Knowing in the Human Sciences - I/HS0.201 Midsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/HS0.201 Thinking and Knowing in the Human Sciences - I/HS0.201 Midsems.pdf -------------------------------------------------------------------------------- /papers/Semester 2/HS8.101 Making of Contemporary World/HS8.101 Endsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/HS8.101 Making of Contemporary World/HS8.101 Endsems.pdf -------------------------------------------------------------------------------- /papers/Semester 2/HS8.101 Making of Contemporary World/HS8.101 Midsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/HS8.101 Making of Contemporary World/HS8.101 Midsems.pdf -------------------------------------------------------------------------------- /papers/Semester 2/MA2.101 Linear Algebra/MA2.101 Endsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/MA2.101 Linear Algebra/MA2.101 Endsems.pdf -------------------------------------------------------------------------------- /papers/Semester 2/MA2.101 Linear Algebra/MA2.101 Midsems Solutions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/MA2.101 Linear Algebra/MA2.101 Midsems Solutions.pdf -------------------------------------------------------------------------------- /papers/Semester 2/MA2.101 Linear Algebra/MA2.101 Midsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/MA2.101 Linear Algebra/MA2.101 Midsems.pdf -------------------------------------------------------------------------------- /papers/Semester 2/MA2.101 Linear Algebra/MA2.101 Quiz 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/MA2.101 Linear Algebra/MA2.101 Quiz 1.pdf -------------------------------------------------------------------------------- /papers/Semester 2/MA2.101 Linear Algebra/MA2.101 Quiz 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/MA2.101 Linear Algebra/MA2.101 Quiz 2.pdf -------------------------------------------------------------------------------- /papers/Semester 2/SC1.101 Electrodynamics/SC1.101 Endsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/SC1.101 Electrodynamics/SC1.101 Endsems.pdf -------------------------------------------------------------------------------- /papers/Semester 2/SC1.102 Classical Mechanics/SC1.102 Midsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/SC1.102 Classical Mechanics/SC1.102 Midsems.pdf -------------------------------------------------------------------------------- /papers/Semester 2/SC1.102 Classical Mechanics/SC1.102 Quiz 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/SC1.102 Classical Mechanics/SC1.102 Quiz 1.pdf -------------------------------------------------------------------------------- /papers/Semester 2/SC2.101 General and Structural Chemistry/SC2.101 Quiz 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/SC2.101 General and Structural Chemistry/SC2.101 Quiz 1.pdf -------------------------------------------------------------------------------- /papers/Semester 2/SC2.101 General and Structural Chemistry/SC2.101 Quiz 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/SC2.101 General and Structural Chemistry/SC2.101 Quiz 2.pdf -------------------------------------------------------------------------------- /papers/Semester 2/SC4.102 Computing in Sciences - II/SC4.102 CIS-2_quiz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/SC4.102 Computing in Sciences - II/SC4.102 CIS-2_quiz.pdf -------------------------------------------------------------------------------- /papers/Semester 2/SC4.102 Computing in Sciences - II/SC4.102 Endsems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 2/SC4.102 Computing in Sciences - II/SC4.102 Endsems.pdf -------------------------------------------------------------------------------- /papers/Semester 3/CL2.203 Language and Society/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /papers/Semester 3/CL3.202 Computational Linguistics - II/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /papers/Semester 3/CS1.301 Algorithm Analysis and Design/CS1.301 Quiz 1 Solutions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 3/CS1.301 Algorithm Analysis and Design/CS1.301 Quiz 1 Solutions.pdf -------------------------------------------------------------------------------- /papers/Semester 3/CS1.301 Algorithm Analysis and Design/CS1.301 Quiz 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 3/CS1.301 Algorithm Analysis and Design/CS1.301 Quiz 1.pdf -------------------------------------------------------------------------------- /papers/Semester 3/CS1.302 Automata Theory/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /papers/Semester 3/CS3.301 Operating Systems and Networks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /papers/Semester 3/EC2.201 VLSI Design/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /papers/Semester 3/EC3.202 Embedded Systems Workshop/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /papers/Semester 3/EC5.201 Signal Processing/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /papers/Semester 3/GS2.401 Spatial Informatics/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /papers/Semester 3/GS2.401 Spatial Informatics/GS2.401 Midsem.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 3/GS2.401 Spatial Informatics/GS2.401 Midsem.pdf -------------------------------------------------------------------------------- /papers/Semester 3/HS0.202 Thinking and Knowing in the Human Sciences - II/HS0.202 Quiz 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 3/HS0.202 Thinking and Knowing in the Human Sciences - II/HS0.202 Quiz 1.jpg -------------------------------------------------------------------------------- /papers/Semester 3/HS0.301 Classical Text Readings - I/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /papers/Semester 3/MA6.101 Probability and Statistics/MA6.101 Quiz 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 3/MA6.101 Probability and Statistics/MA6.101 Quiz 1.pdf -------------------------------------------------------------------------------- /papers/Semester 3/MA6.102 Probability and Random Processes/MA6.102 Quiz 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 3/MA6.102 Probability and Random Processes/MA6.102 Quiz 1.pdf -------------------------------------------------------------------------------- /papers/Semester 3/SC1.110 Science - I/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /papers/Semester 3/SC1.110 Science - I/SC1.110 Quiz-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 3/SC1.110 Science - I/SC1.110 Quiz-1.pdf -------------------------------------------------------------------------------- /papers/Semester 3/SC1.203 Quantum Mechanics/SC1.203 Quiz 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/papers/Semester 3/SC1.203 Quantum Mechanics/SC1.203 Quiz 1.pdf -------------------------------------------------------------------------------- /papers/Semester 3/SC3.101 Introduction to Biology/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/check-course-code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/scripts/check-course-code -------------------------------------------------------------------------------- /scripts/check-keep-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/scripts/check-keep-files -------------------------------------------------------------------------------- /scripts/data/courses.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/scripts/data/courses.csv -------------------------------------------------------------------------------- /scripts/generate-comment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/scripts/generate-comment -------------------------------------------------------------------------------- /scripts/remove-keep-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/scripts/remove-keep-files -------------------------------------------------------------------------------- /scripts/validate-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanyamseac/exams2k24/HEAD/scripts/validate-format --------------------------------------------------------------------------------