class Product {
public:
   Product(); 
   Product(string n, double p, int s);
   void read();
   string get_name() const;
   double get_price() const;
   void print() const;
private:
   string name;
   double price;
   int score;
};
    
    and an object p
      of this class, constructed in main function. Mark the correct/incorrect
      statements in the body of main function.