Solved

Consider the Following Statements: StudentType1 Student1, Student2;

Question 40

Multiple Choice

Consider the following statements: Consider the following statements:   studentType1 student1, student2; Struct studentType2 StudentType2 student3, student4; Which of the following statements is valid in C++?   A)  student2 = student3; B)  student1 = student4; C)  student2.ID = ID; D)  student1.ID = student3.ID; studentType1 student1, student2;
Struct studentType2
StudentType2 student3, student4;
Which of the following statements is valid in C++?
Consider the following statements:   studentType1 student1, student2; Struct studentType2 StudentType2 student3, student4; Which of the following statements is valid in C++?   A)  student2 = student3; B)  student1 = student4; C)  student2.ID = ID; D)  student1.ID = student3.ID;


A) student2 = student3;
B) student1 = student4;
C) student2.ID = ID;
D) student1.ID = student3.ID;

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions