I am going to send a input to Arduino through serial communication. That variable should be stored in a variable. That data which I send through serial communication should be compared to an analog input value and if both becomes equal, then some action should be performed.
The data sent to Arduino through serial communication is only sent once. So, the program should store the value and therefore compare with the analog input value. What should I use, String or string conversion?
Your analog data using analogRead() will be an int in the range of 0-1023 (though depending on your sensor, it could be much less than that but those are the min/max values). So your target value sent over the serial port can just be stored in an int variable using parseInt().