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

      KLA

      Azienda coinvolta

      Circa
      Recensioni
      Stipendi e benefit
      Lavori
      Colloqui
      Colloqui
      Ricerche correlate: Recensioni su KLA | Offerte di lavoro di KLA | Stipendi di KLA | Benefit di KLA
      Colloqui di KLAColloqui per QA Automation Engineer presso KLAColloquio di KLA


      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.

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

      avatar
      Samsung Electronics
      3.7★Stipendio e benefit
      avatar
      Franklin Electric
      3.5★Stipendio e benefit
      avatar
      ZTE
      3.6★Stipendio e benefit

      Colloquio per QA Automation Engineer

      11 ott 2024
      Candidato anonimo a colloquio
      Nessuna offerta
      Esperienza positiva
      Colloquio nella media

      Candidatura

      Ho presentato la mia candidatura tramite un'altra fonte. Ho sostenuto un colloquio presso KLA nel mese di ott 2024

      Colloquio

      The interview began with a brief introduction, followed by three technical questions: designing a fitness tracking class, validating password proximity errors, and exploring problem-solving strategies. The session concluded with a Q&A segment.

      Domande di colloquio [1]

      Domanda 1

      Q1: Class Definition Write a Python class MyFitness that includes two public methods: add_food(username, kind_of_food, amount) Parameters: username: A string representing the user's name. kind_of_food: Can be either "protein", "fat", or "carbs". amount: The quantity of the specified food in grams. The method calculates the calories based on the type of food added: Protein: 1 gram = 40 calories Fat: 1 gram = 70 calories Carbohydrates: 1 gram = 140 calories The method updates the user's calorie and macro information. show_information() This method displays the current food intake information for all users in JSON format. Example output: json Copy code [ {"username": "user1", "protein": 140, "fat": 150, "carbs": 170, "calories": 300}, {"username": "user2", "protein": 150, "fat": 150, "carbs": 70, "calories": 290} ] Q2: Password Validation Function Write a boolean function is_password_valid(passfromDb, passfromWeb) that checks whether the password entered via the web (passfromWeb) can be accepted based on the following condition: The passwords must be exactly the same except for one character. The mistake in the web password can only occur if the character in passfromWeb is a neighboring key to the corresponding character in passfromDb on a standard QWERTY keyboard. Example: python Copy code passfromDb = "absd" passfromWeb = "ansd" In this case, the function would return True because 'n' is a neighboring key to 'b' on the keyboard.
      Rispondi alla domanda