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 Senior Software Engineer Interview Questions and Answers

Updated 17 Apr 2023

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

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.

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in GlobalLogic
Q4. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
Q5. If you have to prioritize between coding standards and project de ... read more
🔥 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...

🔥 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...

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 ...

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.

Codebase Senior Software Engineer Interview Experiences

2 interviews found

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
Selected Selected
Round 1 - Coding Test 

Asked some medium level SQL questions

Round 2 - HR 

(1 Question)

  • Q1. Everything that the HR asks
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
-

I applied via Company Website and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

Write a code for HTML DOM

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

It's normal question easy to cark

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

I applied via Campus Placement and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Coding Test 

Give you 5 problem in maths , string, sql etc

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via AmbitionBox and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

DSA question and DBMS SQL

Round 2 - Technical 

(1 Question)

  • Q1. Basic concepts and your project

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA and your basics
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Coding Test 

It was online test with 3 coding questions and 18 mcqs

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

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

  • Q1. What interests you most about working at apptunix?
  • Ans. 

    Apptunix offers a dynamic environment for innovation, collaboration, and growth in mobile and web application development.

    • Innovative Projects: Working on cutting-edge technologies like AI and IoT, which allows me to push my skills and creativity.

    • Collaborative Culture: The emphasis on teamwork and knowledge sharing fosters a supportive environment where I can learn from experienced colleagues.

    • Career Growth Opportunities...

  • Answered by AI
  • Q2. How do you handle tight deadlines in app development?
  • Ans. 

    Handling tight deadlines in app development requires effective planning, prioritization, and communication to ensure timely delivery.

    • Prioritize Tasks: Identify critical features that must be completed first. For example, focus on core functionalities before adding enhancements.

    • Agile Methodology: Use agile practices like sprints to break down the project into manageable chunks, allowing for iterative progress and adjust...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay curious, keep learning and tailor your resume to each role. Soft skills matter as much as technical skills.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

  • Q1. Tell be about your self
  • Ans. 

    I am a passionate software developer with a strong background in full-stack development and a love for problem-solving.

    • Experience in JavaScript frameworks like React and Angular, building responsive web applications.

    • Proficient in backend technologies such as Node.js and Express, creating RESTful APIs.

    • Strong understanding of databases, both SQL (PostgreSQL) and NoSQL (MongoDB), for data management.

    • Worked on a team proje...

  • Answered by AI
  • Q2. What inspired you to apply for this role ?
  • Ans. 

    I was inspired by the opportunity to innovate and contribute to impactful projects in a collaborative environment.

    • Passion for technology: I've always been fascinated by how software can solve real-world problems, like developing an app that helps users track their health.

    • Alignment with company values: Your commitment to sustainability resonates with my personal values, and I want to be part of a team that makes a diffe...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was very good and this for helpful for me to join the company

Codebase Interview FAQs

How many rounds are there in Codebase Senior Software Engineer 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 Senior Software Engineer 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 Basic, Cloud, Docker, ERP and Kubernetes.
What are the top questions asked in Codebase Senior Software Engineer interview?

Some of the top questions asked at the Codebase Senior Software Engineer 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
 • 46 Interviews
Odoo Interview Questions
3.3
 • 28 Interviews
Anywhere Interview Questions
4.6
 • 16 Interviews
Seceon Inc. Interview Questions
4.7
 • 13 Interviews
View all
Codebase Senior Software Engineer Salary
based on 19 salaries
₹17 L/yr - ₹27 L/yr
37% more than the average Senior Software Engineer Salary in India
View more details

Codebase Senior Software Engineer Reviews and Ratings

based on 9 reviews

4.6/5

Rating in categories

4.5

Skill development

4.6

Work-life balance

4.1

Salary

3.9

Job security

4.1

Company culture

3.9

Promotions

4.1

Work satisfaction

Explore 9 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