<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Week 2 Assignment 2 of 2 by Dinesh Sthapit</title>
      <link>https://padlet.com/todxs2010/uv22bznlsln4h7v5</link>
      <description>This is a continuation of Week 2 Assignment 2
</description>
      <language>en-us</language>
      <pubDate>2021-08-07 22:45:35 UTC</pubDate>
      <lastBuildDate>2025-06-13 17:24:06 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Step 2:  Executing your Code:</title>
         <author>todxs2010</author>
         <link>https://padlet.com/todxs2010/uv22bznlsln4h7v5/wish/1671810525</link>
         <description><![CDATA[<div>Now to test the Function "testIntegerLimits2"<br><mark>Note: the code lines 13-33 has been folded </mark><br>First, Comment the line 3, by putting two forward slashes "//"&nbsp; inline-3.<br>Add the Line: 8 <mark>testIntegerLimits2);</mark> in the "main functions"<br>Your code should look like the screenshot.<br><br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/956761073/00df7736542fefa54b46f60e28de9701/Screen_Shot_2021_08_07_at_4_06_10_PM.png" />
         <pubDate>2021-08-07 21:57:10 UTC</pubDate>
         <guid>https://padlet.com/todxs2010/uv22bznlsln4h7v5/wish/1671810525</guid>
      </item>
      <item>
         <title>Step 1:...... Continuation from part 1 of the assignment</title>
         <author>todxs2010</author>
         <link>https://padlet.com/todxs2010/uv22bznlsln4h7v5/wish/1671819761</link>
         <description><![CDATA[<div>Make sure your code for Week2.java looks like the above screenshot:<br><br>Now add the following Code in the sections highlighted "Add Your code here"<br><br>// Sction Start<br><br>// you need to have an unique method name if your code is in the same segment. That makes commonsense right?</div><div>&nbsp; &nbsp; &nbsp; &nbsp; public static void testIntegerLimits2() {&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //Step 1: Declare the variable type</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Integer a; // &nbsp; the line here declares the type Inter is a Data Type in Java and "a" is a variable. So that the computer can reserve some memory.</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // at this point the value stored in the variable is undertenant.</div><div>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //Step 2: You need to assign a value</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; a = 100;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Print("Before:");</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Print(a);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //Step 2a: Increase the value of a by 10;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; a = a +10; // this may seem odd</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // reasoning the computer will create a temp variable internally and store the value of "a +10"</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // then reuse the variable "a" to store the value of the result "a +10"</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //Step 3: Use the following code to print the value in the variable a</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Print("After:");</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Print(a);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }<br><br>//Section End</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/956761073/54ad70c74ec388a9908eece35cc6a66e/Screen_Shot_2021_08_07_at_3_53_04_PM.png" />
         <pubDate>2021-08-07 22:47:24 UTC</pubDate>
         <guid>https://padlet.com/todxs2010/uv22bznlsln4h7v5/wish/1671819761</guid>
      </item>
      <item>
         <title>Step 3: Create a break Point for debugging</title>
         <author>todxs2010</author>
         <link>https://padlet.com/todxs2010/uv22bznlsln4h7v5/wish/1671824342</link>
         <description><![CDATA[<div>Important: Read all the commented lines in the code. It is important to put or add comments in your code. It is called the best practices.&nbsp;<br><br>Now Execute the code by clicking the Context Run | Debug controls at the beginning of the  "static void main" code sections as shown in the screenshot. </div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/956761073/39722fa6d004a87b08956b81911bfbc6/Screen_Shot_2021_08_07_at_4_17_15_PM.png" />
         <pubDate>2021-08-07 23:16:54 UTC</pubDate>
         <guid>https://padlet.com/todxs2010/uv22bznlsln4h7v5/wish/1671824342</guid>
      </item>
      <item>
         <title>Step 4: Add additional Code Segment</title>
         <author>todxs2010</author>
         <link>https://padlet.com/todxs2010/uv22bznlsln4h7v5/wish/1671825564</link>
         <description><![CDATA[<div>This time type the code as shown in the screenshot:<br>Pay attention for every open brace "{" there has to be a close "}" brace. It sections the code to various parts or scopes. </div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/956761073/21519739b49a0a20bf77a1424232056c/Screen_Shot_2021_08_07_at_4_23_19_PM.png" />
         <pubDate>2021-08-07 23:24:15 UTC</pubDate>
         <guid>https://padlet.com/todxs2010/uv22bznlsln4h7v5/wish/1671825564</guid>
      </item>
      <item>
         <title>Step 5: Execute testIntegerLimits3()</title>
         <author>todxs2010</author>
         <link>https://padlet.com/todxs2010/uv22bznlsln4h7v5/wish/1671828457</link>
         <description><![CDATA[<div>Important: Comment the code that you do not want to run as shown in the screen shot.<br><br>Also add the line as shown in Line 9 to test the new code testIntegerLimits3().<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/956761073/dc6ca4e5f88fe3972d3812dc4dd7cbc2/Screen_Shot_2021_08_07_at_4_31_01_PM.png" />
         <pubDate>2021-08-07 23:33:10 UTC</pubDate>
         <guid>https://padlet.com/todxs2010/uv22bznlsln4h7v5/wish/1671828457</guid>
      </item>
      <item>
         <title>Step 6: Add more Code:</title>
         <author>todxs2010</author>
         <link>https://padlet.com/todxs2010/uv22bznlsln4h7v5/wish/1671829222</link>
         <description><![CDATA[<div>Type the code as captured in the screenshot below the section/method testIntegerLimits3();<br><br>Comment out the code in the main sections&nbsp; for<br>&nbsp;// testIntegerLimits3();<br><br>add the code like testIntegerLimits3();</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/956761073/499e8d8eb9b03c6a6633fe27fe9dbea8/Screen_Shot_2021_08_07_at_4_35_23_PM.png" />
         <pubDate>2021-08-07 23:37:56 UTC</pubDate>
         <guid>https://padlet.com/todxs2010/uv22bznlsln4h7v5/wish/1671829222</guid>
      </item>
      <item>
         <title>Step 7: add more code</title>
         <author>todxs2010</author>
         <link>https://padlet.com/todxs2010/uv22bznlsln4h7v5/wish/1671829442</link>
         <description><![CDATA[<div>Well you get the picture:<br>Comment out the code //testIntegerLimitsLoop4()<br>and add the code testIntegerLimitsLoop5();<br><br>Execute the code......</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/956761073/4a34c8815f3ecf818adf90e82bb014bf/Screen_Shot_2021_08_07_at_4_38_43_PM.png" />
         <pubDate>2021-08-07 23:39:11 UTC</pubDate>
         <guid>https://padlet.com/todxs2010/uv22bznlsln4h7v5/wish/1671829442</guid>
      </item>
      <item>
         <title>Step 8: .. last exercise add  </title>
         <author>todxs2010</author>
         <link>https://padlet.com/todxs2010/uv22bznlsln4h7v5/wish/1671830359</link>
         <description><![CDATA[<div>comment the code segment in the "static void main" method<br>//testIntegerLimitsLoop4()<br><br>add new code section the method "testIntegerLimitsLoop5a()<br><br>Execute the code.&nbsp;</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/956761073/dc907e4d7a5ec0df8b43648b43ae3a90/Screen_Shot_2021_08_07_at_4_41_32_PM.png" />
         <pubDate>2021-08-07 23:44:16 UTC</pubDate>
         <guid>https://padlet.com/todxs2010/uv22bznlsln4h7v5/wish/1671830359</guid>
      </item>
   </channel>
</rss>
