Passa al contenutoPassa al piè di pagina
  • Lavori
  • Aziende
  • Stipendi
  • Per le aziende

      Migliora la tua carriera

      Scopri le tue potenzialità di guadagno, trova lavori da sogno e condividi approfondimenti su lavoro e vita privata in forma anonima.

      employer cover photo
      employer logo
      employer logo

      UpLift (CA)

      Questa è la tua azienda?

      Circa
      Recensioni
      Stipendi e benefit
      Lavori
      Colloqui
      Colloqui
      Ricerche correlate: Recensioni su UpLift (CA) | Offerte di lavoro di UpLift (CA) | Stipendi di UpLift (CA) | Benefit di UpLift (CA)
      Colloqui di UpLift (CA)Colloqui per Data Engineer presso UpLift (CA)Colloquio di UpLift (CA)


      Glassdoor

      • Chi siamo
      • Contattaci

      Aziende

      • Account Business gratuito
      • Spazio per le aziende
      • Blog per le aziende

      Informazioni

      • Aiuto
      • Linee guida
      • Condizioni d'uso
      • Privacy e scelte pubblicitarie
      • Non vendere né condividere le mie informazioni
      • Strumento per l'accettazione dei cookie

      Lavora con noi

      • Inserzionisti
      • Carriere
      Scarica l'app

      • Cerca:
      • Aziende
      • Lavori
      • Località

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls" e il relativo logo sono marchi registrati di Glassdoor LLC.

      Aziende seguite

      Non lasciarti sfuggire opportunità e informazioni privilegiate seguendo le aziende dove vorresti lavorare.

      Ricerche di lavoro

      Ricevi suggerimenti e aggiornamenti personalizzati avviando le tue ricerche.

      Colloquio per Data Engineer

      29 apr 2023
      Candidato anonimo a colloquio
      Toronto, ON
      Nessuna offerta
      Esperienza positiva
      Colloquio nella media

      Candidatura

      Ho presentato la mia candidatura online. La procedura ha richiesto 3 settimane. Ho sostenuto un colloquio presso UpLift (CA) (Toronto, ON) nel mese di apr 2023

      Colloquio

      The interview process consisted of 5 phases, I only got to phase 3. Phase 1: Phone Screen Phase 2: Hiring Manager Interview Phase 3: Coding Challenge Phase 4: Panel Phase 5: Cultural fit

      Domande di colloquio [1]

      Domanda 1

      Phone Screen 1. Asked general questions about me, what do I know about the company? 2. Provided information about the company 3. Asked about projects I have worked on before. 4. Technical screening from hiring team, rapid fire questions a. In a relational database, which operator is used to get the unique values of a column Ans: DISTINCT b. Which process would benefit from columnar data. MCQ: A. OLTP B. OLAP C. Quick read Ans: B (OLAP) - think data warehouse and analytics. Can ignore whole columns that aren’t needed. c. In python, which data structure consists of a key that can be looked up. Ans: dictionary d. Given an ordered list, what would be the time complexity of doing binary search on it? Ans: O(log n) - keyword is “ordered” here. Hiring Manager Interview 1. What am I looking for in my next role? 2. Provided information about company and team. Talked about the perks of being part of that team in particular. Lots of learning opportunities which is great. 3. Asked about a project I was proud of/successful in. a. Followed up with technical questions on it, for example, why did you choose to architect it that way versus another way. 4. I talked a lot about bronze and silver tables (medallion architecture in Databricks) a. Followed up with technical question: should a bronze table be read optimized or write optimized? Ans: write optimized - we are capturing large volumes of data from potentially multiple sources. 5. Asked about if I am comfortable with technologies like AWS, databricks, python, spark 6. Asked if my vanilla python skills are good? (vanilla as in not pyspark...or similar) Coding Challenge 1. Quick introduction then presented me with the problem. 2. Problem snippet Q1: Overall Goal: You want to pre-process this data such that you can look up a loan_id and transaction_id and efficiently get the latest data returned Context: The data is unique by loan_id-transaction_date Assumptions: for a loan_id, a row that comes later has the most update data, previous row can be ignored For example if we look up loan_id=123 and transaction_date='2022-12-01', we get 100.0 and 'def' back. file = [ (123, 50.0, '2022-11-01', 'xyz'), (234, 70.0, '2022-10-01', 'abc'), (123, 100.0, '2022-12-01', 'def'), (234, 50.0, '2022-11-01', 'xyz'), (567, 30.0, '2022-09-01', 'abc'), (123, 70.0, '2022-11-01', 'xyz'), ] # Q2: Which (primitive) data structure would you use to pre-process the data above to make it efficient to retrieve a certain loan_id on a certain date? Ans: dictionary (because of O(1) lookup) # Q3: Let's assume that any loan_id and transaction_date desired are present in the data, how does this change your approach or simplify the problem? Ans: This simplifies the problem because we can directly lookup the key we want # Q4: Let's assume that the above assumption is NOT true, that is we might need to lookup dates that are not present in the data and we want to find the closest date seen so far. For example if we look up loan_id=123 and transaction_date='2022-11-15', we get 70.0 and 'xyz' because the closest lower-bound date is '2022-11-01'. In the data, there are two records for that loan_id and transaction_date but we take the most recent one (the lower one in the data) Let's actually get to coding it now import pytest def file_preprocessing(file): transaction_dict = {} loan_date_dict = {} for loan_id, amount, transaction_date, application_id in file: if loan_id in transaction_dict: transaction_dict[loan_id][transaction_date] = (amount, application_id) loan_date_dict[loan_id].add(transaction_date) else: transaction_dict[loan_id] = {transaction_date: (amount, application_id)} loan_date_dict[loan_id] = {transaction_date} return transaction_dict, loan_date_dict def get_transaction(loan_id, transaction_date, transaction_dict, loan_date_dict): closest_date = max({tr_d for tr_d in loan_date_dict[loan_id] if tr_d <= transaction_date}) return transaction_dict[loan_id][closest_date] def test_file_processing(): assert len(file_preprocessing(file)) == 3 def test_file_processing_type(): assert isinstance(file_preprocessing(file), dict) def test_file_processing_1(): assert len(file_preprocessing(file)[123]) == 2 def test_get_transaction(): # did not reach this part pass if __name__ == "__main__": pytest.main()
      Rispondi alla domanda
      3

      Altre recensioni di colloqui per Data Engineer presso UpLift (CA)

      Colloquio per Data Engineer

      19 nov 2021
      Candidato anonimo a colloquio
      Nessuna offerta
      Esperienza negativa
      Colloquio nella media

      Candidatura

      Ho presentato la mia candidatura online. Ho sostenuto un colloquio presso UpLift (CA)

      Colloquio

      I recently interviewed with Uplift for Data Engineer position. The recruiter call went really well with 5 short answer type technical questions. Later on I had a technical round with one of the team members for 45 minutes. Questions were normal based on python and sql but the interviewer was pretty bad and he expects us to answer what he has in his mind. I felt that he doesn't have enough knowledge on few things, don't know how he is working in that company.

      Domande di colloquio [1]

      Domanda 1

      python and sql questions related to joins
      Rispondi alla domanda
      1

      Colloquio per Data Engineer

      19 giu 2022
      Candidato anonimo a colloquio
      Nessuna offerta
      Esperienza negativa
      Colloquio nella media

      Candidatura

      Ho presentato la mia candidatura online. Ho sostenuto un colloquio presso UpLift (CA) nel mese di gen 2020

      Colloquio

      It was not too hard or too easy. Basic questions about your interests, experiences and knowledge. The interviewers are nice. The process was smooth and convenient. Very nice people. Very nice people.

      Domande di colloquio [1]

      Domanda 1

      Some basic questions about your experiences.
      Rispondi alla domanda

      Le migliori aziende per "stipendio e benefit" vicino a te

      avatar
      Standard Chartered Bank
      3.5★Stipendio e benefit
      avatar
      Barclays
      3.8★Stipendio e benefit
      avatar
      Absa
      3.7★Stipendio e benefit
      avatar
      Standard Bank Group
      4.1★Stipendio e benefit