Upload Button Icon Add office photos

Filter interviews by

Code Vyasa Interview Questions and Answers

Updated 11 Apr 2025
Popular Designations

33 Interview questions

An Android Developer was asked 6mo ago
Q. What are Hot and Cold Flows?
Ans. 

Hot and Cold Flow is a design pattern used in Android development to manage the flow of data between components.

  • Hot Flow refers to the flow of data that is actively being observed and updated in real-time.

  • Cold Flow refers to the flow of data that is not actively being observed and updated, but can be retrieved when needed.

  • Hot Flow is typically used for real-time updates, while Cold Flow is used for fetching data o...

View all Android Developer interview questions
An Android Developer was asked 6mo ago
Q. How do you launch coroutines?
Ans. 

Coroutines in Android can be launched using the 'launch' function from the CoroutineScope.

  • Use the 'launch' function from the CoroutineScope to start a coroutine.

  • Specify the context in which the coroutine should run, such as Dispatchers.Main for the main thread.

  • Handle exceptions within the coroutine using try-catch blocks.

  • Example: CoroutineScope(Dispatchers.Main).launch { // coroutine code here }

View all Android Developer interview questions
An Android Developer was asked 6mo ago
Q. What are the differences between RecyclerView and ListView?
Ans. 

RecyclerView is more efficient for displaying large datasets and supports various layout managers, while ListView is simpler and easier to implement.

  • RecyclerView is more efficient for displaying large datasets as it only creates enough views to fill the screen, while ListView creates all views at once.

  • RecyclerView supports various layout managers like LinearLayoutManager, GridLayoutManager, and StaggeredGridLayout...

View all Android Developer interview questions
An Android Developer was asked 6mo ago
Q. What are the differences between hashCode(), equals(), and ==?
Ans. 

Hashcode is a unique identifier for an object, equals() compares the content of two objects, and == checks if two references point to the same object.

  • Hashcode is an integer value generated by a hashing algorithm to uniquely identify an object.

  • equals() method is used to compare the content of two objects for equality.

  • == operator checks if two references point to the same object in memory.

  • Example: String class overr...

View all Android Developer interview questions
An Android Developer was asked 6mo ago
Q. What are the differences between lateinit and lazy initialization in Kotlin?
Ans. 

LateInit is used for non-nullable properties that are initialized later, while Lazy is used for properties that are initialized only once when accessed.

  • LateInit is used for non-nullable properties that are initialized later in the code.

  • Lazy is used for properties that are initialized only once when accessed, making it suitable for expensive operations.

  • LateInit properties must be initialized before accessing, while...

View all Android Developer interview questions
An Android Developer was asked 6mo ago
Q. What are the differences between HashMap and LinkedHashMap?
Ans. 

HashMap is unordered, LinkedHashMap maintains insertion order.

  • HashMap does not maintain insertion order, LinkedHashMap maintains insertion order.

  • HashMap allows one null key and multiple null values, LinkedHashMap allows one null key and multiple null values.

  • HashMap is faster for iteration, LinkedHashMap is slower due to maintaining order.

View all Android Developer interview questions
An Android Developer was asked 6mo ago
Q. What is a back stack?
Ans. 

Back stack is a stack of activities in Android that keeps track of the navigation history.

  • Back stack is managed by the Android system to handle the navigation flow of activities.

  • When a new activity is started, it is pushed onto the back stack.

  • Pressing the back button pops the top activity off the stack and navigates to the previous activity.

  • Activities in the back stack can be brought to the foreground by using the...

View all Android Developer interview questions
Are these interview questions helpful?
An Android Developer was asked 6mo ago
Q. What is the difference between an Activity and a Fragment?
Ans. 

Activity is a single focused thing that user can do, while Fragment is a modular section of an activity.

  • Activity represents a single screen with a user interface, while Fragment represents a behavior or a portion of user interface in an Activity.

  • An Activity can contain multiple Fragments, but a Fragment cannot exist independently without an Activity.

  • Fragments have their own lifecycle, while they are dependent on t...

View all Android Developer interview questions
An Android Developer was asked 6mo ago
Q. On which lifecycle event is the view attached to the Fragment?
Ans. 

The view is attached to the Fragment during the onAttach() lifecycle event.

  • The onAttach() method is called when the Fragment is associated with its host Activity.

  • This is the first lifecycle method called after the Fragment is created.

  • The onAttach() method receives the Activity as a parameter, allowing the Fragment to interact with its host.

View all Android Developer interview questions
An Android Developer was asked 6mo ago
Q. How do you center a view within a ConstraintLayout?
Ans. 

To set a view in the middle in ConstraintLayout, use layout_constraintStart_toStartOf, layout_constraintEnd_toEndOf, layout_constraintTop_toTopOf, and layout_constraintBottom_toBottomOf attributes.

  • Use layout_constraintStart_toStartOf and layout_constraintEnd_toEndOf to align horizontally in the middle.

  • Use layout_constraintTop_toTopOf and layout_constraintBottom_toBottomOf to align vertically in the middle.

  • Set both...

View all Android Developer interview questions

Code Vyasa Interview Experiences

12 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Nov 2024.

Round 1 - One-on-one 

(25 Questions)

  • Q1. What are the components of the Android App?
  • Ans. 

    The components of an Android app include activities, services, broadcast receivers, and content providers.

    • Activities: UI components that represent a single screen with a user interface.

    • Services: Background tasks that run independently of the UI.

    • Broadcast Receivers: Respond to system-wide broadcast announcements.

    • Content Providers: Manage a shared set of app data.

  • Answered by AI
  • Q2. Difference between Activity and Fragment.
  • Ans. 

    Activity is a single focused thing that user can do, while Fragment is a modular section of an activity.

    • Activity represents a single screen with a user interface, while Fragment represents a behavior or a portion of user interface in an Activity.

    • An Activity can contain multiple Fragments, but a Fragment cannot exist independently without an Activity.

    • Fragments have their own lifecycle, while they are dependent on the li...

  • Answered by AI
  • Q3. What is databinding?
  • Ans. 

    Databinding is a feature that allows you to bind UI components in your layout to data sources in your app.

    • Databinding eliminates the need for boilerplate code to update UI components with data.

    • It allows for easier communication between UI components and data sources.

    • Databinding can improve code readability and maintainability.

    • Example: Binding a TextView directly to a ViewModel property in an Android app.

  • Answered by AI
  • Q4. On which lifecycle event, the view is attached to the Fragment?
  • Ans. 

    The view is attached to the Fragment during the onAttach() lifecycle event.

    • The onAttach() method is called when the Fragment is associated with its host Activity.

    • This is the first lifecycle method called after the Fragment is created.

    • The onAttach() method receives the Activity as a parameter, allowing the Fragment to interact with its host.

  • Answered by AI
  • Q5. Can we have an activity without a view?
  • Ans. 

    Yes, an activity can exist without a view in Android.

    • An activity can perform background tasks without displaying any UI elements.

    • For example, a music player app may have an activity to handle playback controls in the background.

    • Activities without views are commonly used for tasks like data processing, network operations, or service handling.

  • Answered by AI
  • Q6. What is a broadcast receiver?
  • Ans. 

    A broadcast receiver is an Android component that allows the system to deliver events or messages to the app.

    • Broadcast receivers can be used to listen for system-wide broadcast announcements, such as when the device is booted or when the battery is low.

    • They can also be used to receive custom broadcast messages sent by other apps or components within the same app.

    • Broadcast receivers are registered in the AndroidManifest...

  • Answered by AI
  • Q7. LateInit vs Lazy.
  • Ans. 

    LateInit is used for non-nullable properties that are initialized later, while Lazy is used for properties that are initialized only once when accessed.

    • LateInit is used for non-nullable properties that are initialized later in the code.

    • Lazy is used for properties that are initialized only once when accessed, making it suitable for expensive operations.

    • LateInit properties must be initialized before accessing, while Lazy...

  • Answered by AI
  • Q8. Have you worked with ViewPager2 and ListAdapter?
  • Ans. 

    Yes, I have experience working with ViewPager2 and ListAdapter.

    • Implemented ViewPager2 to create swipeable screens in Android apps.

    • Utilized ListAdapter to efficiently manage data for RecyclerViews.

    • Used ListAdapter's DiffUtil to efficiently update RecyclerView items.

  • Answered by AI
  • Q9. How can we do pagination?
  • Ans. 

    Pagination in Android can be achieved by using libraries like Paging Library or implementing custom pagination logic.

    • Use Paging Library provided by Android Architecture Components

    • Implement custom pagination logic by loading data in chunks

    • Update RecyclerView adapter with new data as user scrolls

  • Answered by AI
  • Q10. Explain some layouts you have worked on.
  • Ans. 

    I have worked on various layouts including linear, relative, grid, and constraint layouts.

    • Implemented linear layouts to arrange views in a single column or row.

    • Utilized relative layouts to position views relative to each other.

    • Used grid layouts for displaying data in a grid-like structure.

    • Implemented constraint layouts for creating complex and flexible UI designs.

  • Answered by AI
  • Q11. How to set the view in the middle in ContraintLayout?
  • Ans. 

    To set a view in the middle in ConstraintLayout, use layout_constraintStart_toStartOf, layout_constraintEnd_toEndOf, layout_constraintTop_toTopOf, and layout_constraintBottom_toBottomOf attributes.

    • Use layout_constraintStart_toStartOf and layout_constraintEnd_toEndOf to align horizontally in the middle.

    • Use layout_constraintTop_toTopOf and layout_constraintBottom_toBottomOf to align vertically in the middle.

    • Set both hori...

  • Answered by AI
  • Q12. What is the suspend function?
  • Ans. 

    A suspend function is a function that can be paused and resumed at a later time without blocking the main thread.

    • Suspend functions are used in Kotlin coroutines to perform asynchronous operations.

    • They are defined using the 'suspend' keyword in the function signature.

    • Suspend functions can only be called from within another suspend function or a coroutine builder like 'launch' or 'async'.

  • Answered by AI
  • Q13. How to launch coroutines?
  • Ans. 

    Coroutines in Android can be launched using the 'launch' function from the CoroutineScope.

    • Use the 'launch' function from the CoroutineScope to start a coroutine.

    • Specify the context in which the coroutine should run, such as Dispatchers.Main for the main thread.

    • Handle exceptions within the coroutine using try-catch blocks.

    • Example: CoroutineScope(Dispatchers.Main).launch { // coroutine code here }

  • Answered by AI
  • Q14. How to update UI in coroutine scope?
  • Ans. 

    Use runOnUiThread or withContext(Dispatchers.Main) to update UI in coroutine scope.

    • Use runOnUiThread to update UI from a background thread.

    • Use withContext(Dispatchers.Main) to switch to the main thread in coroutine scope.

    • Example: runOnUiThread { textView.text = "Updated text" }

    • Example: withContext(Dispatchers.Main) { textView.text = "Updated text" }

  • Answered by AI
  • Q15. HashMap vs LinkedHashMap.
  • Ans. 

    HashMap is unordered, LinkedHashMap maintains insertion order.

    • HashMap does not maintain insertion order, LinkedHashMap maintains insertion order.

    • HashMap allows one null key and multiple null values, LinkedHashMap allows one null key and multiple null values.

    • HashMap is faster for iteration, LinkedHashMap is slower due to maintaining order.

  • Answered by AI
  • Q16. Write syntax for HashMap in Kotlin and Java and put some values.
  • Ans. 

    Syntax for HashMap in Kotlin and Java with values.

    • In Kotlin:

    • val hashMap = hashMapOf<String, Int>()

    • hashMap.put("key1", 1)

    • hashMap.put("key2", 2)

    • In Java:

    • HashMap<String, Integer> hashMap = new HashMap<>();

    • hashMap.put("key1", 1);

    • hashMap.put("key2", 2);

  • Answered by AI
  • Q17. Val vs Var.
  • Ans. 

    Val is immutable, Var is mutable in Kotlin programming language.

    • Val is used for read-only variables, cannot be reassigned.

    • Var is used for mutable variables, can be reassigned.

    • Val is preferred for better code safety and readability.

    • Example: val name = "John" vs var age = 30

  • Answered by AI
  • Q18. Let and apply scoped function.
  • Ans. 

    Let and apply are scoped functions in Kotlin used for executing a block of code on an object.

    • Let function is used to execute a block of code on a non-null object and return the result.

    • Apply function is used to initialize an object and perform operations on it without explicitly returning a value.

  • Answered by AI
  • Q19. Project-related questions.
  • Q20. How to send data between two activities?
  • Ans. 

    Data can be sent between two activities in Android using Intent with putExtra() method.

    • Create an Intent object in the sending activity

    • Use putExtra() method to add data to the Intent

    • Start the second activity with startActivity() method, passing the Intent

    • Retrieve the data in the receiving activity using getIntent() and getExtra()

  • Answered by AI
  • Q21. What is Hot and Cold Flow?
  • Ans. 

    Hot and Cold Flow is a design pattern used in Android development to manage the flow of data between components.

    • Hot Flow refers to the flow of data that is actively being observed and updated in real-time.

    • Cold Flow refers to the flow of data that is not actively being observed and updated, but can be retrieved when needed.

    • Hot Flow is typically used for real-time updates, while Cold Flow is used for fetching data on dem...

  • Answered by AI
  • Q22. RecyclerView vs ListView.
  • Ans. 

    RecyclerView is more efficient for displaying large datasets and supports various layout managers, while ListView is simpler and easier to implement.

    • RecyclerView is more efficient for displaying large datasets as it only creates enough views to fill the screen, while ListView creates all views at once.

    • RecyclerView supports various layout managers like LinearLayoutManager, GridLayoutManager, and StaggeredGridLayoutManag...

  • Answered by AI
  • Q23. What is sealed classes?
  • Ans. 

    Sealed classes are used to restrict inheritance in Kotlin, allowing a class to have a fixed set of subclasses.

    • Sealed classes are declared using the 'sealed' keyword.

    • They can only be extended within the same file where they are declared.

    • Sealed classes are often used in conjunction with when expressions for exhaustive checking.

  • Answered by AI
  • Q24. What is back stack?
  • Ans. 

    Back stack is a stack of activities in Android that keeps track of the navigation history.

    • Back stack is managed by the Android system to handle the navigation flow of activities.

    • When a new activity is started, it is pushed onto the back stack.

    • Pressing the back button pops the top activity off the stack and navigates to the previous activity.

    • Activities in the back stack can be brought to the foreground by using the appr...

  • Answered by AI
  • Q25. Difference between hashcode, equals() and ==.
  • Ans. 

    Hashcode is a unique identifier for an object, equals() compares the content of two objects, and == checks if two references point to the same object.

    • Hashcode is an integer value generated by a hashing algorithm to uniquely identify an object.

    • equals() method is used to compare the content of two objects for equality.

    • == operator checks if two references point to the same object in memory.

    • Example: String class overrides ...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Final, finally and finalize
  • Q2. Functional interface
  • Q3. In which case finally will not execute
  • Ans. 

    The 'finally' block in Java may not execute in certain exceptional scenarios, such as JVM crashes or system exits.

    • If the JVM crashes, the 'finally' block won't execute.

    • If the program is terminated using System.exit(), 'finally' won't run.

    • If the thread executing the try block is killed, 'finally' won't execute.

  • Answered by AI
  • Q4. One Coding question: Maximum subarray sum

Skills evaluated in this interview

Interview Questions & Answers

user image Akshansh Sharma

posted on 2 Sep 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Fair and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. What is hash table
  • Ans. 

    A hash table is a data structure that stores key-value pairs, allowing for efficient retrieval of values based on their keys.

    • Hash tables use a hash function to map keys to indexes in an array, where the corresponding values are stored.

    • They offer constant time complexity O(1) for insertion, deletion, and lookup operations in the average case.

    • Examples of hash table implementations in Java include HashMap and HashTable.

  • Answered by AI
  • Q2. What is new feature of java
  • Ans. 

    Java 14 introduced new features like switch expressions, records, and text blocks.

    • Switch expressions allow for more concise code by returning a value from each case block.

    • Records provide a compact way to declare classes with data fields and accessors.

    • Text blocks simplify writing multi-line strings by allowing for easier formatting and escaping.

  • Answered by AI
  • Q3. Why springs are immutable
  • Ans. 

    Springs are immutable in Java to ensure thread safety and prevent unintended changes to shared objects.

    • Immutable objects are inherently thread-safe as they cannot be modified once created.

    • Prevents unintended changes to shared objects, reducing bugs and making code more predictable.

    • Promotes better design practices by encouraging the use of immutable objects for shared data.

    • Examples of immutable classes in Java include S...

  • Answered by AI
  • Q4. What is springboot basic annotation
  • Ans. 

    SpringBoot basic annotation @SpringBootApplication is used to mark the main class of a Spring Boot application.

    • Used to indicate the main class of a Spring Boot application

    • Combines @Configuration, @EnableAutoConfiguration, and @ComponentScan annotations

    • Automatically configures the Spring application based on dependencies and classpath

  • Answered by AI
  • Q5. What is dependency injection
  • Ans. 

    Dependency injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Allows for easier testing by providing mock dependencies

    • Promotes loose coupling between components

    • Can be implemented using frameworks like Spring in Java

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Difference between MySQL and MongoDB
  • Ans. 

    MySQL is a relational database management system, while MongoDB is a NoSQL database.

    • MySQL is a relational database, meaning data is stored in tables with rows and columns.

    • MongoDB is a NoSQL database, storing data in collections of JSON-like documents.

    • MySQL uses SQL for querying data, while MongoDB uses a query language similar to JSON.

    • MySQL is ACID-compliant, ensuring data integrity, while MongoDB sacrifices some ACID ...

  • Answered by AI
  • Q2. What is event listener in laravel
  • Ans. 

    Event listener in Laravel is a mechanism to listen for specific events and execute code when those events occur.

    • Event listeners are defined in the EventServiceProvider class in Laravel.

    • Listeners are registered with events using the listen method.

    • Listeners can perform tasks like sending emails, logging information, or updating database records.

    • Example: 'UserRegistered' event can have a listener that sends a welcome emai...

  • Answered by AI
  • Q3. Many To Many Relationship

Skills evaluated in this interview

HR Recruiter Interview Questions & Answers

user image Daniya Ghani

posted on 27 Mar 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Sep 2024, where I was asked the following questions.

  • Q1. What do you know about HR responsibilities.
  • Ans. 

    HR responsibilities encompass recruitment, employee relations, compliance, training, and performance management to support organizational goals.

    • Recruitment and Staffing: Identifying job openings, screening candidates, and conducting interviews to find the right talent.

    • Employee Onboarding: Facilitating new hire orientation and training to ensure smooth integration into the company culture.

    • Performance Management: Impleme...

  • Answered by AI
  • Q2. Brief me the step for hiring process
  • Ans. 

    The hiring process involves several key steps to identify, evaluate, and select the best candidates for a position.

    • 1. Job Analysis: Define the role and responsibilities. Example: Creating a detailed job description for a software developer.

    • 2. Sourcing Candidates: Use job boards, social media, and networking to attract applicants. Example: Posting on LinkedIn and Indeed.

    • 3. Screening Resumes: Review applications to short...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Starting my career with codevyasa, great place, no hierarchy, every one is friendly, it's a great place to learn and grow.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. What are the skills that you have used before?
  • Ans. 

    I have utilized various skills in talent acquisition, including communication, analytical thinking, and relationship building.

    • Effective communication: I have conducted interviews and presented candidates to hiring managers, ensuring clarity and alignment.

    • Analytical thinking: I analyzed recruitment metrics to identify trends and improve hiring processes, leading to a 20% reduction in time-to-fill.

    • Relationship building: ...

  • Answered by AI
  • Q2. Are you okay with relocating?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Sep 2024, where I was asked the following questions.

  • Q1. Can you explain your roles and responsibilities?
  • Q2. What is your experience as a Human Resources professional?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and respond effectively.

Test Analyst Interview Questions & Answers

user image Anonymous

posted on 14 Oct 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Prepare on Strings and array related programs

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java related questions were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join as no job security it there they can fire you any time even after giving you offer letter
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Mar 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Oops concepts, how you have used oops concepts in ur current project or framework
  • Ans. 

    I have extensively used OOPs concepts in my current project.

    • I have used inheritance to create a base class for all test cases.

    • I have used polymorphism to create different test cases using the same base class.

    • I have used encapsulation to hide the implementation details of the test cases.

    • I have used abstraction to create interfaces for the test cases.

    • I have used SOLID principles to ensure the code is maintainable and ext...

  • Answered by AI
  • Q2. Overloading, overriding waits in selenium, open any website and write xpath for some elements.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare yourself for Java questions selenium questions, Agile methodologies related as well

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Code Vyasa?
Ask anonymously on communities.

Code Vyasa Interview FAQs

How many rounds are there in Code Vyasa interview?
Code Vyasa interview process usually has 1-2 rounds. The most common rounds in the Code Vyasa interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for Code Vyasa interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Code Vyasa. The most common topics and skills that interviewers at Code Vyasa expect are IT Sales, C#, IT Product Sales, Java and Javascript.
What are the top questions asked in Code Vyasa interview?

Some of the top questions asked at the Code Vyasa interview -

  1. Oops concepts, how you have used oops concepts in ur current project or framewo...read more
  2. On which lifecycle event, the view is attached to the Fragme...read more
  3. How to set the view in the middle in ContraintLayo...read more
How long is the Code Vyasa interview process?

The duration of Code Vyasa interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.4/5

based on 11 interview experiences

Difficulty level

Easy 25%
Moderate 75%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.8
 • 8.6k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon Interview Questions
4.0
 • 5.3k Interviews
Capgemini Interview Questions
3.7
 • 5k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.8
 • 3.4k Interviews
View all

Code Vyasa Reviews and Ratings

based on 42 reviews

3.6/5

Rating in categories

3.4

Skill development

3.5

Work-life balance

3.5

Salary

3.2

Job security

3.4

Company culture

3.1

Promotions

3.4

Work satisfaction

Explore 42 Reviews and Ratings
.NET MaUI Developer

Mumbai

3-6 Yrs

₹ 10-15 LPA

Site Reliability Engineer

Mumbai

2-7 Yrs

₹ 16-18 LPA

Mobile Developer

Gurgaon / Gurugram

3-5 Yrs

₹ 12-15 LPA

Explore more jobs
Software Engineer2
27 salaries
unlock blur

₹7 L/yr - ₹17.5 L/yr

Product Designer
18 salaries
unlock blur

₹10 L/yr - ₹12.1 L/yr

Software Engineer
14 salaries
unlock blur

₹7.6 L/yr - ₹14 L/yr

Senior Software Engineer
12 salaries
unlock blur

₹6.3 L/yr - ₹17 L/yr

Software Developer II
5 salaries
unlock blur

₹7.5 L/yr - ₹12 L/yr

Explore more salaries
Compare Code Vyasa with

TCS

3.6
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview