Arrange the following steps in sequence in order to calculate the probability of an event through Naïve Bayes classifier. I. Find the likelihood probability with each attribute for each class. II. Calculate the prior probability for given class labels. III. Put these values in Bayes formula and calculate posterior probability. IV. See which class has a higher probability, given the input belongs to the higher probability class.

Correct Answer: II → I → III → IV
The sequence in which Naïve Bayes calculates the probability of an event is: II. Calculate the prior probability for given class labels. I. Find the likelihood probability with each attribute for each class. III. Put these values in Bayes formula and calculate posterior probability. IV. See which class has a higher probability, given the input belongs to the higher probability class.