Ir para o conteúdoIr para a pasta
  • Vagas
  • Empresas
  • Salários
  • Para empresas

      Avance em sua carreira

      Descubra qual pode ser seu salário, conquiste a vaga dos seus sonhos e compartilhe insights de qualidade de vida com sigilo.

      employer cover photo
      employer logo
      employer logo

      Softeon

      Essa empresa é sua?

      Sobre
      Avaliações
      Remuneração e benefícios
      Vagas
      Entrevistas
      Entrevistas
      Buscas relacionadas: Avaliações da empresa Softeon | Vagas da empresa Softeon | Salários da empresa Softeon | Benefícios da empresa Softeon
      Entrevistas da empresa SofteonEntrevistas do cargo de Software Engineer da empresa SofteonEntrevista da empresa Softeon


      Glassdoor

      • Sobre
      • Prêmios
      • Blog
      • Fale conosco

      Empresas

      • Conta gratuita de empresa
      • Área da empresa
      • Blog para empresas

      Informações

      • Ajuda
      • Regras da Comunidade
      • Termos de Uso
      • Privacidade e opções de anúncios
      • Não venda nem compartilhe minhas informações
      • Ferramenta de consentimento de uso de cookies

      Trabalhe conosco

      • Anunciantes
      • Carreiras
      Baixe o aplicativo:

      • Busque por:
      • Empresas
      • Vagas
      • Localizações

      Copyright © 2008-2026. Glassdoor LLC. “Glassdoor”, “Worklife Pro”, “Bowls” e o logotipo do Glassdoor são marcas comerciais pertencentes à Glassdoor LLC.

      Empresas seguidas

      Fique por dentro de todas as oportunidades e dicas internas seguindo as empresas de seus sonhos.

      Buscas de vagas

      Comece a buscar vagas para receber atualizações e recomendações personalizadas.

      As melhores empresas na categoria “Remuneração e benefícios” perto de você

      avatar
      Apple
      4.2★Remuneração e benefícios
      avatar
      Honeywell
      4.0★Remuneração e benefícios
      avatar
      DONE by NONE
      3.8★Remuneração e benefícios
      avatar
      Fortinet
      3.6★Remuneração e benefícios

      Entrevista para Software Engineer

      12 de set. de 2024
      Candidato(a) sigiloso(a) à entrevista
      Chennai

      Outras avaliações de entrevista de vagas de Software Engineer da empresa Softeon

      Entrevista para Software Developer

      16 de dez. de 2025
      Candidato(a) sigiloso(a) à entrevista
      Chennai
      Nenhuma oferta
      Nenhuma oferta
      Experiência positiva
      Entrevista fácil

      Candidatura

      Fui entrevistado pela Softeon (Chennai) em jan. de 2024

      Entrevista

      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

      Perguntas de entrevista [1]

      Pergunta 1

      Write a program for reverse string
      Responder à pergunta
      2
      Experiência positiva
      Entrevista com nível médio de dificuldade

      Candidatura

      Candidatei-me por meio de uma faculdade ou universidade. Fui entrevistado pela Softeon (Chennai) em dez. de 2025

      Entrevista

      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

      Perguntas de entrevista [1]

      Pergunta 1

      explain oops and their code example
      Responder à pergunta
      2

      Entrevista para Software Developer

      13 de out. de 2023
      Candidato(a) sigiloso(a) à entrevista
      Chennai
      Nenhuma oferta
      Experiência positiva
      Entrevista com nível médio de dificuldade

      Candidatura

      Candidatei-me por meio de uma faculdade ou universidade. Fui entrevistado pela Softeon (Chennai) em out. de 2023

      Entrevista

      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.

      Perguntas de entrevista [1]

      Pergunta 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:
      Responder à pergunta
      2