Q8
Single choice
LiveData.postValue() and LiveData.setValue() methods have some differences. So if you have a following code executed in the main thread:
liveData.postValue("a");
liveData.setValue("b");
What will be the correct statement?