I applied online. The process took 2 weeks. I interviewed at VentureDive (Karāchi) in May 2019
Interview
First i got a phone call just to proceed my application. then i shortlisted for a technical interview on Skype. The behavior of the interviewer was a little bossy not cooperative but i think it was okay because it was Ramadan, so can't blame someone for the mood in Ramadan :)
he showed some code and asked what will be the result
Interview questions [4]
Question 1
class A:
def __str__(self):
return '1'
class B(A):
def __init__(self):
super().__init__()
class C(B):
def __init__(self):
super().__init__()
def main():
obj1 = B()
obj2 = A()
obj3 = C()
print(obj1, obj2,obj3)
main()