Coforge Interview Questions

Coforge Interview Guides

Click or hover over a slice to explore questions for that topic.
Data Structures & Algorithms
(91)
SQL
(71)
Machine Learning
(65)
Probability
(31)
Statistics
(25)

Coforge Interview Questions

Practice for the Coforge interview with these recently asked interview questions.

QuestionTopicDifficulty
Data Structures & Algorithms
Medium

Given a list of strings, write a function, sorting from scratch to sort the list in ascending alphabetical order.

Notes: - Do NOT use the built-in sorted function - Return the new sorted list, rather than modifying the list in-place

Bonus: Have your solution be O(nlog(n))O(n log(n)).

Example:

Input:

array = ["apple", "cat", "banana", "zoo", "football"]

Output:

def sorting(array) -> ["apple", "banana", "cat", "football", "zoo"]
Data Pipelines
Medium
Data Structures & Algorithms
Easy
Loading pricing options

View all Coforge questions

Challenge

Check your skills...
How prepared are you for working at Coforge?

Discussion & Interview Experiences

?
There are no comments yet. Start the conversation by leaving a comment.