-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
146 lines (126 loc) · 4.89 KB
/
index.html
File metadata and controls
146 lines (126 loc) · 4.89 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Group 6</title>
<link rel="stylesheet" type="text/css" href="./style.css">
</head>
<body>
<!-- lOGO -->
<img class="logo-img left" src="./img/logo kiit.jpg" alt="KIIT Logo">
<img class="logo-img right" src="./img/logo kiit.jpg" alt="KIIT Logo">
<!-- Navigation Bar -->
<nav class="zone red sticky">
<ul class="main-nav">
<li><a href="https://kiit.ac.in/">About</a></li>
<li><a href="./connection files/Our Team/Our Team.html">Our Teams</a></li>
<li><a href="./connection files/Refrences/Refrences.html">Contributions</a></li>
<li class="push"><a href="#Content">Contents</a></li>
</ul>
</nav>
<!-- Cover -->
<div class="zone container yellow">
<h3>GROUP 6</h3>
<div class="member">
<h4>Things we will be Discussing:</h4>
<!-- 1st Topic -->
<ul class="main-topic topic1 zone blue">
<div class="text">
<li class="heading"><strong>Array 1D and 2D</strong></li>
<li>Array is a collection of similar type of elements that have contiguous memory location.</li>
<li>Java array is an object the contains elements of similar data type.It is a data structure where we store
similar
elements. We can store only fixed set of elements in a java array.</li>
</div>
</ul>
<!-- 2rd Topic -->
<ul class="main-topic topic3 zone blue">
<div class="text">
<li class="heading"><strong>Command Line</strong></li>
<li>Command line arguments are stored in the string array which is the parameter of the main method.</li>
<code><pre style="width: 350px;">public static void main (String args[])</pre></code>
<li style="list-style: none;font-size: large;">Example - compile.java</li>
</div>
</ul>
<!-- 3nd Topic -->
<ul class="main-topic topic2 zone blue">
<div class="text">
<li class="heading"><strong>Taking Input from User</strong></li>
<li>Java <strong> Scanner class</strong> allows the user to take input from the console. It belongs to
<strong>java.util</strong> package. It is used to read the input of primitive types like int, double,
long,
short, float, and byte. It is the easiest way to read
input in Java program.
</li>
<p>Syntax:
<code><pre style="width: 300px;">Scanner sc=new Scanner(System.in);</pre></code>
</p>
</div>
</ul>
<!-- 4th Topic -->
<ul class="main-topic topic4 zone blue">
<div class="text">
<li class="heading"><strong>Java Reader Class</strong></li>
<li>Java Reader is an abstract class for reading character streams. The only methods that a subclass must
implement are
read(char[], int, int) and close(). Most subclasses, however, will override some of the methods to provide
higher
efficiency, additional functionality, or both.</li>
</div>
</ul>
<!-- 5th Topic -->
<ul class="main-topic topic5 zone blue">
<div class="text">
<li class="heading"><strong>Buffer Reader Class</strong></li>
<li>Java BufferedReader class is used to read the text from a character-based input stream. It can be used
to
read data line
by line by readLine() method. It makes the performance fast. It inherits Reader class.</li>
</div>
</ul>
</div>
</div>
<!-- Content -->
<div id="Content" class="zone green grid-wrapper">
<!-- 1st Box -->
<a id="main" href="./connection files/Box 1/connector 1.html" target="_self">
<div class="box zone">
<p class="siteContent">Array 1D and 2D</p>
<img src="./img/array.jpg">
</div>
</a>
<!-- 2nd Box -->
<a id="main" href="./connection files/Box 2/connector 2.html" target="_self">
<div class="box zone">
<p class="siteContent">Command Line</p>
<img src="./img/command line.gif">
</div>
</a>
<!-- 3rd Box -->
<a id="main" href="./connection files/Box 3/connector 3.html" target="_self">
<div class="box zone">
<p class="siteContent">Scanner Class</p>
<img src="./img/Scanner-Class.jpg">
</div>
</a>
<!-- 5th Box -->
<a id="main" href="./connection files/Box 5/connector 5.html" target="_self">
<div class="box zone">
<p class="siteContent">Java Reader Class</p>
<img src="./img/reader-class.png">
</div>
</a>
<!-- 4th Box -->
<a id="main" href="./connection files/Box 4/connector 4.html" target="_self">
<div class="box zone">
<p class="siteContent">Buffer Reader Class</p>
<img src="./img/Java-BufferedReader.jpg">
</div>
</a>
</div>
<!-- footer -->
<footer class="zone blue">
made by members of Group 6
</footer>
</div>
</body>
</html>