Goldman Sachs Aptitude Test Questions and Answers
1 / 1
Which of the choices is true for the mentioned declaration?
const char *p;
and
char * const p;
Choose one of them:
AYou can't change the character in both
BIn first case, you can't change the character and second case you can’t change the pointer
CYou can't change the pointer in both
DIn first case you can't change the pointer and in second case you can't change the character
ENone of these
Answer: Option B
Explanation:Here is no explanation for this answer
ShortCut By :: sudhanIn C programming language, *p represents the value stored in a pointer and p represents the address of the value, is referred as a pointer. const char* and char const* says that the pointer can point to a constant char and value of char pointed by this pointer cannot be changed.
const char *ptr : This is a pointer to a constant character. You cannot change the value pointed by ptr, but you can change the pointer itself. “const char *” is a (non-const) pointer to a const char.
char *const ptr : This is a constant pointer to non-constant character. You cannot change the pointer p, but can change the value pointed by ptr.
Submit Your Solution
Tags: TCS Accenture Amazon Capgemini Cognizant Goldman Sachs IBM L&T Infotech Happiest Minds Wipro Tech Mahindra
Goldman Sachs Aptitude Test Questions and answers
Goldman Sachs Aptitude Test have 66 MCQs questions and for which alloted tiime is 90 Mins. At this page of q4interview you can practice question for Goldman Sachs drive, level of the questions are same. You should answer very carefully as for reach wrong answers you will get -2 marks, however for each correct answer you will get +5 marks. In this test there will be total 6 sections:- Numerical Computations
- Numerical Reasoning
- Abstract Reasoning
- Diagrammatic Reasoning
- Logical Reasoning
- Verbal