Based on the following pseudo-codes, if the value of num1 is 6 and the value of num2 is 8, then which of the following is the final output?

if (num1 is an even number) then
{
If (num1 is a positive number and num2 is an odd number) then
{
Display “Path 1”
}
If (num2 is an even number and num1 is larger than 3) then
{
Display “Path 2”
}
}
Else
{
Display “No path”
}