e

Statements
Define a variable to store the word to return
Define a variable to store the index of the starting character
Define a variable to store the index of the ending character
Store the current position in the variable storing the starting character position
Store the current position in the variable storing the ending character position
Return the substring of the text from starting character to (ending character + 1) positions
Return the substring of the text from starting character position to (pos + 1)
Return the substring of the text from position pos to (ending character + 1) position
Store the current position in the variable storing the ending character position
Store the current position in the variable storing the starting character position
Break from the loop
Break from the loop
Loops and Conditionals
[LOOP] Starting from position pos, scan every character to the left of pos break when start of string reached
[CONDITIONAL] If the current character is a letter
[CONDITIONAL] If the current character is not a letter
[LOOP] Starting from position pos, scan every character to the right of pos break when end of string reached
[CONDITIONAL] If the current character is a letter
[CONDITIONAL] If the current character is not a letter
[CONDITIONAL] If the we have reached the end of the input string
[CONDITIONAL] If the we have reached the start of the input string
public String extractword(int pos)
This function should do one of the following
1. Return the string of the word that begins at position pos.
2. Return the string of the word that contains the character at position pos.
check
blue plus sign

Add Block

Checker

e

Solutions

Pre order:
In order:
Post order:
Close

Settings

Theme: (Dark)

Checker Settings
Report Bug
Close

Generate random tree

Max number of levels

Tree type

Generate

How to use

1. Drag statements from the statement bank into the code builder. Use controls to add and delete blocks.
2. Press the green check button to check the correctness of your code.
3. Make corrections based on the checker panel information and automatic feedback.
Close

Check answer

Which solution have you implemented?

Return the string of the word that begins at position pos.
Return the string of the word that contains the character at position pos.

Remember my selection

Cancel

GOOD JOB!

green check mark

You have completed this exercise!

Close