Search:

Type: Posts; User: LeaAnn0223

Search: Search took 0.11 seconds.

  1. Re: Help me understand what the print out sequence is please

    The funny thing is, Norm, I got that sample question from Oracle lol. That's a sample pull straight from their website for SE7 programmer exam lol So if that's the way they're going to formulate...
  2. Re: Help me understand what the print out sequence is please

    that is a sample question on a java certification test.....are you saying that this code is not written out properly even though it runs correctly?
  3. Help me understand what the print out sequence is please

    public class Sequence {
    Sequence() { System.out.print("c "); }
    { System.out.print("y "); }
    public static void main(String[] args) {
    new Sequence().go();
    }
    void go() { System.out.print("g...
  4. [SOLVED] Re: Advice on booleans and yes/no inputs that deliver specific outputs

    Thanks for your help...that has cleared it up for me....now to go do it, again and again and again AND again! lol
  5. [SOLVED] Re: Advice on booleans and yes/no inputs that deliver specific outputs

    you gave good examples....I'm just reaffirming that I must go back and refresh on how to set the boolean variable.

    this code is suppose to interact with the user. The code asks if the users is...
  6. [SOLVED] Re: Advice on booleans and yes/no inputs that deliver specific outputs

    Thank you for your response. So I've had a play around with it again and I'm wondering if you might be able to explain that in another way, please. And just for clarity sake, why are a & b poor...
  7. [SOLVED] Re: Advice on booleans and yes/no inputs that deliver specific outputs

    import java.util.Scanner;

    class Test{
    public static void main(String[] args) {

    boolean a = true;
    boolean b = false;

    Scanner myScanner = new...
  8. [SOLVED] Advice on booleans and yes/no inputs that deliver specific outputs

    First, let me start off by saying I'm a total noob. So this padawan is asking for patience.

    So, I'm working with a simple code that expands a bit on the "Hello World" code.

    What I WANT it to...
  9. Replies
    0
    Views
    864

    "Saluton Mondo" Another Java Noob.

    Hi, my name is Lea Ann and I'm a Java NOOB on a 24 hour step program with Sam and taking a course with Oracle; which by the way is dead boring and not worth the money I paid so far. So with the book...
Results 1 to 9 of 9