-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (82 loc) · 2.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
<hr>
<h2>computer language</h2>
<br>
<ol type="A">
<li>C</li>
<li>CPP Programming</li>
<li>Java</li>
<li>python</li>
</ol>
<br>
<ol type="i">
<h3>c language</h3>
<li>operators</li>
<li>strings</li>
<li>keywords</li>
</ol>
<dl>
<dt>operators</dt>
<dd>C operators are one of the features in C which has symbols that can be used to perform mathematical, relational, bitwise, conditional, or logical manipulations. </dd>
</dl>
<dt>strings</dt>
<dd>A String in C programming is a sequence of characters terminated with a null character '\0'.</dd>
</dl>
<dt>keywords</dt>
<dd>Keywords in C refer to a set of reserved words with predefined meanings that are used to write programs in the C programming language. </dd>
</dl>
<ol type="i">
<h4>CPP Programming</h4>
<li>char</li>
<li>compl</li>
<li>const</li>
</ol>
<dl>
<dt>char</dt>
<dd>A data type that can store a single character.</dd>
</dl>
<dt>compl</dt>
<dd>An alternative way to write the ~ bitwise operator.</dd>
</dl>
<dt>const</dt>
<dd> Defines a variable or parameter as a constant or specifies that a class method does not modify attributes of the class.</dd>
</dl>
<ol type="i">
<h4>Java Programming</h4>
<li>Boolean</li>
<li>byte</li>
<li>float</li>
</ol>
<dl>
<dt>Boolean</dt>
<dd>A Boolean data type can only have two values: true or false. </dd>
</dl>
<dt>byte</dt>
<dd>A byte in Java is 8 bits. It is a primitive data type, meaning it comes packaged with Java.</dd>
</dl>
<dt>float</dt>
<dd>A float data type in Java stores a decimal value with 6-7 total digits of precision. </dd>
</dl>
<ol type="i">
<h3>python language</h3>
<li>Tuple</li>
<li>Floating-point</li>
<li>Dictionary data type</li>
</ol>
<dl>
<dt>Tuple</dt>
<dd>Tuples are ordered collections of objects similar to lists.</dd>
</dl>
<dt>Floating-point </dt>
<dd>Floating point number can be represented as “1.0”, and integer can be represented as “1”.</dd>
</dl>
<dt>Dictionary data type</dt>
<dd>The dictionary data type in Python is used to represent a collection of key-value pairs.</dd>
</dl>
</body>
</html>