Aller au contenuAller au pied de page
  • Emplois
  • Entreprises
  • Salaires
  • Pour les employeurs

      Boostez votre carrière

      Découvrez votre salaire potentiel, décrochez des emplois de rêve et partagez vos témoignages de manière anonyme.

      employer cover photo
      employer logo
      employer logo

      Softeon

      Est-ce votre entreprise ?

      À propos
      Avis
      Salaires et avantages
      Emplois
      Entretiens
      Entretiens
      Recherches associées: Avis sur Softeon | Offres d’emploi chez Softeon | Salaires chez Softeon | Avantages sociaux chez Softeon
      Entretiens chez SofteonEntretiens d’embauche pour Software Engineer chez SofteonEntretien chez Softeon


      Glassdoor

      • À propos
      • Récompenses
      • Blog
      • Nous contacter
      • Guides

      Employeurs

      • Compte employeur gratuit
      • Centre employeur
      • Blog pour les employeurs

      Informations

      • Aide
      • Règles de la communauté
      • Conditions d'utilisation
      • Confidentialité et choix publicitaires
      • Ne pas vendre ni partager mes informations
      • Outil de consentement aux cookies

      Travailler avec nous

      • Annonceurs
      • Carrières
      Télécharger l'application

      • Parcourir par :
      • Entreprises
      • Emplois
      • Lieux

      Copyright © 2008-2026. Glassdoor LLC. « Glassdoor », son logo, « Worklife Pro » et « Bowls » sont des marques déposées de Glassdoor LLC.

      Entreprises suivies

      Tenez-vous au courant des dernières opportunités et profitez de conseils d’initiés en suivant les entreprises de vos rêves.

      Recherche d’emplois

      Obtenez des recommandations et des mises à jour personnalisées en démarrant vos recherches.

      Entretien pour Software Engineer

      12 sept. 2024
      Candidat à l'entretien anonyme
      Chennai
      Aucune offre
      Expérience positive
      Entretien facile

      Candidature

      J'ai passé un entretien chez Softeon (Chennai) en janv. 2024

      Entretien

      I tried as fresher so for fresher questions are based on string like reverse string, palindrome, basic array, about core Java mostly , primitive data types , opps concept like what is class, object, what is use of import, what is method, types of functions, parameters

      Questions d'entretien [1]

      Question 1

      Write a program for reverse string
      Répondre à cette question
      2

      Autres retours d’entretien d’embauche pour un poste comme Software Engineer chez Softeon

      Entretien pour Software Developer

      16 déc. 2025
      Candidat à l'entretien anonyme
      Chennai
      Aucune offre
      Expérience positive
      Entretien moyen

      Candidature

      J'ai postulé via un établissement d'enseignement supérieur ou universitaire. J'ai passé un entretien chez Softeon (Chennai) en déc. 2025

      Entretien

      frist round-apptitude and tech mcq -there will 50 questions to answer second round-technical interview-java basics and sql and have to write code in both third round hr-general hr question but there will be probability to some candidates to be having second round technical round it's like a filteration for them to put out the candidate who is not strong in logics

      Questions d'entretien [1]

      Question 1

      explain oops and their code example
      Répondre à cette question
      2

      Entretien pour Software Developer

      13 oct. 2023
      Candidat à l'entretien anonyme
      Chennai
      Aucune offre
      Expérience positive
      Entretien moyen

      Candidature

      J'ai postulé via un établissement d'enseignement supérieur ou universitaire. J'ai passé un entretien chez Softeon (Chennai) en oct. 2023

      Entretien

      Aptitude Test: This part of the written test evaluates your general problem-solving, analytical, and mathematical skills. You may encounter questions related to quantitative aptitude, logical reasoning, and verbal reasoning. Technical Test: The technical portion of the written test assesses your knowledge of programming languages, data structures, algorithms, and other relevant technical concepts. You may be required to solve coding problems, answer questions about specific technologies or tools, and demonstrate your problem-solving skills. 2. Multiple Face-to-Face Rounds: Technical Interviews: These interviews are typically conducted by software engineers, developers, or technical leads. You can expect a wide range of technical questions, coding challenges, data structure and algorithm problems, and discussions related to your past technical projects. These interviews aim to assess your technical proficiency and problem-solving abilities. System Design Interview (if applicable): For more experienced or senior roles, you may encounter a system design interview. In this interview, you'll be asked to design complex software systems, discuss system architecture, and make design decisions.

      Questions d'entretien [1]

      Question 1

      What is Python, and what are its key characteristics? Answer: Python is a high-level, interpreted programming language known for its simplicity and readability. Key characteristics include dynamic typing, automatic memory management, and an extensive standard library. Explain the differences between Python 2 and Python 3. Answer: Python 3 is the latest version of the language and has some key differences, such as print statements requiring parentheses, integer division returning a float, and the range() function returning an iterable object rather than a list. What is PEP 8, and why is it important? Answer: PEP 8 is Python Enhancement Proposal 8, a style guide for writing clean and readable Python code. It's essential for maintaining code consistency and making it easier for developers to collaborate on projects. How do you comment your code in Python, and what's the difference between single-line and multi-line comments? Answer: In Python, you can use the # symbol for single-line comments and triple-quotes (''' or """) for multi-line comments. Multi-line comments are often used for docstrings to provide documentation for functions, classes, or modules. What are the differences between a list and a tuple in Python? Answer: Lists are mutable, meaning their elements can be modified after creation, while tuples are immutable and cannot be changed. Lists are defined with square brackets [ ], and tuples with parentheses ( ). Explain the concept of a Python dictionary. Answer: A dictionary is an unordered collection of key-value pairs. It allows you to store and retrieve values using a unique key. Dictionaries are defined using curly braces { }. What is the Global Interpreter Lock (GIL) in Python, and how does it affect multi-threading? Answer: The GIL is a mutex that allows only one thread to execute in the Python interpreter at a time. This limitation can impact multi-threaded performance, particularly for CPU-bound tasks. However, it doesn't affect multi-processing. How do you handle exceptions in Python, and what are common built-in exceptions? Answer: Exceptions are handled using try, except blocks. Common built-in exceptions include SyntaxError, TypeError, and ZeroDivisionError. You can also create custom exceptions by subclassing Exception. What is a virtual environment in Python, and why is it useful? Answer: A virtual environment is an isolated Python environment that allows you to install and manage packages independently of the system-wide Python installation. It's useful for avoiding package conflicts and maintaining project-specific dependencies. Explain list comprehensions in Python and provide an example. Answer: List comprehensions are a concise way to create lists. For example, to create a list of squares from 1 to 10: python Copy code squares = [x ** 2 for x in range(1, 11)] What are decorators in Python, and how are they used? Answer: Decorators are functions that modify the behavior of other functions or methods. They are often used to add functionality to functions or methods, such as logging or authentication. Explain the difference between __init__ and __call__ methods in a Python class. Answer: The __init__ method is called when an instance of a class is created to initialize its attributes. The __call__ method allows instances of a class to be called like a function, and it's defined in the class to customize its behavior. What is a lambda function in Python? Provide an example. Answer: A lambda function is a small, anonymous function defined using the lambda keyword. It's often used for short, simple operations. For example, a lambda function to add two numbers:
      Répondre à cette question
      2