Hi Priyatham - simple data types like flag, number, date etc should have no discernible difference, so you needn't worry about those.
Types that have the potential to be very large, eg text, collection, binary, image etc could have an impact, depending on their size and, significantly, how you use them. For example, when passing a collection around you are creating multiple instances, and that could be a memory drain if the collection was huge. Basic advice if dealing with very large data is to not assume BP will soak up anything you give it, and maybe think about whether using a global data item could avoid the need for page input/outputs, and whether housekeeping within your process/object (eg wiping down a collection after use) would be helpful.