StringBuilder and Stringbuffer Flashcards

1
Q

In Java, the _________ is used to
represent a group of characters.

A

String class

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

It is one of the most frequently
used classes in Java programming.

A

String

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

When a new string is created,
memory is ________ for it.

A

allocated

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

String Literals
Created using __________
Stored in the ____

A

double quotes
String Pool

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

If the same value already exists in the pool, Java
_______ it instead of creating a new one.

A

reuses

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

_________: Memory is allocated and
freed as the program runs.

A

Dynamic

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

________________________
Created using the new keyword or
__________.
Stored in the Heap (general memory area for
objects).
Each new keyword creates a new instance, even
if the value is the same.

A

Dynamically Constructed Strings
concatenation

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

The _______ is like a large warehouse
where Java stores data(e.g., Strings,
Cars, Dogs).

A

Heap

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

The Heap is like a ________
where Java stores data(e.g., Strings,
Cars, Dogs).

A

large warehouse

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

_________: Java
automatically ____________ to
free up memory.

A

Garbage Collection
removes unused data

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

_________ (String Constant Pool)
A special area within the _______ for __________

A

String Pool
Heap
storing strings

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

_________by reusing identical
strings.

A

Saves memory

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

__________ by avoiding
duplicate data.

A

Improves performance

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

__________ by avoiding
duplicate data.

A

Improves performance

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

Saves memory by reusing ______________.

A

identical
strings

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

Improves performance by avoiding
__________.

A

duplicate data

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

String Pool (String Constant Pool)
How It Works:
When a string literal is created (e.g.,
“Hello “), Java checks ___________ in the pool.
If it exists, Java returns a _________ to
the existing string.
If it doesn’t exist, Java creates a ____________ and returns its
reference.

A

if it already exists
reference
new
string in the pool

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

____________: General memory for ____, _________, and managed by _______.

A

Heap
data
dynamic
garbage collection

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

___________: Special memory for strings, optimized for
reuse and efficiency.

A

String Pool

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

Use _______ (“text”) for memory efficiency and
new for unique instances.

A

string literals

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

Use string literals (“text”) for ___________ and
new for _____________.

A

memory efficiency
unique instances

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

String Pool: __________ for strings, optimized for
________ and ________.

A

Special memory
reuse
efficiency

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

Strings in Java are ____________, meaning their
values cannot be changed after creation.

A

immutable

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

Any operation that seems to modify a string (e.g.,
concatenation, replacement) actually creates a
_________.

A

new string

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

This behavior can lead to_______________,
especially when performing frequent ______________.

A

higher memory usage
string manipulations

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

However, _____________ efficiently
manages memory by cleaning up _____________.

A

Java’s garbage collector
unused string data

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

Immutability means

A

You cannot change the content of the
box directly

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

________ is like giving a copy of the
toy to your friend.

A

Immutability

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

In Java, immutability ensures predictable
and ________________, especially when multiple
parts of a program use the same text.

A

safe behavior

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

Why It’s Important:
Prevents _____________ (two threads
updating the same data simultaneously).
Avoids _________________ (threads seeing
incorrect or partial data).
Prevents ______________ or
_________.

A

race conditions
data inconsistency
unexpected crashes
unpredictable behavior

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

______________ensures that multiple threads can
access shared data without causing errors or
corruption.

A

Thread safety

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

_______________________
Perform one task at a time.
Slower for multiple tasks.

A

Single-Threaded Programs

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

_______________
Perform multiple tasks simultaneously.
Faster and more efficient.

A

Multi-Threaded Programs

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

Use multi-thread for complex programs (e.g.,
video streaming, chat apps, web servers).

A

complex programs

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

In Java, a __________________ is a special method used
for initialization. A _____________ sets up the
initial state by assigning values or
allocating memory.

A

constructor

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

In Java, a constructor is a special method used
for ______________. A constructor sets up the
___________ by ____________ or
_________

A

initialization
initial state
assigning values
allocating memory

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

In terms of ___________, a constructor is
used to initialize a __________ with a
default or specified value. The _______ class provides several constructors that allow different ways to create
a _________ instance.

A

StringBuilder
new StringBuilder
StringBuilder
StringBuilder

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

In terms of StringBuilder, a ____________ is
used to _____ a new StringBuilder with a
______ or __________. The StringBuilder class provides several constructors that allow different ways to create a StringBuilder instance.

A

constructor
initialize
default
specified value

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

Initializes an ___________ with a default
capacity of _________.

A

empty StringBuilder
16 characters

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

Creates a StringBuilder with a _________ (useful
when handling large strings to reduce memory reallocation).

A

custom capacity

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

Creates a StringBuilder initialized with the given _________.

A

string value

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

The initial capacity is ________ of the string.

A

16 + length

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

A _____________ is a general representation of character sequences (like String and StringBuffer).

A

CharSequence

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

A CharSequence is a ____________ of character sequences (like String and StringBuffer).

A

general representation

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

A CharSequence is a general representation of character sequences (like _________________).

A

String and StringBuffer

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

This constructor allows initializing a ______ using a __________ or another___________.

A

StringBuilder
StringBuffer
CharSequence

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

The ____________ in Java provides various methods to manipulate string sequences efficiently.

A

StringBuilder class

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

The StringBuilder class in Java provides various methods to ___________________________.

A

manipulate string sequences efficiently

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

Adds the specified text at the end of
the existing StringBuilder content.

A

append(String s)

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

The__________ method returns the same StringBuilder
instance, allowing method chaining.

A

append()

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

The append() method returns the same StringBuilder
instance, allowing__________.

A

method chaining

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

append() is _______ – modifies the existing
StringBuilder instead of creating a new data.

A

efficient

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

___________ – You can chain multiple append() calls.

A

Method chaining

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

_____________ – Works well with
Scanner for dynamically building text.

A

Ideal for user input processing

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

Inserts the specified text at the given
index (offset).

A

StringBuilder.insert(int offset, data);

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

____ → The index position where the data
should be inserted.

A

offset

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

_____ → The value to be inserted (can be a
String, char, int, double, etc.).

58
Q

The _______ method modifies the existing
StringBuilder data without creating a new one.

59
Q

insert() is _____ – allows adding new data at any
position without replacing existing content.

60
Q

___________– unlike replace(), it does not
overwrite characters.

A

Preserves existing text

61
Q

__________– works well with
Scanner for building dynamic text.

A

Great for user input manipulation

62
Q

Replaces the characters between start and end
indexes with the specified string.

A

replace(int start, int end, String str)

63
Q

______→ The starting index (inclusive) where replacement begins.

64
Q

______→ The ending index (exclusive) where replacement
stops.

65
Q

____ → The new string that will replace the existing
characters in the given range.

66
Q

The ________ method modifies the existing StringBuilder data without creating a new one

67
Q

Initializes an ___________ with a default
capacity of 16 characters.

A

empty StringBuilder

68
Q

Creates a StringBuilder with a ______________(useful
when handling large strings to reduce memory reallocation).

A

custom capacity

69
Q

Creates a StringBuilder initialized with the__________.

A

given string value

70
Q

The initial capacity is _______ of the string.

A

16 + length

71
Q

The StringBuilder class in Java provides various ____________ to manipulate string sequences efficiently.

72
Q

replace() is ______ – modifies the existing
StringBuilder without creating a_______.

A

efficient
new data

73
Q

It replaces only a portion of the text – unlike
__________, which changes a single character.

A

setCharAt()

74
Q

Uses index positions – you must specify __ and ______for replacement.

A

start
end indexes

75
Q

Deletes characters between the specified
start and end indexes.

A

delete(int start, int end)

76
Q

Description: Deletes characters between the specified
start and end indexes.
______→ The starting index (inclusive) where deletion
begins.
______→ The ending index (exclusive) where deletion
stops.
______method modifies the existing StringBuilder
without creating a new one.

A

start
end
The delete()

77
Q

delete(int start, int end)
Key Takeaways
✔ delete() _____________– modifies the
existing StringBuilder without creating a new Stringbuilder.
✔ It ________________ – unlike
setLength(0), which clears the entire content.
✔ Uses___________ – you must specify start and end
indexes for deletion.
✔ Works well for__________ – great for removing
______ from user input.

A

removes text efficiently
removes only a portion of the text
index positions
string manipulation
unnecessary words

78
Q

______________
Description: Removes a single character at the
specified index.
________ → The position of the character to be
removed.
The ___________method modifies the existing
StringBuilder instead of creating a new one.
Usage: Useful for______________ without
affecting the rest of the string.

A

deleteCharAt(int index)
index
deleteCharAt()
deleting a single character

79
Q
  1. deleteCharAt(int index)
    Key Takeaways
    ✔ deleteCharAt() removes a____ efficiently
    – modifies the StringBuilder directly.
    ✔_______ – unlike delete(), which removes a
    range of characters.
    ✔ Useful for ______ – removing spaces,
    typos, or unwanted characters.
    ✔ ________ is important – always check if the index
    is valid before using deleteCharAt().
A

single character
Requires an index
correcting user input
Error handling

80
Q

Useful for correcting user input – ___________,
_____, or ____________.

A

removing spaces
typos
unwanted characters

81
Q

Error handling is important – always check if the index
is ______ before using deleteCharAt().

82
Q

_____
Description: Reverses the sequence of characters in
the StringBuilder.
This method modifies the existing StringBuilder in
place.
The __________ is transformed into its reversed
version
Usage: Helps in reversing strings for ___________- or
_____________.

A

reverse()
original string
palindromes
algorithmic processing

83
Q

______ is useful for reversing words and sentences
– modifies the StringBuilder directly.
✔ _______ – does not create a new instance of the
variable, works in-place.
✔ Can be used for ____________ – reversing a
string and comparing it with the original.
✔ Works on any________ – words, sentences,
numbers, etc.

A

reverse()
Efficient
palindrome checking
text format

84
Q

✔ Works on any text format – ______, _______,
________, etc.

A

words
sentences
numbers

85
Q

________
Description: Returns the current capacity (________) of the StringBuilder.
___________ refers to the __________ the
StringBuilder can hold before it needs to
resize.

A

capacity()
storage size
Capacity
number of characters

86
Q

_____________ = StringBuilder.capacity();

A

int currentCapacity

87
Q

int currentCapacity =________________

A

StringBuilder.capacity();

88
Q

____________ is 16 characters if created with
new StringBuilder().

A

Default capacity

89
Q

When the capacity is exceeded, it expands
automatically using the formula:
_______________________________

A

New Capacity = (Old Capacity * 2) + 2

90
Q

Default capacity is ___________ if created with
new StringBuilder().

A

16 characters

91
Q

Unlike _______, which gives the actual number of
characters stored, capacity() tells how much
space is allocated.

92
Q

Unlike length(), which gives the _______________________, capacity() tells how much space is allocated.

A

actual number of
characters stored

93
Q

Unlike length(), which gives the actual number of
characters stored, ___________ tells how much
space is allocated.

A

capacity()

94
Q

Unlike length(), which gives the actual number of
characters stored, capacity() tells how much
___________________.

A

space is allocated

95
Q

capacity()
Helps understand how much ______________________.

A

space is
allocated before resizing occurs

96
Q

____________shows allocated storage space, not the
actual string length.

A

capacity()

97
Q

capacity() shows__________________, not the
__________________.

A

allocated storage space
actual string length

98
Q

______________→ Number of characters currently stored.

99
Q

Ensures that the StringBuilder has at least
minCapacity of storage, growing if necessary.

A

ensureCapacity(int minCapacity)

100
Q

If __________ is greater than the _________________, the
capacity increases using the formula:
New Capacity = (Old Capacity * 2) + 2

A

minCapacity
current capacity

101
Q

If minCapacity is greater than the current capacity, the
capacity increases using the formula:
____________________________

A

New Capacity = (Old Capacity * 2) + 2

102
Q

If minCapacity is ________________ to the current
capacity, no change is made.

A

less than or equal

103
Q

______________ → The minimum required capacity.

A

minCapacity

104
Q

ensureCapacity()
This method does not ____________, only increases
it if necessary.

A

shrink capacity

105
Q

ensureCapacity() only ____________________if necessary
– it does not decrease or shrink storage.

A

increases capacity

106
Q

_____________ → Expands the storage if needed.

A

ensureCapacity()

107
Q

Default capacity is 16, but it ___________ when
exceeded.

A

doubles plus 2

108
Q

ensureCapacity():
Using a__________ can___________ when handling______________.

A

larger initial capacity
improve performance
large text data

109
Q

Returns the number of characters in the
StringBuilder.

110
Q

_________________= StringBuilder.length();

A

int currentLength

111
Q

int currentLength = _______________

A

StringBuilder.length();

112
Q

_______→ Returns the actual number of
characters in the StringBuilder.

113
Q

The length changes dynamically as characters are
_______ or ________.

A

added
removed

114
Q

Important for checking string size before performing
______________ like_______________.

A

operations
substring()

115
Q

Returns the character at the specified
index

A

charAt(int index)

116
Q

__________→ The position of the character to
retrieve.

117
Q

Throws _____________ if
index is negative or greater than or equal to
length().

A

StringIndexOutOfBoundsException

118
Q

charAt(int index):
Helps_____________ from the StringBuilder

A

retrieve a specific character

119
Q

charAt(int index)
Key Takeaways
✔ charAt(int index) retrieves a specific character from
StringBuilder.
✔ _________________ – should be between 0 and length()
- 1.
✔ Throws____________________if the
index is out of range.
✔ Useful for ______________ – extracting characters,
checking initials, etc.

A

Validates the index
StringIndexOutOfBoundsException
processing strings

120
Q

charAt(int index):
Useful for processing strings –______________,
________________, etc.

A

extracting characters
checking initials

121
Q

Changes the character at the specified index to
the given char c.

A

setCharAt(int index, char c)

122
Q

setCharAt(int index, char c)
Description: Changes the character at the specified index to
the given char c.
StringBuilder.setCharAt(int index, char c);
_______→ The position of the character to be replaced.
___→ The new character that will replace the existing
one at the_____.
This method modifies the _______ directly (inplace).
Throws StringIndexOutOfBoundsException if index is
negative or greater than or equal to length().
Usage: Useful for modifying ______________without modifying the whole string.

A

index
c
given index
StringBuilder
individual characters

123
Q

______________ modifies a specific character directly in StringBuilder.
✔ _____________– must be between 0 and length()
- 1.
__________________ – capitalizing letters,
modifying punctuation, fixing typos, etc.

A

setCharAt(int index, char c)
Validates the index
Useful for text formatting

124
Q

Returns a new String starting from start
index to the end.

A

substring(int start)

125
Q

substring(int start)
Description: Returns a new String starting from start
index to the end.
______________ = StringBuilder.substring(int start);
______ → The index from which the substring begins
(inclusive).
________ (does not modify
StringBuilder).
Throws StringIndexOutOfBoundsException if
start is negative or greater than length().

A

String subStr
start
Returns a new String

126
Q

___________ extracts part of the string starting
from start.

A

substring(int start)

127
Q

substring(int start, int end)
Throws StringIndexOutOfBoundsException if:
start is _______.
end is _______________.
start is______________.

A

negative
greater than length()
greater than end

128
Q

substring:
✔ Useful for extracting _____, _____, _____, ______
______, etc.

A

names
dates
words
file
extensions

129
Q

Converts the StringBuilder data into a
String.

A

toString()

130
Q

toString()
Description: Converts the StringBuilder data into a
String.
String str = ____________________
Returns a new String containing the same
sequence of characters as in StringBuilder.
Unlike StringBuilder, which is _______, String is
__________.
Useful when you need an immutable version of
the string, such as when returning the final result.
Usage: Since StringBuilder is mutable, this method is used when we need an immutable String representation.

A

StringBuilder.toString();
mutable
immutable

131
Q

___________ converts StringBuilder into an immutable
String.
✔ Useful when the ____________ should not be modified.
✔ __________ (e.g., storing data, printing results)
often require String instead of StringBuilder.
✔ Does not modify the StringBuilder, just returns a ______.

A

toString()
final result
String operations
new String

132
Q

____________ and ___________
have the same methods.

A

StringBuilder
StringBuffer

133
Q

the keydifference is that StringBuffer is _____________ (synchronized) but ____________, while
StringBuilder is ___________ but not___________

A

threadsafe
slower
faster
threadsafe.

134
Q

______________ does not use ___________,
making it more efficient in______________.

A

StringBuilder
synchronization
single-threaded environments

135
Q

____________ uses _______ methods,
making it ____________.

A

StringBuffer
synchronized
thread-safe but slower

136
Q

Since String is immutable, converting it
to StringBuffer or StringBuilder allows
__________.

A

modifications

137
Q

Since StringBuffer and StringBuilder are
mutable, converting them to String gives an
_______________.

A

immutable version

138
Q

Use StringBuffer and StringBuilder when
____________ are needed.

A

modifications

139
Q

Use ________ to make strings immutable before
storing them.

A

toString()

140
Q

In Java, working with different string types—String,
StringBuffer, and StringBuilder—is important for handling ______________.

A

text efficiently