In how many ways can 4 cards be drawn randomly from a pack of 52 cards such that there are at least 2 kings and at least 1 queen among them?

You're overcounting in the second method.

Label the four kings $K_1, K_2, K_3, K_4$. In the second method, you will count the case in which you pick an arbitrary queen $Q$ followed by $K_i$ followed by $K_j$ separate from the case in which you pick a queen $Q$ followed by $K_j$ followed by $K_i$. However, these two outcomes should be treated as the same outcome.


Since in your second method, for example you have the case 3 kings 1 queen counted three times and 2 kings 2 queens counted twice.

Since assume that ${4\choose2}$ picked up the king of spades and the king of hearts, and then the ${49\choose1}$ picked up the king of diamonds. $k_s,k_h,q,k_d$ this is one way of choosing your cards. But this method counts $k_d,k_h,q,k_s$ as another way and this is wrong they should only be counted once.

On the other hand, in your first method when you use ${4\choose3}$ for the case where there are 3 kings, you're being sure that all the equivalent ways are counted once.

Now why they are 68?

${4\choose3}×2×4 + {4\choose 2}×{4\choose 2}=32+36=68$

${4\choose 3}$ for the case we have 3 kings, $2$, because we want to cancel 2 ways (i.e. if we have $k_1,k_2,q,k_3$ we want to cancel $k_1,k_3,q,k_2$ and $k_3,k_2,q,k_1$ since they must be counted only once) and the $4$ because we have 4 possibilities for the queen.

Simlarly for the queens, ${4\choose 2}$ for the case we have 2 queens, and another ${4\choose 2}$ because we have ${4\choose 2}=6$ possibilities of the first 2 kings. (Note that here we don't multiply by $2$ here since if we have $k,k,q_1,q_2$ we only want to cancel only 1 equivalent case and that is $k,k,q_2,q_1$)