Ho presentato la mia candidatura online. La procedura ha richiesto 2 settimane. Ho sostenuto un colloquio presso VentureDive (Karachi) nel mese di mag 2019
Colloquio
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
Domande di colloquio [4]
Domanda 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()