MENU
Question -

Define a class Candidate in C++ with the
following description:
Private members
• A data member RNo(Registration Number) of type long
• A data member Name of type String
• A data member Score of type float
• A data member Remarks of type String
•  A member function AssignRem() to assign the remarks as per the score obtained by the candidate.
•   Scor6 range and the respective remarks are shown as follow:
Score           Remarks
>=50           Selected
<50             Not Selected
Public members
• A function ENTERQ to allow user to enter values for RNo, Names, Score and call function AssignRem() to assign the remarks.
• A function display() to allow user to view the content of all data members.



Answer -

class Candidate
 {
 long RNo; 
char Name[40]; 
float Score;
 [1]
 char Remarks[20] 
void AssignRem()
 if (Score>=50)    [1]
 strcpy(Remarks, "Selected"); else
 strcpy(Remarks,''Not Selected");
 }
 public: 
void Enter()
 { [1]
 cout<<''Enter the values for RNo, Name, Score";
 cin>>RNo;
 gets(Name);
cin>>Score;
 AssignRem( );    [1]
 }
 void Display( )
 {
 cout<
 puts(Name); puts(Remarks);
 }
 }; [1]

Comment(S)

Show all Coment

Leave a Comment

Free - Previous Years Question Papers
×