forked from chitwang/iitk-sem1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
esc.html
93 lines (88 loc) · 5.76 KB
/
esc.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ESC 101</title>
<link rel="icon" type="image/x-icon" href="favicon.png">
<style>
a:link {
color: black;
background-color: transparent;
font-size: 300;
}
h2 {
text-decoration: double;
color: black;
font-style: italic;
}
.row {
display: flex;
}
.column {
flex: 50%;
padding: 5px;
}
</style>
</head>
<body>
<header>
<div style="text-align: right;font-size: large;"><pre><a href = "index.html">Home</a> <a href = "phy.html">PHY 103</a> <a href = "mth.html">MTH 101</a> <a href = "chm.html">CHM 101</a> <a href = "art.html">ART 102</a> <a href = "contact.html">Contact</a></pre></div>
<h1 style="text-align: center; text-decoration: underline; font-size: 300; font-family: cursive;color: darkblue">
ESC101 : FUNDAMENTALS OF COMPUTING
</h1>
</header>
<div style="font-size: larger; color: rgb(200,21,21);">
<h2 class="h2">ABOUT THE COURSE
</h2>
<ul type="disc">
<li>The main motive of the course is to develop logic buliding. It is a compulsory course for all.</li><br>
<li>The lab sessions were held through <a href="https://esc101.cse.iitk.ac.in/">Prutor</a>.</li><br>
<li>My instructor: Dr. Swarnendu Biswas</li><br>
<li>There were a total of 11 labs out of which best 10 were considered. Each lab had a weightage of 7%. So,
total weightage of labs = 70%. The remaining 30% comprised of 3 quizzes (10% each).</li><br>
<li>Below is the collection of all the practice , lab and quiz questions with their solutions. The answers
are correct according to me (atleast the programs have passed all the test cases) , but better to verify
yourself.</li><br>
<li>Textbook : <a href="http://pdvpmtasgaon.edu.in/uploads/dptcomputer/Let%20us%20c%20-%20yashwantkanetkar.pdf" target="blank">Let us C - Yashwant Kanetkar</a></li><br>
<li>Before seeing solutions , try the questions yourself atleast once or twice.</li><br>
</ul><hr>
</div>
<div>
<h2 class="h2">PRACTICE QUESTIONS</h2>
<p style="color:rgb(158, 30, 52);font-size: larger;">Practice questions were provided every Sunday for the upcoming Friday lab. These questions were from the same topics as the lab. Despite the fact that practice problems were somewhat easier than the lab problems , these were quite helpful. Most importantly , these problems provided the same coding environment (of test cases) as it was in the actual labs.<br><br><a href="practice.html" >Click here to see the practice questions</a></p><hr>
</div>
<div>
<h2 class="h2">LAB QUESTIONS</h2>
<p style="color:rgb(158, 30, 52);font-size: larger;">Labs consisted of 3-4 questions in 3 hours. The questions were one of their own kind but they were much difficult too. Besides the policy on unlawful practices was severe. If caught in plagiarism , straightaway zero was awarded in that question. Also, repeated offenders were penalised 10-15% of the total score at the end. So, Beware of plag.<br><br>
<a href="lab.html" >Click here to see the Lab questions</a></p><hr>
</div>
<div>
<h2 class="h2">QUIZZES</h2>
<p style="color:rgb(158, 30, 52);font-size: larger;">The quizzes were held in 2 parts - <em>mookit</em> and <em>Prutor</em> where each part was of 75 marks. Mookit part consisted of theoritical questions related to finding output , completing the code and some true/false. And the Prutor part consisted of 2 programming problems of 35 and 40 marks.<br><br>
<a href="quiz.html" >Click here to see the Quizzes</a></p><hr>
</div>
<div>
<p style="color:rgb(158, 30, 52);font-size: larger;">
Besides all the above material , I am also attaching the link of a website prepared by a Y20-Harshit Raj. It has the repository of all the lab and practice questions of Y20. Visit if you have time...<br><br><a href="https://rudrakshk20.github.io/home-iitk/esc101.html">Link to Harshit's website</a></p><hr>
</div>
<footer style="margin-right: 10px;font-size: larger;color: black;">
Only contributor : Me myself <br>
Only advice : Don't cheat - effects can (will) be severe<a href="mailto: [email protected]"
target="blank" title="[email protected]"><img src="gmail.png" alt="Gmail"
style="width:50px;height:50px;float: right;"></a>
<a href="mailto: [email protected]" target="blank" title="[email protected]"><img
src="hotmail.png" alt="Hotmail" style="width:50px;height:50px;float: right;"></a>
<a href="https://www.facebook.com/profile.php?id=100074761380552" target="blank" title="Facebook"><img
src="fb.png" alt="Facebook" style="width:50px;height:50px;float: right;"></a>
<a href="https://www.linkedin.com/in/chitwan-goel-2480b4230" target="blank" title="LinkedIn"><img
src="linkedin.jpg" alt="LinkedIn" style="width:50px;height:50px;float: right;"></a>
<a href="https://t.me/chitwang" target="blank" title="Telegram"><img src="tg.png" alt="Telegram"
style="width:50px;height:50px;float: right;"></a><br>Website made by me during the end semester recess
of semester-I 2021-22. <br>
Not updated since: 15 March 2022<br>
<div style="text-align: center;text-decoration: none;color: blue;">© No Rights Reserved.</div>
</footer>
</body>
</html>