Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Codebase Team. If you also belong to the team, you can get access from here

Codebase Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Codebase Interview Questions and Answers

Updated 27 May 2025
Popular Designations

6 Interview questions

A Senior Software Engineer was asked
Q. What is asyncio?
Ans. 

asyncio is a Python library for writing concurrent code using the async/await syntax.

  • asyncio allows for non-blocking I/O operations

  • It provides a way to write asynchronous code in a synchronous style

  • asyncio is built on top of the event loop, which schedules and executes coroutines

  • Examples of asyncio-based libraries include aiohttp and aioredis

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. What is multithreading?
Ans. 

Multithreading is the ability of a program to perform multiple tasks concurrently.

  • Multithreading allows a program to utilize multiple CPUs or cores.

  • It can improve performance and responsiveness of a program.

  • Threads share the same memory space and can communicate with each other.

  • Examples include web servers handling multiple requests simultaneously and video games rendering graphics while processing user input.

View all Senior Software Engineer interview questions
🔥 Asked by recruiter 2 times
A Senior Software Engineer was asked
Q. What is Pub/Sub?
Ans. 

Pub sub is short for publish-subscribe. It is a messaging pattern where senders of messages, called publishers, do not program the messages to be sent directly to specific receivers, called subscribers.

  • Publishers send messages to a topic or channel without knowing who the subscribers are.

  • Subscribers receive messages from the topic or channel they have subscribed to.

  • Pub sub is commonly used in distributed systems a...

View all Senior Software Engineer interview questions
🔥 Asked by recruiter 2 times
A Senior Software Engineer was asked
Q. What are decorators?
Ans. 

Decorators are functions that modify the behavior of other functions or classes without changing their source code.

  • Decorators are used to add functionality to existing code without modifying it.

  • They are defined using the @ symbol followed by the decorator function name.

  • Decorators can be used to add logging, caching, authentication, and other features to functions and classes.

  • Examples of decorators in Python includ...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. What is asynchronous programming?
Ans. 

Asynchronous programming is a programming paradigm that allows multiple tasks to run concurrently without blocking the main thread.

  • Asynchronous programming is achieved through the use of callbacks, promises, and async/await functions.

  • It is commonly used in web development for handling user input and making API calls.

  • Asynchronous programming can improve the performance and responsiveness of an application.

  • Examples ...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. What are design patterns ? Are you aware of any?
Ans. 

Design patterns are reusable solutions to commonly occurring problems in software design.

  • Design patterns provide a standard terminology and a common platform for communication among developers.

  • They help in making code more flexible, reusable, and maintainable.

  • Examples of design patterns include Singleton, Factory, Observer, and Decorator patterns.

View all Senior Software Engineer interview questions

Codebase Interview Experiences

3 interviews found

Video Editor Interview Questions & Answers

user image Pranav Phulware

posted on 2 Nov 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is pub sub?
  • Ans. 

    Pub sub is a messaging pattern where senders of messages, called publishers, do not program the messages to be sent directly to specific receivers, called subscribers.

    • Publishers send messages to a topic or channel without knowing which subscribers will receive them.

    • Subscribers express interest in one or more topics and receive messages only when they are published to those topics.

    • Pub sub is commonly used in distributed...

  • Answered by AI
  • Q2. What are decorators ?
  • Ans. 

    Decorators are functions that modify the behavior of other functions or classes without changing their source code.

    • Decorators are used to add functionality to existing code without modifying it.

    • They are defined using the '@' symbol followed by the decorator function name.

    • They can be used to add logging, caching, authentication, and other features to functions or classes.

    • Examples include the @staticmethod and @classmeth...

  • Answered by AI
Round 3 - Technical 

(4 Questions)

  • Q1. Singleton Design pattern
  • Q2. Decorator output question
  • Q3. What is multithreading
  • Ans. 

    Multithreading is the ability of a program to perform multiple tasks concurrently.

    • Multithreading allows a program to utilize multiple CPUs or cores.

    • It can improve performance and responsiveness of a program.

    • Threads share the same memory space and can communicate with each other.

    • Examples include web servers handling multiple requests simultaneously and video games rendering graphics while processing user input.

  • Answered by AI
  • Q4. What is asyncio
  • Ans. 

    asyncio is a Python library for writing concurrent code using the async/await syntax.

    • asyncio allows for non-blocking I/O operations

    • It provides a way to write asynchronous code in a synchronous style

    • asyncio is built on top of the event loop, which schedules and executes coroutines

    • Examples of asyncio-based libraries include aiohttp and aioredis

  • Answered by AI

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed before Apr 2022. There were 3 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. What are decorators ?
  • Ans. 

    Decorators are functions that modify the behavior of other functions or classes without changing their source code.

    • Decorators are used to add functionality to existing code without modifying it.

    • They are defined using the @ symbol followed by the decorator function name.

    • Decorators can be used to add logging, caching, authentication, and other features to functions and classes.

    • Examples of decorators in Python include @st...

  • Answered by AI
  • Q2. What are design patterns ? Are you aware of any?
  • Ans. 

    Design patterns are reusable solutions to commonly occurring problems in software design.

    • Design patterns provide a standard terminology and a common platform for communication among developers.

    • They help in making code more flexible, reusable, and maintainable.

    • Examples of design patterns include Singleton, Factory, Observer, and Decorator patterns.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. What is pub sub. ?
  • Ans. 

    Pub sub is short for publish-subscribe. It is a messaging pattern where senders of messages, called publishers, do not program the messages to be sent directly to specific receivers, called subscribers.

    • Publishers send messages to a topic or channel without knowing who the subscribers are.

    • Subscribers receive messages from the topic or channel they have subscribed to.

    • Pub sub is commonly used in distributed systems and ev...

  • Answered by AI
  • Q2. What is asynchronous programming?
  • Ans. 

    Asynchronous programming is a programming paradigm that allows multiple tasks to run concurrently without blocking the main thread.

    • Asynchronous programming is achieved through the use of callbacks, promises, and async/await functions.

    • It is commonly used in web development for handling user input and making API calls.

    • Asynchronous programming can improve the performance and responsiveness of an application.

    • Examples of as...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - P

Skills evaluated in this interview

Top trending discussions

View All
Office Jokes
2w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
FeedCard Image
Got a question about Codebase ?
Ask anonymously on communities.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Object Oriented Programming
  • Q2. Linq?
  • Ans. 

    LINQ (Language Integrated Query) is a powerful feature in .NET for querying collections in a concise and readable manner.

    • LINQ allows querying various data sources like arrays, collections, databases, and XML.

    • Example: var results = myList.Where(x => x.Age > 30); // Filters list for ages greater than 30.

    • Supports method syntax (e.g., .Select()) and query syntax (e.g., from x in myList).

    • LINQ provides deferred executi...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Prepare oops concepts
Round 2 - Technical 

(2 Questions)

  • Q1. Prepare DSA questions
  • Q2. Prepare Oops concepts
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What programming language are you most proficient?
  • Ans. 

    I am most proficient in Java.

    • Extensive experience in developing applications using Java

    • Strong understanding of object-oriented programming principles

    • Familiarity with popular Java frameworks like Spring and Hibernate

  • Answered by AI
  • Q2. .NET, Angular and Sql Server
Round 2 - One-on-one 

(1 Question)

  • Q1. How would you design a system that needs to handle million of records
  • Ans. 

    I would design a system using scalable architecture, efficient data storage, and optimized query processing.

    • Utilize a distributed database system like Cassandra or Hadoop for storing large volumes of data

    • Implement data partitioning and sharding to distribute the data across multiple servers

    • Use indexing and caching mechanisms to optimize query performance

    • Employ load balancing techniques to evenly distribute incoming req...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Best place to learn and work

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. About the Agile methodology
  • Q2. About some puzzle
  • Q3. Questions From resume
  • Q4. What is Api and full forms
  • Ans. 

    API stands for Application Programming Interface. It is a set of rules and protocols that allows different software applications to communicate with each other.

    • API allows different software systems to communicate with each other.

    • It defines the methods and data formats that applications can use to request and exchange information.

    • Examples of APIs include Google Maps API, Twitter API, and Facebook Graph API.

  • Answered by AI
  • Q5. What is Low code/no code
  • Ans. 

    Low code/no code is a development approach that allows users to create applications with minimal coding knowledge.

    • Low code/no code platforms provide visual interfaces and pre-built templates for app development.

    • Users can drag and drop components and configure settings without writing code.

    • These platforms are designed to speed up the development process and empower non-technical users to create applications.

    • Examples of ...

  • Answered by AI

Skills evaluated in this interview

Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. How did you handle team management with the members?
  • Q2. Basic process of an EDI
  • Q3. Stress management and client handling
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

  • Q1. Basics of AI?
  • Ans. 

    AI involves creating systems that can perform tasks requiring human intelligence, like learning and problem-solving.

    • Machine Learning: Algorithms that enable computers to learn from data (e.g., spam detection in emails).

    • Natural Language Processing: Understanding and generating human language (e.g., chatbots like Siri or Alexa).

    • Computer Vision: Enabling machines to interpret and make decisions based on visual data (e.g.,...

  • Answered by AI
  • Q2. Deep questions about LLM?
  • Ans. 

    Explore in-depth questions about Large Language Models (LLMs) to understand their capabilities and limitations.

    • What are the architectural differences between various LLMs like GPT-3, BERT, and T5?

    • How do LLMs handle context and maintain coherence in long conversations?

    • What are the ethical implications of using LLMs in generating content?

    • How do LLMs manage biases present in training data, and what are the consequences?

    • Ca...

  • Answered by AI

I applied via Approached by Company and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - Coding Test 

They asked coding questions related to Javascript. It was a total of 1-hour duration.

Round 2 - Case Study 

If your score is greater than 60, then no need for further rounds. They will hire you directly.
But if your score is between 40-60 then they will arrange 2nd round interview most probably technical.
If your score is below 40 then it is a rejection

Interview Preparation Tips

Topics to prepare for PixelQue Software Software Engineer interview:
  • Es6
  • Javascript
  • Node.Js
  • MongoDB
  • Coding
Interview preparation tips for other job seekers - Focus on your basics and coding skills. You will learn anywhere you go
That's it

Codebase Interview FAQs

How many rounds are there in Codebase interview?
Codebase interview process usually has 3 rounds. The most common rounds in the Codebase interview process are Technical and Resume Shortlist.
How to prepare for Codebase 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 Codebase . The most common topics and skills that interviewers at Codebase expect are Javascript, Python, AWS, Java and MySQL.
What are the top questions asked in Codebase interview?

Some of the top questions asked at the Codebase interview -

  1. What are design patterns ? Are you aware of a...read more
  2. What is asynchronous programmi...read more
  3. What are decorator...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Apptunix Interview Questions
4.1
 • 39 Interviews
Odoo Interview Questions
3.3
 • 28 Interviews
Anywhere Interview Questions
4.6
 • 16 Interviews
Seceon Inc. Interview Questions
4.7
 • 13 Interviews
ThrivePass Interview Questions
4.6
 • 10 Interviews
Faxoc Interview Questions
4.0
 • 9 Interviews
View all

Codebase Reviews and Ratings

based on 28 reviews

4.3/5

Rating in categories

4.2

Skill development

4.3

Work-life balance

4.0

Salary

3.9

Job security

4.1

Company culture

3.8

Promotions

4.0

Work satisfaction

Explore 28 Reviews and Ratings
Senior Software Engineer
19 salaries
unlock blur

₹17 L/yr - ₹27 L/yr

Software Engineer
4 salaries
unlock blur

₹8 L/yr - ₹14.2 L/yr

HR Manager
4 salaries
unlock blur

₹10 L/yr - ₹10.4 L/yr

Software Developer
3 salaries
unlock blur

₹6.8 L/yr - ₹6.8 L/yr

QA Engineer
3 salaries
unlock blur

₹7.5 L/yr - ₹10 L/yr

Explore more salaries
Compare Codebase with

Bhash Software Labs

4.3
Compare

QR Crypher

4.2
Compare

Apptunix

4.1
Compare

HirePro Consulting

3.7
Compare
write
Share an Interview