SlideShare a Scribd company logo
1 of 27
Download to read offline
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics;
import javax.swing.JFrame;
import javax.swing.JPanel;
/
* Plots trend data over time.
* @author Rick Halterman
* @date 2021-03-10
*/
public class Plotter {
@SuppressWarnings("serial")
private static class PlotPanel extends JPanel {
private Dimension dimension;
private double[] dataSet;
public PlotPanel(double[] data, int width, int height) {
dataSet = data;
dimension = new Dimension(width, height);
setBackground(Color.WHITE);
}
@Override
public Dimension getPreferredSize() {
return dimension;
}
private static double minimum(double[] data) {
double min = Double.MAX_VALUE;
for (double elem : data) {
if (elem < min) {
min = elem;
}
}
return min;
}
private static double maximum(double[] data) {
double max = Double.MIN_VALUE;
for (double elem : data) {
if (elem > max) {
max = elem;
}
}
return max;
}
@Override
public void paintComponent(Graphics g) {
super.paintComponent(g);
int height = getHeight();
int width = getWidth();
// Compute the vertical size of the data
double min = minimum(dataSet);
double max = maximum(dataSet);
double dataHeight = max - min; //range(dataSet);
double widthScale = (double) width/(dataSet.length - 1);
double heightScale = height/dataHeight;
// Draw baseline at y = 0
g.setColor(Color.LIGHT_GRAY);
g.drawLine(0, (int)(height + min*heightScale),
width, (int)(height + min*heightScale));
// Plot data
g.setColor(Color.RED);
for (int i = 1; i < dataSet.length; i++) {
int x1 = (int) Math.round((i - 1) * widthScale),
y1 = height - (int) Math.round((dataSet[i - 1] - min) * heightScale),
x2 = (int) Math.round(i * widthScale),
y2 = height - (int) Math.round((dataSet[i] - min) * heightScale);
if (y1 < 1) {
y1 = 1;
}
if (y2 < 1) {
y2 = 1;
}
g.drawLine(x1, y1, x2, y2);
// Original line drawing:
// g.drawLine((int) Math.round((i - 1) * widthScale),
// height - (int) Math.round((dataSet[i - 1] - min) * heightScale),
// (int) Math.round(i * widthScale),
// height - (int) Math.round((dataSet[i] - min) * heightScale));
}
}
}
/
* Plots the data stored in an array in a graphical window
* with a given size. The plot fills the window horizontally
* and vertically.
* @param data the data set to plot
* @param left the x position of the plot window's left-top corner
* @param top the y position of the plot window's left-top corner
* @param width the width of the graphical window, in pixels
* @param width the width of the graphical window, in pixels
* @param height the height of the graphical window, in pixels
*/
public static void plot(double[] data, int left, int top, int width, int height) {
JFrame window = new JFrame("Plot");
JPanel panel = new PlotPanel(data, width, height);
window.add(panel);
window.pack();
window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
window.setLocation(left, top);
window.setVisible(true);
}
/
* Plots the data stored in an array in a graphical window
* with a given size. The plot fills the window horizontally
* and vertically.
* @param data the data set to plot
* @param width the width of the graphical window, in pixels
* @param height the height of the graphical window, in pixels
*/
public static void plot(double[] data, int width, int height) {
plot(data, 50, 50, width, height);
}
/
* Plots the data stored in an array in a graphical window
* with a given size. The plot fills the window horizontally
* and vertically. This overloaded method accepts an array of integers.
* @param data the data set to plot
* @param width the width of the graphical window, in pixels
* @param height the height of the graphical window, in pixels
*/
public static void plot(int[] data, int width, int height) {
plot(data, 100, 50, width, height);
}
/**
* Plots the data stored in an array in a graphical window
* with a given size. The plot fills the window horizontally
* and vertically. This overloaded method accepts an array of integers.
* @param data the data set to plot
* @param left the x position of the plot window's left-top corner
* @param top the y position of the plot window's left-top corner
* @param width the width of the graphical window, in pixels
* @param height the height of the graphical window, in pixels
*/
public static void plot(int[] data, int left, int top, int width, int height) {
// Works, but not as efficient
//plot(Arrays.stream(data).asDoubleStream().toArray(), width, height);
// More efficient for this application
double[] doubleData = new double[data.length];
for (int i = 0; i < doubleData.length; i++) {
doubleData[i] = data[i];
}
plot(doubleData, left, top, width, height);
}
}
754
1
1
0
1
0
0
0
0
1
1
3
3
0
0
0
1
0
0
0
0
1
1
0
0
0
2
5
3
1
5
6
0
4
4
8
5
4
9
18
36
64
67
78
121
160
211
415
496
514
748
914
1242
2182
2335
3213
4909
6154
7479
9218
10824
10773
11351
14002
18736
20232
20635
26334
15584
23542
28347
30046
31838
32491
27043
28694
29394
34185
34861
32703
32206
27088
25107
25162
25185
31782
30561
27601
27027
26157
25383
31055
33079
35012
33375
26327
24498
23378
27055
31585
31957
28398
26886
21411
22873
25347
29507
28107
25972
21923
19391
24198
17398
34540
27212
25447
20058
22906
21700
24058
25838
25847
21233
21740
19451
16755
19813
24200
23805
23974
21420
17059
20770
21044
20672
24625
23790
17841
17964
18532
22312
23001
28461
26297
20680
20541
24736
25893
28690
33209
33388
27370
28581
37977
37314
47078
46530
43558
37603
38726
46487
59534
55502
60350
49597
40375
50936
55989
65170
62349
68392
67905
59764
56150
64902
72298
70025
76875
67579
60162
58594
63464
72530
73668
73417
61579
58476
53656
58984
64912
66758
68832
56422
51448
45430
52010
56149
54838
62075
51865
46475
44253
59089
55221
52143
56062
51825
41884
41753
41780
47081
46919
47698
41849
37071
36188
40823
47322
47161
46873
41125
36656
39245
38991
42527
45423
51317
41557
33726
24976
28632
35387
38928
44413
40248
32926
34688
37170
44927
45460
48031
42619
34262
41698
50060
42817
46350
50161
42943
35328
39202
38967
46189
47560
51279
47855
35624
41703
41961
54468
55685
59183
53959
45000
49787
50741
58153
63259
69566
54600
49028
62100
59086
70307
75069
83089
76393
66156
69848
76043
85183
91744
98027
93339
74391
87289
98886
115768
123426
134697
129545
111754
125143
147734
154355
163518
178070
164209
140164
152084
168136
171907
190853
194608
174152
151402
160716
174904
195900
144915
165196
144298
141359
153068
193051
211541
217171
226035
206276
177617
186240
226497
222042
209433
247788
216946
181033
197535
200884
242138
247615
237793
201873
187787
183935
199504
228015
202721
159383
149728
154716
179120
209472
238505
230403
229890
225137
205106
175452
243873
259936
270319
294016
255598
223798
204852
218832
228976
224293
239702
213642
183180
151030
150733
189233
189433
190457
164830
144018
134129
147447
159753
157164
163905
137684
112050
128750
122302
109643
125140
125553
108028
92145
82214
91803
99420
99333
97892
84781
66795
57934
57603
64364
68719
73438
66173
55780
56219
70827
72878
72016
73768
67928
51872
51149
54923
65756
65661
64225
57556
43529
43144
53268
62209
60489
63860
52530
47508
43461
51818
62224
62846
62356
58484
45300
48577
58072
68360
66440
75367
63396
53202
57998
61948
71311
74617
71008
63849
45101
56989
64207
76650
77047
77316
68191
54013
62620
71754
72486
73334
72531
78366
49769
35756
58678
64228
62927
63449
52246
41087
39821
50676
55412
56804
55329
48288
36837
33325
43040
45451
43268
44738
37087
27382
24664
33592
35924
40985
35598
29781
21137
19547
27975
27932
28083
28493
21992
15744
16207
23784
23719
22557
24481
16180
12081
9068
9023
16286
18553
18646
14833
11002
10019
14564
19143
16106
14068
12489
8624
8317
12874
13243
13281
12040
12447
8957
8721
13510
13890
15571
15134
13211
10547
10668
15750
11645
18732
16885
13141
10415
9252
20271
22820
28108
27683
20688
16815
29334
34985
38511
40703
42462
31690
28576
45557
51113
61699
73092
68622
53612
43603
71577
86272
89741
99612
105198
81987
63420
103652
110697
124475
129179
126275
120601
97691
93755
136732
144745
152040
146841
139894
111231
109854
150922
168473
175202
167314
143662
127652
116883
163636
178009
187178
183032
152227
118880
133879
176911
199234
182513
183300
142977
125029
109499
118808
170039
185220
170684
154056
116880
112644
162293
163098
167502
157569
123924
97684
92751
134777
132174
135785
132893
96691
77701
102593
116396
116085
122553
120424
82179
68948
87008
104558
107499
112363
107778
70628
60207
74865
90507
97068
96788
91112
62767
49745
70048
80926
76124
87551
81299
31352
23900
93381
102322
83740
82002
87350
29823
20849
119165
73654
79234
88534
89198
29449
26378
127044
82889
90600
71611
123179
48975
28988
142258
96996
106100
113566
113873
40527
34571
153678
100860
105462
71980
80684
50292
53789
98269
120741
132774
143609
151146
62279
52173
191213
126432
130347
138536
134416
60227
55237
193158
125365
146995
161817
161354
84068
100836
273674
209694
243263
279787
234332
119526
207664
490754
402792
488003
598076
454967
279655
400477
955711
733824
713532
797097
849294
413554
458210
1335816
817343
861564
896923
842629
435012
391594
970157
917022
779617
769213
771408
299594
291534
1060020
501515
567610
569207
520452
193970
137651
619937
288621
309443
341127
275480
88672
87869
320700
192196
201974
166542
173369
52076
38761
203533 Also known as moving average, a rolling average smooths out minor short-term
fluctuations in a data set (see hhttps:/len.wikipedia.org/wiki/Moving. average for more
information). Your task is to write a Java program that creates an array containing data from a
text file. Your program then will create a new array containing the five-element rolling average
of the data in the first array. Use a JFilechooser object as demonstrated in class to allow a user to
select the file to load. The text file contains a sequence of integer values. The first integer
indicates the number of integers that follow. Your program should create the array with a size
equal to the first value in the file and then populate the array with the remaining values. Include
the file plotter. java in your project with the source file you write. It defines a class named P
lotter a that provides a method named p lot. The call Plotter.plot(data,800,300) creates and
displays a window 800 wide and 300 high that plots the data in the integer array named data.
Given the file new-cases-US.text that contains the number of new COVID-19 cases each day in
the United States from January 23, 2020 to February 14, 2022 (source:
https:l/covid.cdc.gov/covid-data-tracker-Centers for Disease Control). After plotting the raw
data, your program should create a new array from the existing array. The new array should
contain the five-element rolling average of the first array. The new array will contain four fewer
elements than the original array. Suppose the original array contains n elements. The following
table shows how to compute the five-element rolling average in the new array:
rawData We wish to compute the five-element rolling average. The following array named
ro11ingAvg will contain the rolling average: rollingAvg Note that the new ro11ingAvg array
contains four fewer elements than the original rawData array. We need to iterate over each
position with the ro11ingAvg array, assigning the proper value to each element. This requires
four iterations for this example: Position 0 in ro11ingAvg must be assigned 16 since the
arithmetic mean of 34,10,6,12, and 17 is 15.8 , and this rounds to 16 . Note that you will need to
round properly, not just truncate the answer. rawdata rollingAvg
Position 1 in ro11ingAvg is assigned 12 by a similar process: - Position 2 in ro17ingAvg 12
assigned 11: Position 3 in ro1lingAvg is assigned 11: rawData begin{tabular}{|c|c|c|c|c|c|c|c|}
hline 34 & 10 & 6 & 12 & 17 & 13 & 8 & 4  hline 0 & 1 & 2 & 3 & 4 & 5 & 6 & 7  hline
end{tabular} rollingAvg begin{tabular}{|c|c|c|c|} hline 16 & 12 & 11 & 11  hline 0 & 1 & 2
& 3  hline end{tabular}
Note that the curve in this new plot has the same overall shape of the original, but it is smoother
than the curve in the original plot. Your program should work properly with any supplied data
file that contains at least six data points.

More Related Content

Similar to import java.awt.Color; import java.awt.Dimension; import.pdf

XebiCon'17 : Faites chauffer les neurones de votre Smartphone avec du Deep Le...
XebiCon'17 : Faites chauffer les neurones de votre Smartphone avec du Deep Le...XebiCon'17 : Faites chauffer les neurones de votre Smartphone avec du Deep Le...
XebiCon'17 : Faites chauffer les neurones de votre Smartphone avec du Deep Le...Publicis Sapient Engineering
 
Below are questions that use the following image class- import assert.pdf
Below are questions that use the following image class-  import assert.pdfBelow are questions that use the following image class-  import assert.pdf
Below are questions that use the following image class- import assert.pdfrdzire2014
 
The code below doesn�t work as it�s supposed to. Fix the functi.pdf
 The code below doesn�t work as it�s supposed to. Fix the functi.pdf The code below doesn�t work as it�s supposed to. Fix the functi.pdf
The code below doesn�t work as it�s supposed to. Fix the functi.pdfINFO952279
 
Import java.awt.; Import acm.program.; Import acm.graphics.;.pdf
Import java.awt.; Import acm.program.; Import acm.graphics.;.pdfImport java.awt.; Import acm.program.; Import acm.graphics.;.pdf
Import java.awt.; Import acm.program.; Import acm.graphics.;.pdfapexcomputer54
 
#include stdafx.h using namespace std; #include stdlib.h.docx
#include stdafx.h using namespace std; #include stdlib.h.docx#include stdafx.h using namespace std; #include stdlib.h.docx
#include stdafx.h using namespace std; #include stdlib.h.docxajoy21
 
question.(player, entity ,field and base.java codes are given)Stop.pdf
question.(player, entity ,field and base.java codes are given)Stop.pdfquestion.(player, entity ,field and base.java codes are given)Stop.pdf
question.(player, entity ,field and base.java codes are given)Stop.pdfshahidqamar17
 
import java.awt.;import java.awt.event.MouseAdaptor;import java.pdf
import java.awt.;import java.awt.event.MouseAdaptor;import java.pdfimport java.awt.;import java.awt.event.MouseAdaptor;import java.pdf
import java.awt.;import java.awt.event.MouseAdaptor;import java.pdfanyacarpets
 
operating system linux,ubuntu,Mac Geometri.pdf
operating system linux,ubuntu,Mac Geometri.pdfoperating system linux,ubuntu,Mac Geometri.pdf
operating system linux,ubuntu,Mac Geometri.pdfaquadreammail
 
Part 1 - Written AnswersDownload the GridWriter.zip file and exami.pdf
Part 1 - Written AnswersDownload the GridWriter.zip file and exami.pdfPart 1 - Written AnswersDownload the GridWriter.zip file and exami.pdf
Part 1 - Written AnswersDownload the GridWriter.zip file and exami.pdfkamdinrossihoungma74
 
g++ -o simpleVector.exe simpleVector.cpp #include stdio.h #i.pdf
g++ -o simpleVector.exe simpleVector.cpp #include stdio.h #i.pdfg++ -o simpleVector.exe simpleVector.cpp #include stdio.h #i.pdf
g++ -o simpleVector.exe simpleVector.cpp #include stdio.h #i.pdfarakalamkah11
 
Create a Java Applet that uses two integer (int) variables x and y to.docx
Create a Java Applet that uses two integer (int) variables x and y to.docxCreate a Java Applet that uses two integer (int) variables x and y to.docx
Create a Java Applet that uses two integer (int) variables x and y to.docxmrichard5
 
Laporan ai modul 2-if b 2014-14102055-deprilana ego prakasa
Laporan ai modul 2-if b 2014-14102055-deprilana ego prakasaLaporan ai modul 2-if b 2014-14102055-deprilana ego prakasa
Laporan ai modul 2-if b 2014-14102055-deprilana ego prakasaDeprilana Ego Prakasa
 
ReversePoem.java ---------------------------------- public cl.pdf
ReversePoem.java ---------------------------------- public cl.pdfReversePoem.java ---------------------------------- public cl.pdf
ReversePoem.java ---------------------------------- public cl.pdfravikapoorindia
 
SaveI need help with this maze gui that I wrote in java, I am tryi.pdf
SaveI need help with this maze gui that I wrote in java, I am tryi.pdfSaveI need help with this maze gui that I wrote in java, I am tryi.pdf
SaveI need help with this maze gui that I wrote in java, I am tryi.pdfarihantstoneart
 

Similar to import java.awt.Color; import java.awt.Dimension; import.pdf (20)

XebiCon'17 : Faites chauffer les neurones de votre Smartphone avec du Deep Le...
XebiCon'17 : Faites chauffer les neurones de votre Smartphone avec du Deep Le...XebiCon'17 : Faites chauffer les neurones de votre Smartphone avec du Deep Le...
XebiCon'17 : Faites chauffer les neurones de votre Smartphone avec du Deep Le...
 
Below are questions that use the following image class- import assert.pdf
Below are questions that use the following image class-  import assert.pdfBelow are questions that use the following image class-  import assert.pdf
Below are questions that use the following image class- import assert.pdf
 
The code below doesn�t work as it�s supposed to. Fix the functi.pdf
 The code below doesn�t work as it�s supposed to. Fix the functi.pdf The code below doesn�t work as it�s supposed to. Fix the functi.pdf
The code below doesn�t work as it�s supposed to. Fix the functi.pdf
 
Java oops features
Java oops featuresJava oops features
Java oops features
 
Import java.awt.; Import acm.program.; Import acm.graphics.;.pdf
Import java.awt.; Import acm.program.; Import acm.graphics.;.pdfImport java.awt.; Import acm.program.; Import acm.graphics.;.pdf
Import java.awt.; Import acm.program.; Import acm.graphics.;.pdf
 
#include stdafx.h using namespace std; #include stdlib.h.docx
#include stdafx.h using namespace std; #include stdlib.h.docx#include stdafx.h using namespace std; #include stdlib.h.docx
#include stdafx.h using namespace std; #include stdlib.h.docx
 
question.(player, entity ,field and base.java codes are given)Stop.pdf
question.(player, entity ,field and base.java codes are given)Stop.pdfquestion.(player, entity ,field and base.java codes are given)Stop.pdf
question.(player, entity ,field and base.java codes are given)Stop.pdf
 
Java awt
Java awtJava awt
Java awt
 
import java.awt.;import java.awt.event.MouseAdaptor;import java.pdf
import java.awt.;import java.awt.event.MouseAdaptor;import java.pdfimport java.awt.;import java.awt.event.MouseAdaptor;import java.pdf
import java.awt.;import java.awt.event.MouseAdaptor;import java.pdf
 
operating system linux,ubuntu,Mac Geometri.pdf
operating system linux,ubuntu,Mac Geometri.pdfoperating system linux,ubuntu,Mac Geometri.pdf
operating system linux,ubuntu,Mac Geometri.pdf
 
Part 1 - Written AnswersDownload the GridWriter.zip file and exami.pdf
Part 1 - Written AnswersDownload the GridWriter.zip file and exami.pdfPart 1 - Written AnswersDownload the GridWriter.zip file and exami.pdf
Part 1 - Written AnswersDownload the GridWriter.zip file and exami.pdf
 
g++ -o simpleVector.exe simpleVector.cpp #include stdio.h #i.pdf
g++ -o simpleVector.exe simpleVector.cpp #include stdio.h #i.pdfg++ -o simpleVector.exe simpleVector.cpp #include stdio.h #i.pdf
g++ -o simpleVector.exe simpleVector.cpp #include stdio.h #i.pdf
 
Maps
MapsMaps
Maps
 
2nd section
2nd section2nd section
2nd section
 
Create a Java Applet that uses two integer (int) variables x and y to.docx
Create a Java Applet that uses two integer (int) variables x and y to.docxCreate a Java Applet that uses two integer (int) variables x and y to.docx
Create a Java Applet that uses two integer (int) variables x and y to.docx
 
Laporan ai modul 2-if b 2014-14102055-deprilana ego prakasa
Laporan ai modul 2-if b 2014-14102055-deprilana ego prakasaLaporan ai modul 2-if b 2014-14102055-deprilana ego prakasa
Laporan ai modul 2-if b 2014-14102055-deprilana ego prakasa
 
Applet life cycle
Applet life cycleApplet life cycle
Applet life cycle
 
ReversePoem.java ---------------------------------- public cl.pdf
ReversePoem.java ---------------------------------- public cl.pdfReversePoem.java ---------------------------------- public cl.pdf
ReversePoem.java ---------------------------------- public cl.pdf
 
662305 10
662305 10662305 10
662305 10
 
SaveI need help with this maze gui that I wrote in java, I am tryi.pdf
SaveI need help with this maze gui that I wrote in java, I am tryi.pdfSaveI need help with this maze gui that I wrote in java, I am tryi.pdf
SaveI need help with this maze gui that I wrote in java, I am tryi.pdf
 

More from maheshkumar12354

In a single strand of DNA, the individual nucleotides are covalenty .pdf
In a single strand of DNA, the individual nucleotides are covalenty .pdfIn a single strand of DNA, the individual nucleotides are covalenty .pdf
In a single strand of DNA, the individual nucleotides are covalenty .pdfmaheshkumar12354
 
In a recent survey conducted, a random sample of adults 18 years of .pdf
In a recent survey conducted, a random sample of adults 18 years of .pdfIn a recent survey conducted, a random sample of adults 18 years of .pdf
In a recent survey conducted, a random sample of adults 18 years of .pdfmaheshkumar12354
 
In a recent survey conducted a random sample of adults 18 years of a.pdf
In a recent survey conducted a random sample of adults 18 years of a.pdfIn a recent survey conducted a random sample of adults 18 years of a.pdf
In a recent survey conducted a random sample of adults 18 years of a.pdfmaheshkumar12354
 
In a hypothetical study, a researcher finds that police officers are.pdf
In a hypothetical study, a researcher finds that police officers are.pdfIn a hypothetical study, a researcher finds that police officers are.pdf
In a hypothetical study, a researcher finds that police officers are.pdfmaheshkumar12354
 
In a 1 to 2 page paper, Times New Roman 12, double spaced, APA forma.pdf
In a 1 to 2 page paper, Times New Roman 12, double spaced, APA forma.pdfIn a 1 to 2 page paper, Times New Roman 12, double spaced, APA forma.pdf
In a 1 to 2 page paper, Times New Roman 12, double spaced, APA forma.pdfmaheshkumar12354
 
In 2017, President Donald Trump was considering a major increase in .pdf
In 2017, President Donald Trump was considering a major increase in .pdfIn 2017, President Donald Trump was considering a major increase in .pdf
In 2017, President Donald Trump was considering a major increase in .pdfmaheshkumar12354
 
In 2021, Lee Jones put the final touches on a product she had worked.pdf
In 2021, Lee Jones put the final touches on a product she had worked.pdfIn 2021, Lee Jones put the final touches on a product she had worked.pdf
In 2021, Lee Jones put the final touches on a product she had worked.pdfmaheshkumar12354
 
In 2000 the Vermont state legislature approved a bill authorizing �c.pdf
In 2000 the Vermont state legislature approved a bill authorizing �c.pdfIn 2000 the Vermont state legislature approved a bill authorizing �c.pdf
In 2000 the Vermont state legislature approved a bill authorizing �c.pdfmaheshkumar12354
 
Implement the class Linked List to create a list of integers. You ne.pdf
Implement the class Linked List to create a list of integers. You ne.pdfImplement the class Linked List to create a list of integers. You ne.pdf
Implement the class Linked List to create a list of integers. You ne.pdfmaheshkumar12354
 
Implement a program in C++ a by creating a list ADT using the Object.pdf
Implement a program in C++ a by creating a list ADT using the Object.pdfImplement a program in C++ a by creating a list ADT using the Object.pdf
Implement a program in C++ a by creating a list ADT using the Object.pdfmaheshkumar12354
 
Implement a singly linked list as a functional data structure in Kot.pdf
Implement a singly linked list as a functional data structure in Kot.pdfImplement a singly linked list as a functional data structure in Kot.pdf
Implement a singly linked list as a functional data structure in Kot.pdfmaheshkumar12354
 
Implementation The starter code includes List.java. You should not c.pdf
Implementation The starter code includes List.java. You should not c.pdfImplementation The starter code includes List.java. You should not c.pdf
Implementation The starter code includes List.java. You should not c.pdfmaheshkumar12354
 
Implement two project schedules.BENCHMARKSImplement mechanisms t.pdf
Implement two project schedules.BENCHMARKSImplement mechanisms t.pdfImplement two project schedules.BENCHMARKSImplement mechanisms t.pdf
Implement two project schedules.BENCHMARKSImplement mechanisms t.pdfmaheshkumar12354
 
If you were to write an application program that needs to maintain s.pdf
If you were to write an application program that needs to maintain s.pdfIf you were to write an application program that needs to maintain s.pdf
If you were to write an application program that needs to maintain s.pdfmaheshkumar12354
 
Imagine that you are using a learning management system (such as Bla.pdf
Imagine that you are using a learning management system (such as Bla.pdfImagine that you are using a learning management system (such as Bla.pdf
Imagine that you are using a learning management system (such as Bla.pdfmaheshkumar12354
 
Im trying to run make qemu-nox In a putty terminal but it.pdf
Im trying to run  make qemu-nox  In a putty terminal but it.pdfIm trying to run  make qemu-nox  In a putty terminal but it.pdf
Im trying to run make qemu-nox In a putty terminal but it.pdfmaheshkumar12354
 
Im posting this again because the answer wasnt correct.Please .pdf
Im posting this again because the answer wasnt correct.Please .pdfIm posting this again because the answer wasnt correct.Please .pdf
Im posting this again because the answer wasnt correct.Please .pdfmaheshkumar12354
 
Ignacio enters into a game of chance. A bag of money has twelve $1 b.pdf
Ignacio enters into a game of chance. A bag of money has twelve $1 b.pdfIgnacio enters into a game of chance. A bag of money has twelve $1 b.pdf
Ignacio enters into a game of chance. A bag of money has twelve $1 b.pdfmaheshkumar12354
 
imagine a protein that has been engineered to contain a nuclear loca.pdf
imagine a protein that has been engineered to contain a nuclear loca.pdfimagine a protein that has been engineered to contain a nuclear loca.pdf
imagine a protein that has been engineered to contain a nuclear loca.pdfmaheshkumar12354
 
Im not trying to be rude, but I have had multiple of you experts .pdf
Im not trying to be rude, but I have had multiple of you experts .pdfIm not trying to be rude, but I have had multiple of you experts .pdf
Im not trying to be rude, but I have had multiple of you experts .pdfmaheshkumar12354
 

More from maheshkumar12354 (20)

In a single strand of DNA, the individual nucleotides are covalenty .pdf
In a single strand of DNA, the individual nucleotides are covalenty .pdfIn a single strand of DNA, the individual nucleotides are covalenty .pdf
In a single strand of DNA, the individual nucleotides are covalenty .pdf
 
In a recent survey conducted, a random sample of adults 18 years of .pdf
In a recent survey conducted, a random sample of adults 18 years of .pdfIn a recent survey conducted, a random sample of adults 18 years of .pdf
In a recent survey conducted, a random sample of adults 18 years of .pdf
 
In a recent survey conducted a random sample of adults 18 years of a.pdf
In a recent survey conducted a random sample of adults 18 years of a.pdfIn a recent survey conducted a random sample of adults 18 years of a.pdf
In a recent survey conducted a random sample of adults 18 years of a.pdf
 
In a hypothetical study, a researcher finds that police officers are.pdf
In a hypothetical study, a researcher finds that police officers are.pdfIn a hypothetical study, a researcher finds that police officers are.pdf
In a hypothetical study, a researcher finds that police officers are.pdf
 
In a 1 to 2 page paper, Times New Roman 12, double spaced, APA forma.pdf
In a 1 to 2 page paper, Times New Roman 12, double spaced, APA forma.pdfIn a 1 to 2 page paper, Times New Roman 12, double spaced, APA forma.pdf
In a 1 to 2 page paper, Times New Roman 12, double spaced, APA forma.pdf
 
In 2017, President Donald Trump was considering a major increase in .pdf
In 2017, President Donald Trump was considering a major increase in .pdfIn 2017, President Donald Trump was considering a major increase in .pdf
In 2017, President Donald Trump was considering a major increase in .pdf
 
In 2021, Lee Jones put the final touches on a product she had worked.pdf
In 2021, Lee Jones put the final touches on a product she had worked.pdfIn 2021, Lee Jones put the final touches on a product she had worked.pdf
In 2021, Lee Jones put the final touches on a product she had worked.pdf
 
In 2000 the Vermont state legislature approved a bill authorizing �c.pdf
In 2000 the Vermont state legislature approved a bill authorizing �c.pdfIn 2000 the Vermont state legislature approved a bill authorizing �c.pdf
In 2000 the Vermont state legislature approved a bill authorizing �c.pdf
 
Implement the class Linked List to create a list of integers. You ne.pdf
Implement the class Linked List to create a list of integers. You ne.pdfImplement the class Linked List to create a list of integers. You ne.pdf
Implement the class Linked List to create a list of integers. You ne.pdf
 
Implement a program in C++ a by creating a list ADT using the Object.pdf
Implement a program in C++ a by creating a list ADT using the Object.pdfImplement a program in C++ a by creating a list ADT using the Object.pdf
Implement a program in C++ a by creating a list ADT using the Object.pdf
 
Implement a singly linked list as a functional data structure in Kot.pdf
Implement a singly linked list as a functional data structure in Kot.pdfImplement a singly linked list as a functional data structure in Kot.pdf
Implement a singly linked list as a functional data structure in Kot.pdf
 
Implementation The starter code includes List.java. You should not c.pdf
Implementation The starter code includes List.java. You should not c.pdfImplementation The starter code includes List.java. You should not c.pdf
Implementation The starter code includes List.java. You should not c.pdf
 
Implement two project schedules.BENCHMARKSImplement mechanisms t.pdf
Implement two project schedules.BENCHMARKSImplement mechanisms t.pdfImplement two project schedules.BENCHMARKSImplement mechanisms t.pdf
Implement two project schedules.BENCHMARKSImplement mechanisms t.pdf
 
If you were to write an application program that needs to maintain s.pdf
If you were to write an application program that needs to maintain s.pdfIf you were to write an application program that needs to maintain s.pdf
If you were to write an application program that needs to maintain s.pdf
 
Imagine that you are using a learning management system (such as Bla.pdf
Imagine that you are using a learning management system (such as Bla.pdfImagine that you are using a learning management system (such as Bla.pdf
Imagine that you are using a learning management system (such as Bla.pdf
 
Im trying to run make qemu-nox In a putty terminal but it.pdf
Im trying to run  make qemu-nox  In a putty terminal but it.pdfIm trying to run  make qemu-nox  In a putty terminal but it.pdf
Im trying to run make qemu-nox In a putty terminal but it.pdf
 
Im posting this again because the answer wasnt correct.Please .pdf
Im posting this again because the answer wasnt correct.Please .pdfIm posting this again because the answer wasnt correct.Please .pdf
Im posting this again because the answer wasnt correct.Please .pdf
 
Ignacio enters into a game of chance. A bag of money has twelve $1 b.pdf
Ignacio enters into a game of chance. A bag of money has twelve $1 b.pdfIgnacio enters into a game of chance. A bag of money has twelve $1 b.pdf
Ignacio enters into a game of chance. A bag of money has twelve $1 b.pdf
 
imagine a protein that has been engineered to contain a nuclear loca.pdf
imagine a protein that has been engineered to contain a nuclear loca.pdfimagine a protein that has been engineered to contain a nuclear loca.pdf
imagine a protein that has been engineered to contain a nuclear loca.pdf
 
Im not trying to be rude, but I have had multiple of you experts .pdf
Im not trying to be rude, but I have had multiple of you experts .pdfIm not trying to be rude, but I have had multiple of you experts .pdf
Im not trying to be rude, but I have had multiple of you experts .pdf
 

Recently uploaded

Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersSabitha Banu
 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentInMediaRes1
 
Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...jaredbarbolino94
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfadityarao40181
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfMahmoud M. Sallam
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaVirag Sontakke
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementmkooblal
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfUjwalaBharambe
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...M56BOOKSTORE PRODUCT/SERVICE
 

Recently uploaded (20)

Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginners
 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media Component
 
Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdf
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdf
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of India
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of management
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
 

import java.awt.Color; import java.awt.Dimension; import.pdf