Do interrupt , interrupts serial.print()

I want to know that wether interupt is skipped while serial printing or not ?

Which interrupt? The one involved in actually shifting the data out is not skipped. Your encoder interrupt is a higher priority interrupt, so it won't be skipped, either. It might be slightly delayed (while one character is handled by the serial interrupt), but not skipped.