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

      Softeon

      Questa è la tua azienda?

      Circa
      Recensioni
      Stipendi e benefit
      Lavori
      Colloqui
      Colloqui
      Ricerche correlate: Recensioni su Softeon | Offerte di lavoro di Softeon | Stipendi di Softeon | Benefit di Softeon
      Colloqui di SofteonColloqui per Software Engineer presso SofteonColloquio di Softeon


      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 Software Engineer

      12 set 2024
      Candidato anonimo a colloquio
      Chennai
      Nessuna offerta
      Esperienza positiva
      Colloquio facile

      Candidatura

      Ho sostenuto un colloquio presso Softeon (Chennai) nel mese di gen 2024

      Colloquio

      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

      Domande di colloquio [1]

      Domanda 1

      Write a program for reverse string
      Rispondi alla domanda
      2

      Altre recensioni di colloqui per Software Engineer presso Softeon

      Colloquio per Software Developer

      16 dic 2025
      Candidato anonimo a colloquio
      Chennai
      Nessuna offerta
      Esperienza positiva
      Colloquio nella media

      Candidatura

      Ho presentato la mia candidatura tramite l'università. Ho sostenuto un colloquio presso Softeon (Chennai) nel mese di dic 2025

      Colloquio

      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

      Domande di colloquio [1]

      Domanda 1

      explain oops and their code example
      Rispondi alla domanda
      2

      Colloquio per Software Developer

      13 ott 2023
      Candidato anonimo a colloquio
      Chennai
      Nessuna offerta
      Esperienza positiva
      Colloquio nella media

      Candidatura

      Ho presentato la mia candidatura tramite l'università. Ho sostenuto un colloquio presso Softeon (Chennai) nel mese di ott 2023

      Colloquio

      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.

      Domande di colloquio [1]

      Domanda 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:
      Rispondi alla domanda
      2

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

      avatar
      DONE by NONE
      3.8★Stipendio e benefit
      avatar
      Digital Natives
      4.4★Stipendio e benefit