Ir al contenidoIr al pie de página
  • Empleos
  • Empresas
  • Sueldos
  • Para empresas

      Impulsa tu carrera profesional

      Averigua cuánto podrías ganar, encuentra el empleo perfecto y comparte información sobre tu vida laboral y personal de forma anónima.

      employer cover photo
      employer logo
      employer logo

      Zessta Software Services

      Empresa activa

      Información
      Opiniones
      Sueldos y beneficios
      Empleos
      Entrevistas
      Entrevistas
      Búsquedas relacionadas: Opiniones sobre Zessta Software Services | Ofertas de empleos en Zessta Software Services | Sueldos en Zessta Software Services | Beneficios en Zessta Software Services
      Entrevistas de Zessta Software ServicesEntrevistas para el puesto de Associate Software Engineer en Zessta Software ServicesEntrevista de Zessta Software Services


      Glassdoor

      • Acerca de
      • Premios
      • Blog
      • Contacto

      Empresas

      • Cuenta gratuita de empresa
      • Centro de empresas

      Información

      • Ayuda
      • Normas
      • Condiciones de uso
      • Privacidad y opciones de anuncios
      • No vender ni compartir mi información
      • Herramienta de consentimiento de cookies

      Trabaja con nosotros

      • Anunciantes
      • Empleo
      Descargar aplicación

      • Buscar por:
      • Empresas
      • Empleos
      • Ubicaciones

      Copyright © 2008-2026. Glassdoor LLC. «Glassdoor», «Worklife Pro», «Bowls» y sus logotipos son marcas comerciales registradas de Glassdoor LLC.

      Empresas seguidas

      Sigue a tus empresas favoritas para estar al tanto de las últimas oportunidades y disponer de información de primera mano.

      Búsquedas de empleo

      Recibe recomendaciones y actualizaciones personalizadas al iniciar tu búsqueda.

      Entrevista de Associate Software Engineer

      24 ene 2022
      Candidato de entrevista anónimo
      Bhīmavaram
      Sin oferta
      Experiencia neutra
      Entrevista normal

      Solicitud

      Solicité el puesto a través de la escuela superior o la universidad. El proceso duró 2 semanas. Acudí a una entrevista en Zessta Software Services (Bhīmavaram) en nov 2021

      Entrevista

      First there will be a written test and after qualifying in that there will be a technical round in technical round asked about the technologies mentioned in the resume and abou project

      Otras opiniones sobre las entrevistas para el puesto de Associate Software Engineer en Zessta Software Services

      Entrevista de Associate Software Engineer

      2 dic 2024
      Candidato de entrevista anónimo
      Hyderabad
      Sin oferta
      Experiencia positiva
      Entrevista normal

      Solicitud

      Solicité el puesto a través de la escuela superior o la universidad. Acudí a una entrevista en Zessta Software Services (Hyderabad) en dic 2024

      Entrevista

      on campus , 3 round , first round 3 hours on zessta s own test platform ,online test (aptitude 10% weightage + coding 3 question 90% weightage+ logical 10%) , 2nd round technical , 3rd round hr

      Preguntas de entrevista [4]

      Pregunta 1

      You are tasked with building a file deduplication system that can efficiently handle large sets of files and identify duplicate files based on their contents, even if their names differ. Your system should perform the following tasks: Input: You are given a list of files, where each file has: A name (string) A file path (string) A file content (string representing the content of the file) Output: You need to output a set of file groups where each group contains the list of files that are duplicates of each other (i.e., they have the exact same content). The group should contain the file paths, but the files should be grouped regardless of their names. "/path/to/file1.txt, /path/to/file2.txt" If no files are found to be duplicates, the output should return the text: "No duplicates found" Optimization: Your solution must be optimized for: Time complexity: The algorithm should handle large numbers of files efficiently (e.g., handling 100,000+ files). Space complexity: The solution should use space efficiently while storing content and performing comparisons. Edge Cases: Empty Files: Handle cases where some files are empty. Large Files: Consider how to handle very large files efficiently, possibly using techniques like hashing. Multiple Duplicates: A file can appear multiple times, and all appearances should be grouped together. Mixed file paths: Files may appear under different paths but could have identical content.
      Responder pregunta

      Pregunta 2

      Optimal Denomination Count Write a function that takes an integer representing a valid withdrawal amount and returns a string showing the optimal count of each denomination (₹2000, ₹500 ₹100) to dispense. The output should use the largest denominations possible to minimize the total number of notes. Example 1: Input: 900 Output: 500: 1, 100:4 Example 2: Input: 2800 Output: 2000: 1, 500: 1, 100: 3 }
      Responder pregunta

      Pregunta 3

      Find the longest distance between coordinates You are given two sets of coordinates: 1. A starting point represented by the array [x1, y1]. 2. A destination point array with multiple coordinate pairs, such as [x2, y2, x3,y3, ..., xn, yn]. Your task is to find the destination point that has the longest distance from the starting point using the distance formula: [d=√(x2-21)2 + (y2 - y1)2] Where: ■(x1, y1) is the starting point, (x2, y2), (x3, y3), (x4, y4) are the destination points. Special Conditions: - If the starting point and any destination point are the same, the distance is 0. In this case, the output should be [-1, -1]. - If there are no destination coordinates provided, the output should be [-1, -1]. - If two or more destination points have the same maximum distance, the output should be [-1, -1]. Write a function findLongestDistancePoint that takes the starting coordinates and an array of destination coordinates, and returns the destination point that is farthest from the starting point, considering the special conditions. Input: - A coordinate array [x1, y1] representing the starting point. A coordinate array [x2, y2, x3, y3, xn, yn] representing multiple destination coordinates. Output: - The destination point (as an array [x, y]) that is farthest from the starting point, or [-1, -1] if the conditions are met. Example 1: Input: Starting Point: [2, 2] Destination Points: [2, 2, 2, 2] Output: [-1, -1] Explanation: Since the destination points are the same as the starting point, the distance is 8. As per the condition, the output is [-1, -1]. Example 2: Input: Starting Point: [0, 5] Destination Points: [1, 2, 3, 4, 5] Output: [-1, -1] Explanation: There are no coordinates representing valid destination points (pairs of coordinates are missing), so the output is [-1, -1]. Example 3: Input: Starting Point: [1, 2] Destination Points: [1, 2, 3, 4, 5, 6] Output: [5, 6] Explanation: The distance to each destination point is calculated: Distance to [1, 2]: d = 0 (same point). Distance to [3, 4]: d ≈ 2.83. Distance to [5, 6]: d≈ 5.39. The farthest point is [5, 6], so it is returned.
      Responder pregunta

      Pregunta 4

      aptitude percentage basic level questions
      Responder pregunta
      2

      Las mejores empresas en cuanto a «Remuneración y beneficios» cerca de ti

      avatar
      Concentrix
      3.6★Remuneración y beneficios
      avatar
      IBM
      3.6★Remuneración y beneficios
      avatar
      Hewlett Packard Enterprise | HPE
      3.6★Remuneración y beneficios
      avatar
      Dell Technologies
      3.5★Remuneración y beneficios