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

  • SEARCH
  • Home
  • 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 8449563
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T10:44:38+00:00 2026-06-10T10:44:38+00:00

This is a question from a past exam paper. I am not too sure

  • 0

This is a question from a past exam paper. I am not too sure how to convert the extract method to a while and for loop.

I have attempted this question: the extract1 and extract2 methods but i know they are incorrect. The original method may not be useful but the exam requires you to show how to write methods differently. I wanted to know how they could be done for future reference.

String extractedThis = "";

public String extract(String text){
    if(text.length()==0){
        return extractedThis;
    } else {
        return extractedThis = text.charAt(0) + extract(text.substring(1));
    }
}

public String extract1(String text) {

    while (text != null) {
        extractedThis = text.charAt(0) + text.substring(1);
    }
    return extractedThis;
}

public String extract2(String text) {

    for (int i = 0; i < text.length(); i++) {

        extractedThis = text.substring(i);
    }

    return extractedThis;

}
  • 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-06-10T10:44:40+00:00Added an answer on June 10, 2026 at 10:44 am
    public String extractWhileLoop(String text) {
        extractedThis = "";
    
        while(text.length() > 0) {
            extractedThis += text.charAt(0);
            text = text.substring(1);
        }
        return extractedThis;
    }
    
    public String extractForLoop(String text) {
        extractedThis = "";
        for (int i = 0; i < text.length(); i++) {
    
            extractedThis += text.charAt(i);
        }
    
        return extractedThis;
    }
    

    However, I don’t see what exactly your trying to achieve with these methods as the return their input, and could be done much easier

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is a question from a past paper, i'm not really sure what to
This is a question from a past exam paper. Why does the loop invariant
This is a question from an exam past paper. I have completed the question
This question is for revision purposes from a past exam paper I just want
This question is from a past exam paper and it is used for revision
This is a question from a past exam paper. The code was given in
This is a question from a past exam paper. The question asks to declare
While I have made a topic like this in the past, this is from
I'm having difficulties with a question from a past exam paper. I'm trying to
Brief: This is a past exam question from a Miranda exam but the syntax

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.