Deloitte
Details
Job Status
Full Time (Employment + Internship Mandatory)
Criteria
| Study | Cutoff |
|---|---|
| X | % |
| XII | % |
| UG | 6.5 GPA |
Round 1
03/09/23
There were 4 sections:
- English Comprehension
- Aptitude
- Technical
- Coding (2)
Coding Questions
- Matching Last Character: Given a list of words and a character to match, print the sorted position (1-index) of the word with the other words if the last letter of the word matches with the character to match.
def solve(inputStr, searchCh):
words = inputStr.split()
words.sort()
for i in range(len(words)):
if words[i][-1] == searchCh:
print(words[i], i + 1)
- Largest Digit in a Number: Given a number, return the largest digit in the number.