0
0
Goprogramming~5 mins

Slice length and capacity in Go - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the length of a slice represent in Go?
The length of a slice is the number of elements it currently holds. It tells you how many items you can access safely.
Click to reveal answer
beginner
What does the capacity of a slice represent in Go?
The capacity of a slice is the total number of elements the slice can hold in its underlying array before it needs to allocate more memory.
Click to reveal answer
beginner
How do you get the length and capacity of a slice named s in Go?
Use the built-in functions: len(s) gives the length, and cap(s) gives the capacity.
Click to reveal answer
intermediate
If you create a slice with make([]int, 3, 5), what are its length and capacity?
Length is 3 because you asked for 3 elements initially. Capacity is 5 because the underlying array can hold up to 5 elements before resizing.
Click to reveal answer
intermediate
What happens to the capacity of a slice when you append elements beyond its current capacity?
Go automatically creates a new underlying array with larger capacity, copies the existing elements, and appends the new ones. The capacity grows, usually doubling to reduce future allocations.
Click to reveal answer
What does len(s) return for a slice s in Go?
AThe size in bytes of the slice
BThe number of elements currently in the slice
CThe total capacity of the slice
DThe memory address of the slice
What does cap(s) return for a slice s in Go?
AThe total capacity of the slice's underlying array
BThe number of elements currently in the slice
CThe length of the slice plus one
DThe number of bytes used by the slice
If you create a slice with make([]int, 4, 10), what is the length and capacity?
ALength 10, Capacity 4
BLength 10, Capacity 10
CLength 4, Capacity 4
DLength 4, Capacity 10
What happens when you append an element to a slice that is already at full capacity?
AThe program crashes
BThe slice silently ignores the append
CGo allocates a new underlying array with larger capacity and copies elements
DThe slice length decreases
Which built-in function do you use to find the capacity of a slice?
Acap()
Blen()
Csize()
Dcapacity()
Explain the difference between the length and capacity of a slice in Go.
Think about how many elements you can use now versus how many you can add before resizing.
You got /4 concepts.
    Describe what happens internally when you append an element to a slice that has reached its capacity.
    Imagine your backpack is full and you get a bigger one to carry more stuff.
    You got /4 concepts.