String & Scanner Class Methods Flashcards
17 Questions
100 Views

String & Scanner Class Methods Flashcards

Created by
@BrainiestDouglasFir

Questions and Answers

What is the correct way to define a new String?

  • String variable = new String(text here);
  • String variable = new String("text here"); (correct)
  • String variable = String("text here");
  • String variable = "text here"; (correct)
  • What does the method length() do?

    Finds the number of characters in a String.

    What is the purpose of charAt(int index)?

    Returns the char value at the specified index.

    What does substring(int beginIndex, int endIndex) return?

    <p>A new string that is a substring of this string.</p> Signup and view all the answers

    What does indexOf(int ch, int fromIndex) do?

    <p>Finds the index of the first occurrence of the specified character.</p> Signup and view all the answers

    What does compareTo(String str) return?

    <p>Negative integer if original comes before, positive if comes after, 0 if same.</p> Signup and view all the answers

    What does equals(String str) check?

    <p>Checks equality between two strings.</p> Signup and view all the answers

    What is the purpose of the Scanner class?

    <p>Provides methods for reading input values of various types.</p> Signup and view all the answers

    How do you define a Scanner object?

    <p>Scanner reader = new Scanner(System.in);</p> Signup and view all the answers

    How do you import the Scanner class?

    <p>java.util.Scanner;</p> Signup and view all the answers

    What does nextInt() do?

    <p>Allows user to enter an integer and returns int.</p> Signup and view all the answers

    What does nextDouble() return?

    <p>Allows user to enter a double and returns double.</p> Signup and view all the answers

    What does next() do?

    <p>Allows user to enter a single String and returns String.</p> Signup and view all the answers

    What does nextLine() return?

    <p>Returns a String ending when the Scanner object reaches a newline character.</p> Signup and view all the answers

    What is the Math class used for?

    <p>Contains methods for basic numeric operations.</p> Signup and view all the answers

    What is Math.PI?

    <p>An instance variable of Math.</p> Signup and view all the answers

    What does sqrt() do?

    <p>Calculates the square root.</p> Signup and view all the answers

    Study Notes

    String Class Methods

    • Defining a New String:

      • String variable can be initialized using new String("text here") or simply String variable = "text here";
    • length() Method:

      • Returns the number of characters in the string as an integer.
    • charAt(int index) Method:

      • Retrieves the character at a specified index in the string and returns it as a char.
      • Requires an integer parameter for the index.
    • substring(int beginIndex, int endIndex) Method:

      • Returns a substring defined by a starting index (inclusive) and an ending index (exclusive).
      • Can also create a substring from the starting index to the end of the string with substring(int beginIndex).
    • indexOf(int ch, int fromIndex) Method:

      • Finds the index of the first occurrence of a specified character, starting the search from a given index.
      • Can also be used to search for a substring.
    • compareTo(String str) & compareToIgnoreCase(String str):

      • Compares the original string with another string alphabetically.
      • Returns a negative integer if the original comes before the other string, positive if it comes after, and zero if both are identical.
    • equals(String str) & equalsIgnoreCase(String str):

      • Checks for equality between two strings.
      • Returns true if the strings are identical, otherwise returns false.
      • Requires a parameter that is the string to compare.

    Scanner Class

    • Purpose:

      • Facilitates easy input reading methods for various data types.
    • Defining Scanner Object:

      • Instantiate using Scanner reader = new Scanner(System.in); to read input from the console.
    • Importing Scanner Class:

      • Include import java.util.Scanner; before the class declaration to enable usage of the Scanner class.
    • nextInt() Method:

      • Allows the user to input an integer value from the console and returns it as an int.
    • nextDouble() Method:

      • Enables the user to input a double value, returning it as a double.
    • next() Method:

      • Reads a single word input from the console and returns it as a String.
    • nextLine() Method:

      • Retrieves an entire line of input from the console, including spaces, until a newline character is encountered.

    Math Class

    • Overview:

      • Contains static methods for basic numeric operations.
      • Methods are callable on the class itself without needing to create an instance.
    • Math.PI:

      • Constant that represents the value of π (pi) and is accessible without needing an object.
    • sqrt() Method:

      • Computes the square root of a specified double value and returns it as a double.
      • Requires a double parameter for the input value.

    Studying That Suits You

    Use AI to generate personalized quizzes and flashcards to suit your learning preferences.

    Quiz Team

    Description

    Test your knowledge on the String and Scanner class methods with these flashcards. Each card covers important methods and definitions, ensuring you understand the fundamentals of string manipulation in programming.

    More Quizzes Like This

    Python String Methods Quiz
    3 questions
    Python String Methods Quiz
    7 questions
    Python Strings and Lists
    18 questions

    Python Strings and Lists

    MeticulousBlankVerse avatar
    MeticulousBlankVerse
    Use Quizgecko on...
    Browser
    Browser