<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[ARRAY for note pad ++ PLEASE HELP!!]]></title><description><![CDATA[<p dir="auto">Hello just hoping to be able to get some help on this  really need it</p>
<p dir="auto">ARRAYS/DOM</p>
<ol>
<li>Write an JS application that reads numbers separated by space(s) for input and for output displays<br />
the smallest, largest, and average values based on the button pressed. Make sure to also add sort<br />
functionality. See sample below:</li>
<li>Write a JS application that reads names separated by space(s) and for output lists the names with<br />
the first letter of every name converted to uppercase and the rest to lowercase. Make sure to also sort<br />
the outputted list. NOTE: The spacing between names should only be 1 space. See sample below:</li>
<li>Write a JS application that displays the lists of grades in their corresponding letter grade<br />
textbox. Each grade list should also be sorted. See sample below:</li>
<li>Create the following form that calculates the increment value only using DHTML(DOM). See</li>
</ol>
<p dir="auto">I was able to start but i cant seem to get it this is FILE #1 for the first question.<br />
&lt;!DOCTYPE&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;EXAM01_01&lt;/title&gt;<br />
&lt;style type=“text/css”&gt;<br />
form{color:black;background-color:lightgray;border:6px solid black;border-width:4px;width:450px;margin:1px;padding:1px;}<br />
#ans1,#ans2,#ans3,#ans4,#numbers{background-color:white;border:4px solid black;}<br />
input[type=“button”]{color:black;background-color:red;border:4px solid black;}<br />
input[type=“text”]{margin:2px;}<br />
div.title{color:white;background-color:black;float: left; width: 450px; text-align:center;}<br />
&lt;/style&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;form&gt;<br />
&lt;div class=“title”&gt;&lt;label&gt;EXAM01_01&lt;/label&gt;&lt;/div&gt;<br />
&lt;p style=“clear:both;” /&gt;<br />
&lt;div style=“float:left;width:150px;”&gt;&lt;label&gt;Enter Numbers:&lt;/label&gt;&lt;/div&gt;&lt;div style=“float:left;”&gt;&lt;input type=“text” id=“numbers” /&gt;&lt;/div&gt;<br />
&lt;p style=“clear:both;” /&gt;<br />
&lt;div style=“float:left;width:150px;”&gt;&lt;label&gt;Sorted List:&lt;/label&gt;&lt;/div&gt;&lt;div style=“float:left;”&gt;&lt;input type=“text” id=“ans4” /&gt;&lt;/div&gt;<br />
&lt;p style=“clear:both;” /&gt;<br />
&lt;div style=“float:left;width:150px;”&gt;&lt;label&gt;Lowest:&lt;/label&gt;&lt;/div&gt;&lt;div style=“float:left;”&gt;&lt;input type=“text” id=“ans1” /&gt;&lt;/div&gt;<br />
&lt;p style=“clear:both;” /&gt;<br />
&lt;div style=“float:left;width:150px;”&gt;&lt;label&gt;Highest:&lt;/label&gt;&lt;/div&gt;&lt;div style=“float:left;”&gt;&lt;input type=“text” id=“ans2” /&gt;&lt;/div&gt;<br />
&lt;p style=“clear:both;” /&gt;<br />
&lt;div style=“float:left;width:150px;”&gt;&lt;label&gt;Average:&lt;/label&gt;&lt;/div&gt;&lt;div style=“float:left;”&gt;&lt;input type=“text” id=“ans3”  /&gt;&lt;/div&gt;<br />
&lt;p style=“clear:both;” /&gt;<br />
&lt;div style=“text-align:center;”&gt;<br />
&lt;input type=“button” value=“Lowest”  /&gt;<br />
&lt;input type=“button” value=“Highest” /&gt;<br />
&lt;input type=“button” value=“Average” /&gt;<br />
&lt;input type=“button” value=“Sort” 	 /&gt;<br />
&lt;input type=“button” value=“Clear” 	 /&gt;<br />
&lt;/div&gt;<br />
&lt;/form&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p dir="auto">this is FILE #2 for the second question.<br />
&lt;!DOCTYPE&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;EXAM01_02&lt;/title&gt;<br />
&lt;style type=“text/css”&gt;<br />
form{color:black;background-color:lightgray;border:6px solid black;border-width:4px;width:450px;margin:1px;padding:1px;}<br />
#ans1,#ans2,#ans3,#names{background-color:white;border:4px solid black;}<br />
input[type=“button”]{color:black;background-color:red;border:4px solid black;}<br />
input[type=“text”]{margin:2px;}<br />
div.title{color:white;background-color:black;float: left; width: 450px; text-align:center;}<br />
&lt;/style&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;form&gt;<br />
&lt;div class=“title”&gt;&lt;label&gt;EXAM01_02&lt;/label&gt;&lt;/div&gt;<br />
&lt;p style=“clear:both;” /&gt;<br />
&lt;div style=“float:left;width:150px;”&gt;&lt;label&gt;Enter Name List:&lt;/label&gt;&lt;/div&gt;&lt;div style=“float:left;”&gt;&lt;input type=“text” id=“names” /&gt;&lt;/div&gt;<br />
&lt;p style=“clear:both;” /&gt;<br />
&lt;div style=“float:left;width:150px;”&gt;&lt;label&gt;Answer:&lt;/label&gt;&lt;/div&gt;&lt;div style=“float:left;”&gt;&lt;input type=“text” id=“ans1” /&gt;&lt;/div&gt;<br />
&lt;p style=“clear:both;” /&gt;<br />
&lt;div style=“text-align:center;”&gt;<br />
&lt;input type=“button” value=“Enter” /&gt;<br />
&lt;input type=“button” value=“Clear” 	 /&gt;<br />
&lt;/div&gt;<br />
&lt;/form&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p dir="auto">this is FILE #3 for the third question.<br />
&lt;!DOCTYPE&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;EXAM01_03&lt;/title&gt;<br />
&lt;style type=“text/css”&gt;<br />
form{color:black;background-color:lightgray;border:6px solid black;border-width:4px;width:450px;margin:1px;padding:1px;}<br />
#ans1,#ans2,#ans3,#ans4,#ans5,#numbers{background-color:white;border:4px solid black;}<br />
input[type=“button”]{color:black;background-color:red;border:4px solid black;}<br />
input[type=“text”]{margin:2px;}<br />
div.title{color:white;background-color:black;float: left; width: 450px; text-align:center;}<br />
&lt;/style&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;form&gt;<br />
&lt;div class=“title”&gt;&lt;label&gt;EXAM01_03&lt;/label&gt;&lt;/div&gt;<br />
&lt;p style=“clear:both;” /&gt;<br />
&lt;div style=“float:left;width:150px;”&gt;&lt;label&gt;Enter Grade List:&lt;/label&gt;&lt;/div&gt;&lt;div style=“float:left;”&gt;&lt;input type=“text” id=“numbers” /&gt;&lt;/div&gt;<br />
&lt;p style=“clear:both;” /&gt;<br />
&lt;div style=“float:left;width:150px;”&gt;&lt;label&gt;A:&lt;/label&gt;&lt;/div&gt;&lt;div style=“float:left;”&gt;&lt;input type=“text” id=“ans1” /&gt;&lt;/div&gt;<br />
&lt;p style=“clear:both;” /&gt;<br />
&lt;div style=“float:left;width:150px;”&gt;&lt;label&gt;B:&lt;/label&gt;&lt;/div&gt;&lt;div style=“float:left;”&gt;&lt;input type=“text” id=“ans2” /&gt;&lt;/div&gt;<br />
&lt;p style=“clear:both;” /&gt;<br />
&lt;div style=“float:left;width:150px;”&gt;&lt;label&gt;C:&lt;/label&gt;&lt;/div&gt;&lt;div style=“float:left;”&gt;&lt;input type=“text” id=“ans3” /&gt;&lt;/div&gt;<br />
&lt;p style=“clear:both;” /&gt;<br />
&lt;div style=“float:left;width:150px;”&gt;&lt;label&gt;D:&lt;/label&gt;&lt;/div&gt;&lt;div style=“float:left;”&gt;&lt;input type=“text” id=“ans4” /&gt;&lt;/div&gt;<br />
&lt;p style=“clear:both;” /&gt;<br />
&lt;div style=“float:left;width:150px;”&gt;&lt;label&gt;F:&lt;/label&gt;&lt;/div&gt;&lt;div style=“float:left;”&gt;&lt;input type=“text” id=“ans5” /&gt;&lt;/div&gt;<br />
&lt;p style=“clear:both;” /&gt;<br />
&lt;div style=“text-align:center;”&gt;<br />
&lt;input type=“button” value=“Enter”  /&gt;<br />
&lt;input type=“button” value=“Clear” 	 /&gt;<br />
&lt;/div&gt;<br />
&lt;/form&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p dir="auto">this is FILE #4 for the fourth question.<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;script&gt;<br />
function DOM()<br />
{<br />
var form=document.createElement(“FORM”);<br />
form.setAttribute(“style”,“width:400px;background:purple;color:white”);<br />
var label0=document.createElement(“label”);<br />
label0.setAttribute(“style”,“display:inline-block;width:400px;text-align:center;background:black”);<br />
var textTitle=document.createTextNode(“INC PROBLEM”);<br />
label0.appendChild(textTitle);<br />
label1=document.createElement(“label”);<br />
text1=document.createTextNode(“Enter Value:”);<br />
textbox1=document.createElement(“input”);<br />
textbox1.setAttribute(“type”,“text”);<br />
label1.appendChild(text1);	<br />
form.appendChild(label0);<br />
form.appendChild(label1);<br />
form.appendChild(textbox1);<br />
document.body.appendChild(form);</p>
<p dir="auto">}<br />
&lt;/script&gt;<br />
&lt;title&gt;My Title&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body onload=“DOM();”&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p dir="auto">PLEASE HELP ME!!!</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/18273/array-for-note-pad-please-help</link><generator>RSS for Node</generator><lastBuildDate>Sun, 14 Jun 2026 10:39:01 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/18273.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 19 Sep 2019 14:27:50 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to ARRAY for note pad ++ PLEASE HELP!! on Thu, 19 Sep 2019 15:21:51 GMT]]></title><description><![CDATA[<p dir="auto">lol im willing you to give u my email??? u cant help me out at all??? ill pay you too</p>
]]></description><link>https://community.notepad-plus-plus.org/post/47244</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/47244</guid><dc:creator><![CDATA[T- BONE TUBE]]></dc:creator><pubDate>Thu, 19 Sep 2019 15:21:51 GMT</pubDate></item><item><title><![CDATA[Reply to ARRAY for note pad ++ PLEASE HELP!! on Thu, 19 Sep 2019 14:59:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/t-bone-tube" aria-label="Profile: T-BONE-TUBE">@<bdi>T-BONE-TUBE</bdi></a></p>
<blockquote>
<p dir="auto">exchange emails</p>
</blockquote>
<p dir="auto">Not a chance in hell.  :)</p>
]]></description><link>https://community.notepad-plus-plus.org/post/47241</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/47241</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Thu, 19 Sep 2019 14:59:56 GMT</pubDate></item><item><title><![CDATA[Reply to ARRAY for note pad ++ PLEASE HELP!! on Thu, 19 Sep 2019 14:59:13 GMT]]></title><description><![CDATA[<p dir="auto">Would you be able to help me along the way?? really could use help. Think we can exchange emails?? to exchange info???</p>
]]></description><link>https://community.notepad-plus-plus.org/post/47240</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/47240</guid><dc:creator><![CDATA[T- BONE TUBE]]></dc:creator><pubDate>Thu, 19 Sep 2019 14:59:13 GMT</pubDate></item><item><title><![CDATA[Reply to ARRAY for note pad ++ PLEASE HELP!! on Thu, 19 Sep 2019 14:49:46 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/t-bone-tube" aria-label="Profile: T-BONE-TUBE">@<bdi>T-BONE-TUBE</bdi></a></p>
<p dir="auto">Dude, you are in luck.  What you are looking for is <a href="https://community.notepad-plus-plus.org/topic/15958/faq-desk-you-ve-asked-your-question-in-the-wrong-place">here</a>.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/47238</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/47238</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Thu, 19 Sep 2019 14:49:46 GMT</pubDate></item></channel></rss>