#includeciostream> using namespace std; struct Employee int Id; char Name [25]; int Age; long Salary; 91 10 11 void Display(struct Employee); 13 14 12 int main() { Employee E - (1, "Kumar",45000, 29}; Display (E); cout<<'\n'; 15 16 17 18 19 CAUsers\ Daviemel\OneDrive\Desktop\P2 20 void Display(struct Employee E) 21 22 23 cout « "\n\nEmployee Id : " <« E.Id; cout « "\nEmployee Name : cout « "\nEmployee Age : cout « "\nEmployee Salary : <« E.Name; « E.Age; <« E.Salary; Employee Id : 1 Employee Name: Kumar Employee Age: 29 Employee Salary : 45000 24 25 26 27 28 29 O Correct Incorrect 1234

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter3: Using Methods, Classes, And Objects
Section: Chapter Questions
Problem 12RQ
icon
Related questions
Question

 Study the program carefully. State whether the program base on the output is CORRECT or INCORRECT

#includeciostream>
using namespace std;
struct Employee
int Id;
char Name [25];
int Age;
long Salary;
};
11
12
13
void Display(struct Employee);
int main()
{
Employee E - (1,"Kumar",45000, 29};
Display (E);
cout<<'\n';
14
15
16
17
18
19
20
CAUsers\Daviemel\OneDrive\Desktop\P2
21
void Display(struct Employee E)
{
cout « "\n\nEmployee Id :
cout « "\nEmployee Name : " « E.Name;
cout « "\nEmployee Age :
cout « "\nEmployee Salary:
« E.Id;
23
24
Employee Id : 1
Employee Name : Kumar
Employee Age : 29
Employee Salary : 45000
« E.Age;
<« E.Salary;
25
26
27
28
29
O Correct
O Incorrect
Transcribed Image Text:#includeciostream> using namespace std; struct Employee int Id; char Name [25]; int Age; long Salary; }; 11 12 13 void Display(struct Employee); int main() { Employee E - (1,"Kumar",45000, 29}; Display (E); cout<<'\n'; 14 15 16 17 18 19 20 CAUsers\Daviemel\OneDrive\Desktop\P2 21 void Display(struct Employee E) { cout « "\n\nEmployee Id : cout « "\nEmployee Name : " « E.Name; cout « "\nEmployee Age : cout « "\nEmployee Salary: « E.Id; 23 24 Employee Id : 1 Employee Name : Kumar Employee Age : 29 Employee Salary : 45000 « E.Age; <« E.Salary; 25 26 27 28 29 O Correct O Incorrect
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT