48. Which of the below namespace
declaration is correct?
A.
namespace ORA:
B.
namespace 1_RA;
C.
namespace ORA;
D.
namespace ORA_#;
Answers
Answered by
1
Option c is correct......
I HOPE IT WILL HELP YOU....
PLEASE MARK ME AS BRILLIANT AND PLZ FOLLOW ME I WILL FOLLOW YOU BACK
Answered by
0
Answer: Option C is correct.
Namespace: It is a feature in C++. This feature enables to provide scope to the identifiers inside it.
Step-by-step explanation:
- A is false because the ending is not done with a semicolon
- B is false because the name of the identifier cannot start with a number
- C is true because all aspects of naming as well as the ending of the statement is in, correct syntax
- D is false because the identifier is not named in the correct manner, the user used a special character.
Similar questions