Deloitte

Details

Job Status

Full Time (Employment + Internship Mandatory)

Criteria

StudyCutoff
X%
XII%
UG6.5 GPA

Round 1

03/09/23

There were 4 sections:

  1. English Comprehension
  2. Aptitude
  3. Technical
  4. Coding (2)

Coding Questions

  1. 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)

  1. Largest Digit in a Number: Given a number, return the largest digit in the number.