Which access specifier is used for constructors in C++?AprivateBpublicCprotectedDall the aboveAnswer: B. public Read Explanation: The public keyword is used to create public members (data and functions). The public members are accessible from any part of the program. Read more in App