Only got email from their talent acquisition to a Hireview link.
Take less than 3 days to get the feedback email from them. You will be given 5 days to complete the assignment.
Interview questions [1]
Question 1
Will give you x number of route. Print each of the route if the route is cycle/intersection/ok. No recursion allowed as one of the requirements. Therefore, your function should be optimise for performance.
I applied online. The process took 2 weeks. I interviewed at bp (Pune) in Jan 2025
Interview
Applied online, received coding assessment, I have completed it with all test cases getting passed, still received an email of rejection. There is no feedback and no streamline process.
Worst experience
Interview questions [1]
Question 1
Convert interactions to linkedList and identify if input nodes are cyclic or intersection or neither. Input/output is something we have to handle
I applied online. I interviewed at bp (Kuala Lumpur) in Aug 2024
Interview
First round is online assessment. Th email that I received sounds like would be video interview instead but after opening the portal, HireVue, it shows a code assessment page instead.
Received assessment link in a day.
Interview questions [1]
Question 1
Technical assessment on algorithm:
SSL (Singly Linked List) that has intersection return true, else false, or if cycle throw error 'Error'.
INPUT: (linked nodes)
a->b
b->c
c->d
d->e
g->b
h->j
j->f
explanation: so node a linked to b, b linked to c...
INPUT (nodes)
a,h,j
b,d,e
h,a,
a,h,
g,b
explanation: a and h and j each node traversing the SSL, if a,h,j combo meet at some intersection.