One would imagine, that dropping an index would take no time at all – like dropping a table.
But most ALTERs actually cause the table to be recreated in a temporary table and then renamed.
1 ALTER is faster than 2 ALTERs, because you get away with recreating the table only once.
Really important, if your table contains a billion rows.
By the way, there was already a question about this ;)