Character and string Methods Flashcards

1
Q

A ___________ is not a simple data type but a reference—it holds a memory address, not the actual
value.

A

String variable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

A String variable is _____________ but a reference—it holds a memory address, not the actual
value.

A

not a simple data type

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

A String variable is not a simple data type but a _________—it holds a memory address, not the actual
value.

A

reference

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

A String variable is not a simple data type but a reference—it holds a _____________, not the___________.

A

memory address
actual value

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

When you use __ to compare two
Strings, you’re comparing their _____________, not their ________.

A

==
memory addresses
actual values

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

_________ usually want to compare the values
of Strings, not their memory addresses.

A

Programmers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Programmers usually want to compare the ___________, not their___________.

A

values of Strings
memory addresses

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

______________:
Holds a single character

A

Character Class

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Character Class:
Holds a _________

A

single character

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

______________:
Provides methods to manipulate and inspect
single-character data.

A

Character Class

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Character Class:
Holds a single character (e.g., ‘A’, ‘8’, ‘$’).
Provides methods to ________ and ______________.

A

manipulate
inspect single-character data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

___________:
Used for fixed (unchanging) text data made
up of one or more characters.
Offers many methods to simplify working with
Strings.

A

String Class

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

String Class:
Used for_______________ made
up of _______________.
Offers many methods to simplify working with
Strings.

A

fixed (unchanging) text data
one or more characters

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

The _____________:
Used to store a single character, such as a
letter, digit, or punctuation mark.

A

char Data Type

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

The char Data Type:
Used to _____________, such as a
letter, digit, or punctuation mark.

A

store a single character

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

The char Data Type:
Used to store a single character, such as a
_______,________, or_____________.

A

letter
digit
punctuation mark

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

char literals are written inside_______________

A

single quotation
marks

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

Since char is a _____________, it holds
actual values (not memory addresses).

A

primitive data type

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

Since char is a primitive data type, it holds
___________ (_________).

A

actual values
not memory addresses

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

You can compare char values using _______________ like == and >.

A

relational operators

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

Comparisons are based on the ________ value of
each character.

A

Unicode

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

These comparisons work as you’d expect—
_____________.

A

alphabetically

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

Java also provides a _________ for working
with characters.

A

Character class

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

This class includes useful methods for_______ and
__________ character values.

A

testing
manipulating

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Q

This __________ includes useful methods for testing and
manipulating character values.

A

class

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
26
Q

The ____________ is part of the____________, which is automatically imported into
every Java program.

A

Character class
java.lang package

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
27
Q

Checks if the given character is a letter
(uppercase or lowercase).

A

isLetter(char ch)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
28
Q

Checks if the given character is a digit

A

isDigit(char ch)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
29
Q

Checks if the given character is a
whitespace (space, tab, newline, etc.).

A

isWhitespace(char ch)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
30
Q

Converts the given character to its
uppercase equivalent.

A

toUpperCase(char ch)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
31
Q

Converts the given character to its
lowercase equivalent.

A

toLowerCase(char ch)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
32
Q

Checks if the given character is an
uppercase letter.

A

isUpperCase(char ch)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
33
Q

Checks if the given character is a
lowercase letter.

A

isLowerCase(char ch)

34
Q

Converts the given character to a
String.

A

toString(char ch)

35
Q

Checks if the given character is a letter
or a digit.

A

isLetterOrDigit(char ch)

36
Q

Compares two characters numerically
based on their Unicode values.

A

compare(char x, char y)

37
Q

Compares two characters numerically based on their _______________.

A

Unicode values

38
Q

_____________ are one of the most common
dataType in Java.

39
Q

Strings are one of the most common
______ in Java.

40
Q

Primitive Types (e.g., int):
When you declare int x = 10;, the __________ of x
holds the value 10.
If you update x to 45, the _____ replaces the old
one at the same memory address.

A

memory address
new value

41
Q

When you declare String aGreeting = “Hello”;,
aGreeting holds the ____________ of the String “Hello”, not the ________.

A

memory address
actual characters

42
Q

You cannot choose _________; they are assigned by the
__________.

A

memory addresses
operating system

43
Q

Strings are ____________they are never
changed. Instead, new Strings are
created, and references are updated to
point to the new memory addresses.

44
Q

Strings are immutable—they are never
changed. Instead, ________ are
created, and _________ are updated to
point to the ______________.

A

new Strings
references
new memory addresses

45
Q

Comparing Strings with < or > will cause a ________________. These operators cannot be used with Strings.

A

compilation error

46
Q

Use the + operator to combine (concatenate) Strings.

A

Concatenating Strings

47
Q

Created using double quotes with no characters
inside.

A

Empty Strings

48
Q

Refers to a memory address where no characters are
stored.

A

Empty String

49
Q

Refers to a_________ where _________ are
stored.
Can be used with String methods like ________.

A

memory address
no characters
.equals()

50
Q

_________:
Created by assigning null to a String.

A

Null Strings

51
Q

A _________ does not reference any memory address.

A

null String

52
Q

Cannot be used with String methods like___________
—it will cause an error.

53
Q

Others find it ________ since unassigned Strings are
null by default.

54
Q

Returns the number of characters in a String.

55
Q

Finds the position of a character or substring in a String.

56
Q

Returns the character at a specific position.

57
Q

Extracts part of a String.

A

substring()

58
Q

The __________ method takes_______________—a start position and an end position—that are both based on the fact that a String’s first position is position zero.

A

substring()
two integer arguments

59
Q

The_________________ is the difference between the second integer and the first integer; if you call the method without a second integer argument, the substring extends to the end of the original string.

A

length of the extracted substring

60
Q

The length of the extracted substring is the difference between the _________________; if you call the method without a second integer argument, the substring extends to the end of the original string.

A

second integer and the first integer

61
Q

Checks if a String starts with a specific substring.

A

startsWith()

62
Q

Checks if a String ends with a specific substring

A

endsWith()

63
Q

Replaces all occurrences of a character or String/substring.

64
Q

Checks if a String contains a specific substring.

A

contains()

65
Q

Converts current dataType to a String (implicitly used in print() and println()).

A

toString()

66
Q

Finds the position of a substring starting from a specific index.

A

indexOf(String, int)

67
Q

Checks if a String is empty or contains only whitespace.

68
Q

Checks if a String has no characters.

69
Q

Converts the String to lowercase.

A

toLowerCase()

70
Q

Converts the String to uppercase.

A

toUpperCase()

71
Q

Removes leading and trailing whitespace.

72
Q

Removes leading and trailing whitespace (similar to strip() but available in older Java versions).

73
Q

Why Convert Strings to Numbers?

A

perform arithmetic operations.

74
Q

It provides the _______________ method,
which takes a String and returns its integer value.

A

parseInt()

75
Q

parseInt() is a static method, so you call it using the class name (___________).

A

Integer.parseInt()

76
Q

It provides the ___________method, which takes a
String and returns its double values.

A

parseDouble()

77
Q

indexOf(): Finds the position of a character or substring
in a String. Returns ______ if not found.

78
Q

Converts a String to a float.

A

Float.parseFloat():

79
Q

Converts a String to a long.

A

Long.parseLong()

80
Q

Forgetting to handle null Strings, leading to ____________.

A

runtime errors

81
Q

Misusing methods like charAt() with invalid positions (causing ______________________).

A

StringIndexOutOfBoundsException