A developer is writing a routine to generate unique identifiers for university staff members.
The following variables are defined:
department←’Biophysics’ \text{department} \leftarrow \text{'Biophysics'} department←’Biophysics’ surname←’Choudhury’ \text{surname} \leftarrow \text{'Choudhury'} surname←’Choudhury’The identifier is generated using the expression:
accessCode←SUBSTRING(3,4,department)+SUBSTRING(0,3,surname) \text{accessCode} \leftarrow \text{SUBSTRING}(3, 4, \text{department}) + \text{SUBSTRING}(0, 3, \text{surname}) accessCode←SUBSTRING(3,4,department)+SUBSTRING(0,3,surname)Assume that:
What is the resulting value of accessCode\text{accessCode}accessCode?
′physCho′'physCho'′physCho′
′ophyCho′'ophyCho'′ophyCho′
′physChou′'physChou'′physChou′
′Chophys′'Chophys'′Chophys′