-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassignment.html.template
219 lines (186 loc) · 6.13 KB
/
assignment.html.template
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>PVM Assignment</title>
<%= stylesheets('pvm') %>
<%= scripts('jquery', 'jquery-ui', 'underscore', 'ace/ace', 'source-editor', 'revealer', 'quiz', 'html') %>
</head>
<body>
<header>
<div class="center-vertically">Default Parameter Values</div>
</header>
<div id="contents">
<%=
exercise(Lib::Interpretation) do
self.source = <<-END
#include <iostream>
int foo(int x = 5)
{
return x;
}
int main()
{
std::cout << foo(1) << foo(2) << foo();
}
END
<<-END
<p>What is the output of the following code? Enter <code>DNC</code> if the code does not compile. Enter <code>???</code> if its behaviour is undefined.</p>
#{show_source_editor}
#{if input then show_input else '' end}
#{show_output_field}
END
end
%>
<%=
exercise(Lib::Interpretation) do
self.source = <<-END
#include <iostream>
int foo(int x = 5, bool y = true)
{
return y ? x * 10 : x;
}
int main()
{
std::cout << foo(false);
}
END
<<-END
<p>What is the output of the following code? Enter <code>DNC</code> if the code does not compile. Enter <code>???</code> if its behaviour is undefined.</p>
#{show_source_editor}
#{if input then show_input else '' end}
#{show_output_field}
<div data-revealer="Show explanation" class="explanation">
<p>
C++ will not try to match types, so <code>false</code> will assigned to <code>x</code>, not to <code>y</code>.
During this process, <code>false</code> must be converted to an <code>int</code>, which is possible: <code>false</code> gets turned into <code>0</code>.
</p>
</div>
END
end
%>
<%=
exercise(Lib::Interpretation) do
self.source = <<-END
#include <iostream>
int foo(int x = 5, int y)
{
return x * y;
}
int main()
{
std::cout << foo(1, 2);
}
END
self.output = 'DNC'
<<-END
<p>What is the output of the following code? Enter <code>DNC</code> if the code does not compile. Enter <code>???</code> if its behaviour is undefined.</p>
#{show_source_editor}
#{if input then show_input else '' end}
#{show_output_field}
<div data-revealer="Show explanation" class="explanation">
<p>
In <code>foo</code>'s definition, <code>x</code> has a default argument value, meaning
that all subsequent parameters must also get one.
</p>
</div>
END
end
%>
<%=
exercise(Lib::Interpretation) do
self.source = <<-END
#include <iostream>
int foo(int x = 5);
int main()
{
std::cout << foo();
}
int foo(int x)
{
return x;
}
END
<<-END
<p>What is the output of the following code? Enter <code>DNC</code> if the code does not compile. Enter <code>???</code> if its behaviour is undefined.</p>
#{show_source_editor}
#{if input then show_input else '' end}
#{show_output_field}
END
end
%>
<%=
exercise(Lib::Interpretation) do
self.source = <<-END
#include <iostream>
int foo(int x = 5);
int main()
{
std::cout << foo();
}
int foo(int x = 5)
{
return x;
}
END
self.output = 'DNC'
<<-END
<p>What is the output of the following code? Enter <code>DNC</code> if the code does not compile. Enter <code>???</code> if its behaviour is undefined.</p>
#{show_source_editor}
#{if input then show_input else '' end}
#{show_output_field}
<div data-revealer="Show explanation" class="explanation">
<p>
This code won't compile as the compiler encounters default values for <code>x</code> twice.
Even if these values agree, this is forbidden.
</p>
</div>
END
end
%>
<%=
exercise(Lib::Interpretation) do
self.source = <<-END
#include <iostream>
int foo(int x);
int main()
{
std::cout << foo();
}
int foo(int x = 5)
{
return x;
}
END
self.output = 'DNC'
<<-END
<p>What is the output of the following code? Enter <code>DNC</code> if the code does not compile. Enter <code>???</code> if its behaviour is undefined.</p>
#{show_source_editor}
#{if input then show_input else '' end}
#{show_output_field}
<div data-revealer="Show explanation" class="explanation">
<p>
At the time <code>foo</code> is called, the compiler hasn't encountered a default value for <code>x</code> yet.
</p>
</div>
END
end
%>
<%=
exercise do
extend SourceCodeMixin
<<-END
<p>
Rewrite the class <code>Counter</code> so that it makes use of default parameter values where possible.
</p>
END
end
%>
</div>
</body>
<script>
Quiz.formatQuizzes();
SourceEditor.initialize();
Revealer.initialize();
</script>
</html>