Answer the given subquestions based on the above information.
The given pseudocode is executed using a dataset having the same fields as the "Words" dataset, and contains the following words:
"IIT Madras has launched the world's first ever online degree and diploma courses in programming and data science. Anyone who has passed class 12th examination can enrol in the online course. There are three levels in the online degree program. There are total of 31 courses. The completion time is between three to six years. Learners will have to complete the online courses and assignments, quizzes and exams to gain 116 credits. The online application process for next batch is open now."
Assume that while moving the rows from one table to another, the rows are always arranged in the increasing order of sequence number from top to bottom.
```
count = 0, i = 0
while(Table 1 has more rows) {
Read the first row X from Table 1
if(i == 0) {
Move X to Table 2
i = 1
}
else {
Move X to Table 3
}
if(X.Word ends with full stop) {
i = 0
}
}
```
Question
Consider the Table 2 created from the previous question. At the end of execution, what will the value of `countMax` and `occurMax` be?
```
countMax = 0, occurMax = "None"
while(Table 2 has more rows) {
count = 1
Read the first row Y from Table 2
Move Y to Table 4
while(Table 2 has more rows) {
Read the first row Z from Table 2
if(Y.Word == Z.Word) {
count = count + 1
Move Z to Table 4
}
else {
Move Z to Table 5
}
}
Move all the rows from Table 5 to Table 2
if(count >= countMax) {
countMax = count
occurMax = Y.Word
}
}
```