<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Augustana CSC Q&amp;A - Recent questions and answers in CSC211_Winter2018</title>
<link>https://lovelace.augustana.edu/q2a/index.php/qa/csc211/csc211_fall2018</link>
<description>Powered by Question2Answer</description>
<item>
<title>Answered: When’s the last day we are allowed to post questions for a grade?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1324/whens-the-last-day-we-are-allowed-to-post-questions-for-grade?show=2410#a2410</link>
<description>&lt;p&gt;Probably safe to say before your final exam. &lt;/p&gt;
&lt;p&gt;Good luck&lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1324/whens-the-last-day-we-are-allowed-to-post-questions-for-grade?show=2410#a2410</guid>
<pubDate>Mon, 09 Dec 2019 17:27:25 +0000</pubDate>
</item>
<item>
<title>Answered: A variable must be ________________________ precisely once, before it is assigned a value.</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1277/variable-________________________-precisely-before-assigned?show=2409#a2409</link>
<description>&lt;p&gt;A variable must be initialized precisely once, before it is assigned a value.&lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1277/variable-________________________-precisely-before-assigned?show=2409#a2409</guid>
<pubDate>Mon, 09 Dec 2019 17:26:12 +0000</pubDate>
</item>
<item>
<title>Answered: The act of removing errors from your program is called __________________________.</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1281/removing-errors-program-called-__________________________?show=2408#a2408</link>
<description>&lt;p&gt;the answer is debugging the program. Gotta get rid of those bugs!&lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1281/removing-errors-program-called-__________________________?show=2408#a2408</guid>
<pubDate>Mon, 09 Dec 2019 17:25:40 +0000</pubDate>
</item>
<item>
<title>Answered: Can someone explain what method overloading is?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1336/can-someone-explain-what-method-overloading-is?show=2407#a2407</link>
<description>&lt;p&gt;It's if they have the methods have the same name but different signatures. &lt;/p&gt;
&lt;p&gt;Different signatures meaning different parameters or the number of parameters being different. &lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1336/can-someone-explain-what-method-overloading-is?show=2407#a2407</guid>
<pubDate>Mon, 09 Dec 2019 17:23:52 +0000</pubDate>
</item>
<item>
<title>Answered: Java Identifiers</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1310/java-identifiers?show=1337#a1337</link>
<description>&lt;p&gt;While it is important to know what are illegal names for variable, methods, etc. It's also important to understand naming convention. You could name a method starting with a capital letter, for example, MethodName(), but it would not be following naming convention. The better name for this would be methodName().&lt;/p&gt;
&lt;p&gt;We usually talked about naming convention whenever we introduced a new topic, so you could find more on naming convention throughout all the slides.&lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1310/java-identifiers?show=1337#a1337</guid>
<pubDate>Wed, 13 Feb 2019 18:16:02 +0000</pubDate>
</item>
<item>
<title>Answered: what is the import statement for using files?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1327/what-is-the-import-statement-for-using-files?show=1335#a1335</link>
<description>&lt;p&gt;You also use &quot;import java.util.&lt;em&gt;&quot; to use random numbers. There is also &quot;import java.awt.&lt;/em&gt;&quot; that you would need to use graphics in your program.&lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1327/what-is-the-import-statement-for-using-files?show=1335#a1335</guid>
<pubDate>Wed, 13 Feb 2019 18:08:03 +0000</pubDate>
</item>
<item>
<title>Answered: Input/Output Files</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1328/input-output-files?show=1333#a1333</link>
<description>&lt;p&gt;It is not necessary to have both.&lt;/p&gt;
&lt;p&gt;If you just want the output to go to the file, then use printf, print, or  println with the PrintStream object that has been declared and connected to the file.&lt;/p&gt;
&lt;p&gt;If you just want the output to go to the console window, then use System.out as the PrintStream so System.out.print...&lt;/p&gt;
&lt;p&gt;In our lab, we sent the same output to both the console window and the file. In some of the test practice problems, that is not the case.&lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1328/input-output-files?show=1333#a1333</guid>
<pubDate>Wed, 13 Feb 2019 16:15:39 +0000</pubDate>
</item>
<item>
<title>Answered: how to formulate a helper method for returning a count of characters in a string</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1316/formulate-helper-method-returning-count-characters-string?show=1332#a1332</link>
<description>&lt;p&gt;I was trying to give someone else a chance to answer, but here goes.&lt;/p&gt;
&lt;p&gt;To write the helper method, the method would have a parameter of type String. Then use a for loop to loop through each index of the String beginning with 0 up to but not including its length. For each index use the charAt method to get the character at that index comparing it to the character you are trying to count. Remember characters are single quotes so something like word.charAt(i) == 'm'. When true, increase a counter whose value is returned after the loop.&lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1316/formulate-helper-method-returning-count-characters-string?show=1332#a1332</guid>
<pubDate>Wed, 13 Feb 2019 16:10:22 +0000</pubDate>
</item>
<item>
<title>Answered: for the first question on the final review the output is wrong for the commission of sales price &gt; 20000.</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1321/question-review-output-wrong-commission-sales-price-20000?show=1323#a1323</link>
<description>&lt;p&gt;350 + (.01 *(price over 20000-20000))&lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1321/question-review-output-wrong-commission-sales-price-20000?show=1323#a1323</guid>
<pubDate>Wed, 13 Feb 2019 15:58:18 +0000</pubDate>
</item>
<item>
<title>Answered: for a question like (argument) || (argument) &amp;&amp; (argument)</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1318/for-a-question-like-argument-argument-%26%26-argument?show=1320#a1320</link>
<description>&lt;p&gt;If there is a problem that is &quot;x&amp;gt;5 || y&amp;lt;=8 &amp;amp;&amp;amp; Z&amp;lt;5&quot; then you look at the statements connecting with &quot;&amp;amp;&amp;amp;&quot; first because of the precedence over &quot;||&quot;. The order of precedence is !, &amp;amp;&amp;amp;, and ||. &lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1318/for-a-question-like-argument-argument-%26%26-argument?show=1320#a1320</guid>
<pubDate>Wed, 13 Feb 2019 12:36:23 +0000</pubDate>
</item>
<item>
<title>Answered: I don't know what's wrong in here? The code does not execute?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1307/i-dont-know-whats-wrong-in-here-the-code-does-not-execute?show=1319#a1319</link>
<description>&lt;p&gt;did you create an actual transaction.txt file like we had in the last lab? if not you have to do that becuase we don't know how many transactions we have&lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1307/i-dont-know-whats-wrong-in-here-the-code-does-not-execute?show=1319#a1319</guid>
<pubDate>Wed, 13 Feb 2019 12:26:38 +0000</pubDate>
</item>
<item>
<title>Answered: What does a compiler do?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1296/what-does-a-compiler-do?show=1315#a1315</link>
<description>&lt;p&gt;It translates a programming language to binary language (simple computer language)&lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1296/what-does-a-compiler-do?show=1315#a1315</guid>
<pubDate>Tue, 12 Feb 2019 23:33:34 +0000</pubDate>
</item>
<item>
<title>Answered: While importing a .txt file eclipse shows .txt.txt file?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1308/while-importing-a-txt-file-eclipse-shows-txt-txt-file?show=1314#a1314</link>
<description>&lt;p&gt;did you name it something.txt because if so it might show up as something.txt.txt&lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1308/while-importing-a-txt-file-eclipse-shows-txt-txt-file?show=1314#a1314</guid>
<pubDate>Tue, 12 Feb 2019 19:32:16 +0000</pubDate>
</item>
<item>
<title>Answered: Understanding Method Overloading</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1311/understanding-method-overloading?show=1312#a1312</link>
<description>&lt;p&gt;Do your mean why are those the only examples of method overloading from the Math class....or at least the Math class methods we've discussed?&lt;/p&gt;
&lt;p&gt;Of those we've discussed, those methods have more than one &quot;version&quot; of the method with different signatures. A different signature means they have a different number of parameters or different types of parameters or both.&lt;/p&gt;
&lt;p&gt;For example, Math.abs has one version that accepts an integer parameter and returns an integer and another version that accepts a double parameter and returns a double. The headers for the methods are  public static int abs(int a)  and public static double abs(double a). The abs method actually has two other versions for floats and longs too.&lt;/p&gt;
&lt;p&gt;You can Google Java Math class to see all of the methods of the Math class. In that list, you can see many methods that have more than one &quot;version&quot;. Each of those methods is overloaded.&lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1311/understanding-method-overloading?show=1312#a1312</guid>
<pubDate>Tue, 12 Feb 2019 17:25:23 +0000</pubDate>
</item>
<item>
<title>Answered: If you want to give a name to a value that will never change while your program runs, you would create a what?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1300/value-never-change-while-your-program-runs-would-create-what?show=1309#a1309</link>
<description>&lt;p&gt;It's important to remember that class constants must be stated before the main method and that each part of the constant name is separated by a &quot;_&quot;.&lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1300/value-never-change-while-your-program-runs-would-create-what?show=1309#a1309</guid>
<pubDate>Tue, 12 Feb 2019 13:46:57 +0000</pubDate>
</item>
<item>
<title>Answered: You declare a variable in the main method then try to use the variable in a diff static method. Why can't you do this?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1299/declare-variable-main-method-variable-static-method-cant-this?show=1306#a1306</link>
<description>&lt;p&gt;This is due to the scope of the variable! (Check out page 99-100 for more on scope)&lt;br&gt;
Scope restricts where a variable can and cannot be used. Methods are like containers holding objects (variables). Because of this the variable can only be used within its container (the scope, in this case the method) that it was declared in. &lt;/p&gt;
&lt;p&gt;This can also cause issues when you declare a variable within a loop- the variable only exists within the loop, and therefore can not be used or called outside of said loop.&lt;/p&gt;
&lt;p&gt;To use a variable across methods it’s important to create a class constant, as described on page 109.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;public static final &amp;lt;type&amp;gt; &amp;lt;name&amp;gt; = &amp;lt;expression&amp;gt;; 
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;For example, this is the format for adding a constant which could be called in multiple methods. &lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1299/declare-variable-main-method-variable-static-method-cant-this?show=1306#a1306</guid>
<pubDate>Tue, 12 Feb 2019 00:11:10 +0000</pubDate>
</item>
<item>
<title>Answered: Procedural ______ is the act of splitting up a task into smaller subtasks that can be solved separately.</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1294/procedural-______-splitting-smaller-subtasks-separately?show=1298#a1298</link>
<description>&lt;p&gt;Procedural Decomposition&lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1294/procedural-______-splitting-smaller-subtasks-separately?show=1298#a1298</guid>
<pubDate>Mon, 11 Feb 2019 23:57:38 +0000</pubDate>
</item>
<item>
<title>Answered: The scope of a ______ restricts where it can be accessed/used within the code.</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1286/the-scope-______-restricts-where-accessed-used-within-code?show=1295#a1295</link>
<description>&lt;p&gt;Check out chapter 2, page 100 for more information on Scopes.&lt;/p&gt;
&lt;p&gt;To sum it up, a scope limits/restricts access for a variable. Wherever the variable is declared, it can only be accessed within that scope. This is essential to understanding loops, so be sure to check it out!&lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1286/the-scope-______-restricts-where-accessed-used-within-code?show=1295#a1295</guid>
<pubDate>Mon, 11 Feb 2019 23:53:58 +0000</pubDate>
</item>
<item>
<title>Answered: Using the + operator on two strings is called what?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1290/using-the-operator-on-two-strings-is-called-what?show=1292#a1292</link>
<description>&lt;p&gt;It is called concatenation. &lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1290/using-the-operator-on-two-strings-is-called-what?show=1292#a1292</guid>
<pubDate>Mon, 11 Feb 2019 23:52:32 +0000</pubDate>
</item>
<item>
<title>Answered: When adding images, do I drag them into the Project file or the src file?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1221/when-adding-images-drag-them-into-the-project-file-the-src-file?show=1289#a1289</link>
<description>&lt;p&gt;You can also create a separate folder in the project file to hold images, but you would have to be sure to call the whole path for the file within your code!&lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1221/when-adding-images-drag-them-into-the-project-file-the-src-file?show=1289#a1289</guid>
<pubDate>Mon, 11 Feb 2019 23:50:54 +0000</pubDate>
</item>
<item>
<title>Answered: What will be the value of true || false and True &amp;&amp; False?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1272/what-will-be-the-value-of-true-false-and-true-%26%26-false?show=1280#a1280</link>
<description>&lt;p&gt;Your question is a little confusing. Are these two separate questions?&lt;/p&gt;
&lt;p&gt;In general, the || sign represents OR. To explain more clearly, it’s saying that the value is True IF either side of the || is true. So, when True || False, the total value would be true. &lt;/p&gt;
&lt;p&gt;The &amp;amp;&amp;amp; sign represents AND. In this scenario both sides MUST be true in order for the entire value to be true. Therefore True &amp;amp;&amp;amp; False is FALSE because one side is false.&lt;/p&gt;
&lt;p&gt;Section 5.3 of the textbook might be of help as well!&lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1272/what-will-be-the-value-of-true-false-and-true-%26%26-false?show=1280#a1280</guid>
<pubDate>Mon, 11 Feb 2019 23:45:21 +0000</pubDate>
</item>
<item>
<title>Answered: What are the 3 logical operators and the precedence of those?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1202/what-are-the-3-logical-operators-and-the-precedence-of-those?show=1274#a1274</link>
<description>&lt;p&gt;|| = or&lt;br&gt;
&amp;amp;&amp;amp; = and&lt;br&gt;
! = not&lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1202/what-are-the-3-logical-operators-and-the-precedence-of-those?show=1274#a1274</guid>
<pubDate>Mon, 11 Feb 2019 23:39:40 +0000</pubDate>
</item>
<item>
<title>Answered: How do we create a new color?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1262/how-do-we-create-a-new-color?show=1273#a1273</link>
<description>&lt;p&gt;Try using this link to pick colors- you can use the mouse to find the color you would like and then it gives you the RGB code for that color.&lt;/p&gt;
&lt;p&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;https://www.google.com/search?q=color+picker&quot;&gt;https://www.google.com/search?q=color picker&lt;/a&gt;&lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1262/how-do-we-create-a-new-color?show=1273#a1273</guid>
<pubDate>Mon, 11 Feb 2019 23:38:42 +0000</pubDate>
</item>
<item>
<title>Answered: &quot;Inside string literals, the \ character serves a special purpose as the ____ character.&quot;</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1267/inside-string-literals-character-special-purpose-character?show=1271#a1271</link>
<description>&lt;p&gt;The backslash character (\) serves as the beginning of an escape sequence. An escape sequence uses a two character sequence of letters (such as \t) to distinguish a specific character that is difficult to type when pruning text. The \t example represents the tab character. There’s more information on page 16 of the textbook.&lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1267/inside-string-literals-character-special-purpose-character?show=1271#a1271</guid>
<pubDate>Mon, 11 Feb 2019 23:36:14 +0000</pubDate>
</item>
<item>
<title>Test location</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1264/test-location</link>
<description>&lt;p&gt;For Dr.Stonedahl's exam, is it hosted in our usual classroom of 209 ?&lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1264/test-location</guid>
<pubDate>Mon, 11 Feb 2019 21:11:30 +0000</pubDate>
</item>
<item>
<title>What does &quot;&quot; do?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1257/what-does-do</link>
<description>&lt;p&gt;Lets say we declared &lt;br&gt;
String word = &quot;&quot;;&lt;/p&gt;
&lt;p&gt;What does the &quot;&quot; mean?&lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1257/what-does-do</guid>
<pubDate>Mon, 11 Feb 2019 17:20:03 +0000</pubDate>
</item>
<item>
<title>Are the codes supposed to be different in mac and windows?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1254/are-the-codes-supposed-to-be-different-in-mac-and-windows</link>
<description>&lt;p&gt;A program worked fine in a windows computer but did not work in Mac.&lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1254/are-the-codes-supposed-to-be-different-in-mac-and-windows</guid>
<pubDate>Mon, 11 Feb 2019 16:33:39 +0000</pubDate>
</item>
<item>
<title>For casting, does it matter which variable gets casted?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1251/for-casting-does-it-matter-which-variable-gets-casted</link>
<description>&lt;p&gt;For example:&lt;/p&gt;
&lt;p&gt;is &lt;strong&gt;average = (double) value / count&lt;/strong&gt; the same as &lt;strong&gt;average = value / (double) count&lt;/strong&gt;?&lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1251/for-casting-does-it-matter-which-variable-gets-casted</guid>
<pubDate>Mon, 11 Feb 2019 14:44:08 +0000</pubDate>
</item>
<item>
<title>How soon will the exam grades be posted?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1245/how-soon-will-the-exam-grades-be-posted</link>
<description></description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1245/how-soon-will-the-exam-grades-be-posted</guid>
<pubDate>Mon, 11 Feb 2019 07:17:33 +0000</pubDate>
</item>
<item>
<title>Mueller final start time</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1244/mueller-final-start-time</link>
<description>&lt;p&gt;What time does Mueller's final start for the 211-02 section? &lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1244/mueller-final-start-time</guid>
<pubDate>Mon, 11 Feb 2019 07:15:57 +0000</pubDate>
</item>
<item>
<title>Programs on exam for Mueller’s class</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1242/programs-on-exam-for-muellers-class</link>
<description>&lt;p&gt;How many programs will there be on the exam?&lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1242/programs-on-exam-for-muellers-class</guid>
<pubDate>Mon, 11 Feb 2019 07:05:12 +0000</pubDate>
</item>
<item>
<title>What do I use in order to add pictures onto a drawing panel?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1239/what-do-i-use-in-order-to-add-pictures-onto-a-drawing-panel</link>
<description></description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1239/what-do-i-use-in-order-to-add-pictures-onto-a-drawing-panel</guid>
<pubDate>Mon, 11 Feb 2019 03:14:46 +0000</pubDate>
</item>
<item>
<title>How many questions will be on the final for Stonedahl's class?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1237/how-many-questions-will-be-on-the-final-for-stonedahls-class</link>
<description></description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1237/how-many-questions-will-be-on-the-final-for-stonedahls-class</guid>
<pubDate>Sun, 10 Feb 2019 23:05:19 +0000</pubDate>
</item>
<item>
<title>How do I prompt the user for an int value?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1217/how-do-i-prompt-the-user-for-an-int-value</link>
<description></description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1217/how-do-i-prompt-the-user-for-an-int-value</guid>
<pubDate>Sun, 10 Feb 2019 20:44:39 +0000</pubDate>
</item>
<item>
<title>What is the import statement for getting the Scanner?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1215/what-is-the-import-statement-for-getting-the-scanner</link>
<description></description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1215/what-is-the-import-statement-for-getting-the-scanner</guid>
<pubDate>Sun, 10 Feb 2019 20:39:05 +0000</pubDate>
</item>
<item>
<title>In &quot;panel.sleep(100)&quot;, what is the unit of 100?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1210/in-panel-sleep-100-what-is-the-unit-of-100</link>
<description></description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1210/in-panel-sleep-100-what-is-the-unit-of-100</guid>
<pubDate>Sun, 10 Feb 2019 20:31:19 +0000</pubDate>
</item>
<item>
<title>How do I get the graphics pen?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1209/how-do-i-get-the-graphics-pen</link>
<description></description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1209/how-do-i-get-the-graphics-pen</guid>
<pubDate>Sun, 10 Feb 2019 20:29:01 +0000</pubDate>
</item>
<item>
<title>How do I round up a double to 2 decimal places in a printf statement?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1208/how-do-round-up-double-to-decimal-places-in-printf-statement</link>
<description></description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1208/how-do-round-up-double-to-decimal-places-in-printf-statement</guid>
<pubDate>Sun, 10 Feb 2019 20:23:44 +0000</pubDate>
</item>
<item>
<title>What are the largest possible int value?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1207/what-are-the-largest-possible-int-value</link>
<description></description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1207/what-are-the-largest-possible-int-value</guid>
<pubDate>Sun, 10 Feb 2019 20:20:00 +0000</pubDate>
</item>
<item>
<title>Does the index of a certain String start from 0 or 1?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1205/does-the-index-of-a-certain-string-start-from-0-or-1</link>
<description></description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1205/does-the-index-of-a-certain-string-start-from-0-or-1</guid>
<pubDate>Sun, 10 Feb 2019 20:18:06 +0000</pubDate>
</item>
<item>
<title>What is meant by method overloading?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1204/what-is-meant-by-method-overloading</link>
<description></description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1204/what-is-meant-by-method-overloading</guid>
<pubDate>Sun, 10 Feb 2019 20:16:13 +0000</pubDate>
</item>
<item>
<title>What is the syntax for single and multi line comments?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1201/what-is-the-syntax-for-single-and-multi-line-comments</link>
<description></description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1201/what-is-the-syntax-for-single-and-multi-line-comments</guid>
<pubDate>Sun, 10 Feb 2019 20:06:46 +0000</pubDate>
</item>
<item>
<title>Can anyone tell me what primitive types are and how many are there?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1196/can-anyone-tell-what-primitive-types-are-and-how-many-are-there</link>
<description></description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1196/can-anyone-tell-what-primitive-types-are-and-how-many-are-there</guid>
<pubDate>Sun, 10 Feb 2019 18:17:21 +0000</pubDate>
</item>
<item>
<title>how can we create new color?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1195/how-can-we-create-new-color</link>
<description></description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1195/how-can-we-create-new-color</guid>
<pubDate>Sun, 10 Feb 2019 18:13:02 +0000</pubDate>
</item>
<item>
<title>does the &lt;panel&gt;.setWidth(&lt;Width&gt;); method changes the size of the panel after execution or will it draw a new panel?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1193/panel-setwidth-width-method-changes-panel-execution-panel</link>
<description></description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1193/panel-setwidth-width-method-changes-panel-execution-panel</guid>
<pubDate>Sun, 10 Feb 2019 17:22:28 +0000</pubDate>
</item>
<item>
<title>Is there any extra credit chance in final exam?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1192/is-there-any-extra-credit-chance-in-final-exam</link>
<description></description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1192/is-there-any-extra-credit-chance-in-final-exam</guid>
<pubDate>Sun, 10 Feb 2019 16:42:25 +0000</pubDate>
</item>
<item>
<title>Code Redundancy</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1188/code-redundancy</link>
<description>&lt;p&gt;On the coding part of the final, are we losing points if our codes are redundant?. &lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1188/code-redundancy</guid>
<pubDate>Sun, 10 Feb 2019 15:05:38 +0000</pubDate>
</item>
<item>
<title>How do you import a Midi file to a program on Eclipse?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1179/how-do-you-import-a-midi-file-to-a-program-on-eclipse</link>
<description></description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1179/how-do-you-import-a-midi-file-to-a-program-on-eclipse</guid>
<pubDate>Sun, 10 Feb 2019 00:26:09 +0000</pubDate>
</item>
<item>
<title>Are we Gonna have a difficult or complicated coding part for the finals?</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1178/are-gonna-have-difficult-complicated-coding-part-for-finals</link>
<description></description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1178/are-gonna-have-difficult-complicated-coding-part-for-finals</guid>
<pubDate>Sun, 10 Feb 2019 00:20:16 +0000</pubDate>
</item>
<item>
<title>BJP3 Self-Check 5.8: doWhileLoops</title>
<link>https://lovelace.augustana.edu/q2a/index.php/1177/bjp3-self-check-5-8-dowhileloops</link>
<description>&lt;p&gt;What are the answers to B and C?&lt;/p&gt;
</description>
<category>CSC211_Winter2018</category>
<guid isPermaLink="true">https://lovelace.augustana.edu/q2a/index.php/1177/bjp3-self-check-5-8-dowhileloops</guid>
<pubDate>Sun, 10 Feb 2019 00:17:23 +0000</pubDate>
</item>
</channel>
</rss>