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

      Code Vyasa

      Essa empresa é sua?

      Sobre
      Avaliações
      Remuneração e benefícios
      Vagas
      Entrevistas
      Entrevistas
      Buscas relacionadas: Avaliações da empresa Code Vyasa | Vagas da empresa Code Vyasa | Salários da empresa Code Vyasa | Benefícios da empresa Code Vyasa
      Entrevistas da empresa Code VyasaEntrevistas do cargo de SDE-2 da empresa Code VyasaEntrevista da empresa Code Vyasa


      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.

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

      avatar
      EPAM Systems
      3.6★Remuneração e benefícios
      avatar
      IBM
      3.6★Remuneração e benefícios
      avatar
      Hewlett Packard Enterprise | HPE
      3.6★Remuneração e benefícios
      avatar
      Visa Inc.
      3.9★Remuneração e benefícios

      Buscas de vagas

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

      Entrevista para SDE-2

      14 de jan. de 2026
      Funcionário(a) sigiloso(a)
      Noida
      Oferta aceita
      Experiência neutra
      Entrevista com nível médio de dificuldade

      Candidatura

      Candidatei-me online. Fui entrevistado pela Code Vyasa (Noida) em out. de 2025

      Entrevista

      In Android interviews, candidates are evaluated on architecture patterns (MVC, MVP, MVVM), basics like Activity/Fragment lifecycle, and Kotlin Coroutines for async tasks. Emphasis is on clean separation of concerns, lifecycle-aware components, and structured concurrency using ViewModelScope and Dispatchers.

      Perguntas de entrevista [1]

      Pergunta 1

      1. The Architectural Evolution Interviewers often ask you to compare patterns to see if you understand their history and trade-offs. 2. Core Architecture Basics (The "Must-Knows") Expect questions on these Android Jetpack components that support your architecture: ViewModel: How does it survive configuration changes? (Answer: It’s stored in a ViewModelStore which is retained by the system during rotation). LiveData vs. StateFlow: * LiveData is lifecycle-aware by default but is Android-specific. StateFlow (Kotlin) is better for pure Kotlin logic and requires an initial state, but needs repeatOnLifecycle to be lifecycle-safe in the UI. Repository Pattern: Acts as a mediator between different data sources (API, Database, Cache) so the ViewModel doesn't care where the data comes from. 3. Kotlin Coroutines (The Modern Way) This is usually where the "Deep Dive" happens. You should be able to explain these concepts clearly: The Basics What are they? Lightweight threads. They are "suspendable" computations, meaning they can pause without blocking the actual thread. Suspend Functions: A function marked with suspend can be paused and resumed later. It can only be called from another suspend function or a coroutine. Coroutine Components Dispatchers: Tell the coroutine where to run. Dispatchers.Main: UI operations. Dispatchers.IO: Networking, Disk (DB) operations. Dispatchers.Default: CPU-intensive tasks (sorting, parsing). CoroutineScope: Defines the lifetime of the coroutine (e.g., viewModelScope, lifecycleScope). Job: A handle to the coroutine. Use it to cancel() or check if it’s isActive. Advanced Scenarios launch vs async: * launch is "fire and forget" (returns a Job). async returns a Deferred and is used when you need a result back (using .await()). Structured Concurrency: The principle that new coroutines can only be launched in a specific CoroutineScope which delimits its lifetime. If the parent scope is cancelled, all children are cancelled. 4. Common "Scenario" Questions "How do you handle a network call in a ViewModel?" Approach: Launch a coroutine in viewModelScope, switch to Dispatchers.IO (usually in the Repository), use a try-catch or a Result wrapper for errors, and update a StateFlow to reflect the UI state (Loading, Success, Error). "What happens to a coroutine if the user rotates the screen?" Approach: If using viewModelScope, the coroutine continues running because the ViewModel is not destroyed. If using lifecycleScope in an Activity, it will be cancelled.
      Responder à pergunta
      2