Upload Button Icon Add office photos

Filter interviews by

CBNITS Software Engineer Interview Questions, Process, and Tips

Updated 6 Jan 2023

CBNITS Software Engineer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

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 

(1 Question)

  • Q1. Write a program to implement stack using class.
  • Ans. 

    Program to implement stack using class

    • Create a class named Stack with necessary methods like push, pop, peek, isEmpty

    • Use an array or linked list to store the elements in the stack

    • Implement the push method to add elements to the top of the stack

    • Implement the pop method to remove and return the top element from the stack

    • Implement the peek method to return the top element without removing it

    • Implement the isEmpty method to

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Implement linked list
  • Ans. 

    A linked list is a data structure where each element points to the next one.

    • Create a Node class with a value and a next pointer

    • Create a LinkedList class with a head pointer and methods to add, remove, and traverse nodes

    • Example: Node(5) -> Node(10) -> Node(15)

    • Example: LinkedList.add(5), LinkedList.add(10), LinkedList.add(15), LinkedList.remove(10)

  • Answered by AI
  • Q2. Write a program to find factorial of a number using recursion.
  • Ans. 

    Program to find factorial of a number using recursion.

    • Define a function that takes a number as input.

    • Check if the number is 0 or 1, return 1 in that case.

    • If not, call the function recursively with n-1 as input and multiply it with n.

    • Return the result.

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Write a program to remove duplicate elements from an array.
  • Ans. 

    Program to remove duplicate elements from an array

    • Use a hashset to store unique elements

    • Iterate through the array and add non-duplicates to the hashset

    • Convert hashset back to array

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare data structure and oops concepts and practice coding.

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. Oops related questions
  • Q2. C language quizzes
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding Rount
DSA Round + Puzzle
SQL + Project Discussion
JS

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Dsa problems dp and tress problem

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about your self
  • Ans. 

    I am a passionate software engineer with 5 years of experience in developing web applications using various technologies.

    • 5 years of experience in software development

    • Proficient in developing web applications

    • Skilled in using various technologies

    • Passionate about software engineering

  • Answered by AI
  • Q2. Projects and intership

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn DSA
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Given an array Reverse array
  • Ans. 

    Reverse array of strings

    • Iterate through the array and swap elements from start to end

    • Use two pointers, one at the beginning and one at the end, and swap elements until they meet

  • Answered by AI
  • Q2. Giaven a string Reverse string
  • Ans. 

    Reverse a given string

    • Use built-in functions like reverse() or loop through the string in reverse order

    • Create a new string and append characters from the original string in reverse order

    • Convert the string to an array of characters, reverse the array, and then join it back into a string

  • Answered by AI
  • Q3. Given array find sum of all elements
  • Ans. 

    Calculate sum of all elements in a given array of strings

    • Iterate through the array and convert each element to integer before adding to sum

    • Handle edge cases like empty array or non-numeric elements

    • Return the final sum after iterating through all elements

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA well

Skills evaluated in this interview

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

(1 Question)

  • Q1. Phone screen about previous experience
Round 2 - Technical 

(1 Question)

  • Q1. Mobile app development basics
Round 3 - HR 

(1 Question)

  • Q1. Culture fit questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at National Institute of Technology (NIT), Karnataka and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Coding Test 

Question based on array string linkedlist

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

I applied via LinkedIn and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Coding exercise related to probability

Round 2 - Technical 

(2 Questions)

  • Q1. Database design for ride hailing service like uber, ola
  • Q2. Tech stack needed to build a real time application
  • Ans. 

    Tech stack for real time applications includes WebSocket, Node.js, Redis, and MongoDB.

    • Use WebSocket for real-time communication between client and server

    • Node.js for server-side logic and handling multiple connections efficiently

    • Redis for caching and storing real-time data

    • MongoDB for persistent data storage and retrieval

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Though the interviewer was friendly his tech knowledge was just average.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Campus Placement and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Consisted of aptitude and coding output questions

Round 2 - Coding Test 

Coding test was given with three questions .we have to write in on word in 45 mins

Round 3 - HR 

(1 Question)

  • Q1. They asked puzzles and other usual questions
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. RDBMS related questions asked
  • Q2. SQL login building related questions

CBNITS Interview FAQs

How many rounds are there in CBNITS Software Engineer interview?
CBNITS interview process usually has 4 rounds. The most common rounds in the CBNITS interview process are Technical and Resume Shortlist.
What are the top questions asked in CBNITS Software Engineer interview?

Some of the top questions asked at the CBNITS Software Engineer interview -

  1. Write a program to find factorial of a number using recursi...read more
  2. Write a program to implement stack using cla...read more
  3. Write a program to remove duplicate elements from an arr...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 CBNITS interview
Campus Placement
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
CBNITS Software Engineer Salary
based on 14 salaries
₹5 L/yr - ₹9 L/yr
11% less than the average Software Engineer Salary in India
View more details

CBNITS Software Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

4.0

Work-Life balance

4.0

Salary & Benefits

4.0

Job Security

4.0

Company culture

4.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 1 Review and Rating
Programmer Analyst
43 salaries
unlock blur

₹3 L/yr - ₹7.2 L/yr

Software Developer
39 salaries
unlock blur

₹3 L/yr - ₹8.1 L/yr

Full Stack Developer
23 salaries
unlock blur

₹3.6 L/yr - ₹12.8 L/yr

Front end Developer
20 salaries
unlock blur

₹3 L/yr - ₹13.2 L/yr

Junior Programmer
16 salaries
unlock blur

₹3 L/yr - ₹5 L/yr

Explore more salaries
Compare CBNITS with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview