GlobalLogic Interview Questions

GlobalLogic Interview Guides

Click or hover over a slice to explore questions for that topic.
Machine Learning
(41)
Data Structures & Algorithms
(34)
SQL
(20)
Probability
(17)
Statistics
(12)

GlobalLogic Interview Questions

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

QuestionTopicDifficulty
Data Structures & Algorithms
Easy

Given two strings, string1 and string2, write a function str_map to determine if there exists a one-to-one correspondence (bijection) between the characters of string1 and string2.

For the two strings, our correspondence must be between characters in the same position/index.

Example 1:

Input:

string1 = 'qwe'
string2 = 'asd'

string_map(string1, string2) == True

# q = a, w = s, and e = d

Example 2:

Input:

string1 = 'donut'
string2 = 'fatty'

string_map(string1, string2) == False
# cannot map two distinct characters to two equal characters

Example 3:

Input:

string1 = 'enemy'
string2 = 'enemy'

string_map(string1, string2) == True
# there exists a one-to-one correspondence between equivalent strings

Example 4:

Input:

string1 = 'enemy'
string2 = 'ymene'

string_map(string1, string2) == False
# since our correspondence must be between characters of the same index, this case returns 'False' as we must map e = y AND e = e
SQL
Easy
SQL
Medium
Loading pricing options

View all Globallogic questions

Challenge

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

GlobalLogic Salaries by Position

Product Manager*
$128K
Product Manager
Median: $128K
Mean (Average): $128K
Data points: 1
$44K
$138K
Software Engineer
Median: $72K
Mean (Average): $82K
Data points: 65
Data Engineer*
$50K
Data Engineer
Median: $50K
Mean (Average): $50K
Data points: 1
$44K
$48K
ML Engineer
Median: $45K
Mean (Average): $46K
Data points: 4

Most data science positions fall under different position titles depending on the actual role.

From the graph we can see that on average the Product Manager role pays the most with a $128,000 base salary while the ML Engineer role on average pays the least with a $45,600 base salary.

Discussion & Interview Experiences

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