A progran needs to gain access to the public attributes of
class lcl_course. Identify the statenents that are valid.
class lcl_course definition.
public section.
data: name(15) type c value 'ABAPObjects101
'.
class-data price type p value 100.
private section.
data: category(10) type C value 'Objects'.
endclass.
data: course1 type ref to lcl_course,
course_name type string,
course_price type p,
course_category type string.
Create Object course1.
(More than one answer is correct)
Selecione uma ou mais das seguintes: