Question: Using Pandas, we load a data set from Kaggle, as structured in the image below. Which command will return the total number of survivors?
- `sum(titanic['Survived'])`
 - `[x for x in titanic['Survived'] if x == 1]`
 - `len(titanic["Survived"])`
 - `sum(titanic['Survived']==0)`
 
Answer: The correct answer of the above question is Option A:`sum(titanic['Survived'])`