No Response from RFID mfrc522 in serial monitor

I am interfacing mfrc522 rfid module with my Arduino uno I have used the pin configuration as suggested in the dumpinfo code, example code that comes with library!

I am getting this in serial monitor

Firmware Version: 0x92 = v2.0
Scan PICC to see UID, SAK, type, and data blocks...

and nothing is happening after this when I put my rfid card, I used multiple cards, checked connections many times but still no result. any help ?

Hello Rohit,
how did you connect all PINs to your UNO board?

This works for me:
RST/Reset 9
SPI SS 10
SPI MOSI 11
SPI MISO 12
SPI SCK 13

Did you define correct PINs for RST and SS?
#define RST_PIN 9
#define SS_PIN 10
MFRC522 mfrc522(SS_PIN, RST_PIN);