-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
114 lines (98 loc) · 2.47 KB
/
index.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!-- <!DOCTYPE html>
<html>
<head>
<title>C Programming Language Output this code Quizzes 1</title>
<link rel="stylesheet" type="text/css" href="./css/style.css" />
<script src="http://www.fastlearning.in/controller/js/jquery-1.9.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('label').click(function() {
$('label').removeClass('worngans');
$(this).addClass('worngans');
});
});
</script>
</head>
<body >
<div class="scp-quizzes-main">
<div class="scp-quizzes-data">
<h3>1. What is the output of the below c code?</h3>
<pre>#include<stdio.h>
main()
{
int x = 5;
if(x=5)
{
if(x=5) printf("Fast");
}
printf("learning");
}</pre>
<br/>
<input type="radio" id="Fastlearning" name="question1">
<label for="Fastlearning">1. Fastlearning</label><br/>
<input type="radio" name="question1">
<label>2. learning</label><br/>
<input type="radio" name="question1">
<label>3. learningFast</label> <br/>
<input type="radio" name="question1">
<label>4. Fast</label>
</div>
<div class="scp-quizzes-data">
<h3>2. How would you insert pre-written code into a current program ?</h3>
<pre>#include<stdio.h>
main()
{
int x = 5;
if(x=5)
{
if(x=5) printf("Fast");
}
printf("learning");
}</pre>
<br/>
<input type="radio" name="question2">
<label>1. #read<file></label><br/>
<input type="radio" name="question2">
<label>2. #get <file></label><br/>
<input type="radio" name="question2" id="inculdefile">
<label for="inculdefile">3. #include <file></label> <br/>
<input type="radio" name="question2">
<label>4. #pre <file></label>
</div>
</div> -->
<!-- </body></html> -->
<head>
<style>
#one {
width: 200px;
height: 400px;
border: 1px solid black;
margin-right: 20px;
float: left;
}
#two {
width: 200px;
height: 200px;
border: 1px solid black;
float: left;
}
#three{
float:left;
width: 200px;
height:100px;
border: 1px solid black;
margin-top:300px;
}
</style>
</head>
<body>
<div id="one">
DIV 1
</div>
<div id="two">
DIV 2
</div>
<div id="three">
DIV 3
</div>
</body>