Programming (Year 12)
Data Structures
What will be the value of 'x' after executing the following code: x = [1, 2, 3]; x.append(4)?
[1, 2, 3]
[1, 2, 3, 4]
4
Error
Next