In the name of ALLAH, the most beneficient, the most merciful

Object Oriented Programming (CS304)

Question (select most suitable option)

  Consider the code below,
class class1{
protected:
int i;
};
class class2 : private class1 {
};

Then int member i of class1 is ________ in class2.
public
protected
private
None of the given