Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6815043
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T20:45:36+00:00 2026-05-26T20:45:36+00:00

I have the following code and the return is confusing me. I am new

  • 0

I have the following code and the return is confusing me. I am new to java and not exactly sure why it is returning the way it is. Any help would be great.

When the data has PE846 and A846 it returns engine, ambo and engineambo. I’m looking to return only engineambo.

    String soundString = "";

    if (data.contains("PE846")) {
        soundString += "engine";
        betaString = "Engine : ";
        sign = engine;
    }
    if (data.contains("A846")) {
        soundString += "ambo";
        betaString += "Ambo : ";
        sign = ambo;
    }
    if (data.contains("MD846")) {
        soundString += "medic";
        betaString += "Medic";
        sign = medic;
    }

    log.info(betaString + " Alerted");

    {
        new AudioPlayer("sounds/" + soundString + ".wav").start();
        log.info(soundString);
    }   
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T20:45:37+00:00Added an answer on May 26, 2026 at 8:45 pm

    You can try tracing through your code line-by-line. If it contains PE846 and A846 (but not MD846), then it will run the first two conditional blocks, thereby executing as follows:

    if (data.contains("PE846")){   // The string does contain PE846, per your question
        soundString += "engine";   // soundString = "" + "engine" = "engine"
        betaString = "Engine : ";  // betaString = "Engine : "
        sign = engine;             // sign = engine
    }
    if (data.contains("A846")){    // The string does contain A846, per your question
        soundString += "ambo";     // soundString = "engine" + "ambo"
        betaString += "Ambo : ";   // betaString = "Engine : " + "Ambo : " = "Engine : Ambo : "
        sign = ambo;               // sign = ambo (overwriting the previous value, "engine")
    }
    if (data.contains("MD846")){   // The string does not contain MD846, per your question
        soundString += "medic";    // not executed
        betaString += "Medic";     // not executed
        sign = medic;              // not executed
    }
    
    log.info(betaString + " Alerted");  // betaString + " Alerted" => "Engine : Ambo : Alerted"
    {
        new AudioPlayer("sounds/"+ soundString +".wav").start();
        log.info(soundString);          // soundString => "engineambo"
    } 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following code: public ActionResult SomeAction() { return new JsonpResult { Data
I have the following code (calling a method returning IEnumerable): FibonacciWithLinq.Skip(delegate() { return 5;
Hi I have a following code below: public Date convertFromGMTToLocal(Date date) { return new
So I have the following code: return from a in DBContext.Acts join artist in
I Have following code: Controller: public ActionResult Step1() { return View(); } [AcceptVerbs(HttpVerbs.Post)] public
I have the following code string three() { return three; } void mutate(string& ref)
Suppose I have the following code: class some_class{}; some_class some_function() { return some_class(); }
I have the following code which works fine. However, I only want to return
I have the following code $(document).ready(function() { $('a#slick-toggle').click(function() { $('#slickbox0').toggle(400); return false; }); });
I’m after some C# code that will have the following methods that will return

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.