Upload Button Icon Add office photos

Filter interviews by

CodeNation SDE (Software Development Engineer) Interview Questions and Answers

Updated 27 Nov 2015

CodeNation SDE (Software Development Engineer) Interview Experiences

1 interview found

Interview Preparation Tips

Round: DEBBUGING ROUND
Experience: A separate debugging (also on Hackerrank )round was conducted.

Round: Technical Interview
Experience: 2 rounds Technical interviews (1-2 hours each ,online on Skype and Hangouts )

General Tips: 1) Start practicing on codechef.com as early as possible (even first years). Go to the Practice Section -> Easy problems and start solving from bottom to top.
2) Participate in Codechef Long and short contests every month
3) Once you are good familiar with basic algorithms you can also solve problems on Hackerrank and Codeforces.
4) I do not prefer reading books. Best resource for learning algorithms is search on Google and see the top 3-4 links.Personal blogs and sites like leetcode and TopCoder tutorials are helpful.
5) Once you are comfortable with coding, you can refer to GeeksforGeeks and CareerCup in the last few weeks to practice company specific questions
6) Try to do at least one course every semester from a MOOC like edx.org , coursera.org .
Skills:
College Name: NIT Surathkal

Interview questions from similar companies

Round 1 - Aptitude Test 

Very easy

Round 2 - Technical 

(2 Questions)

  • Q1. How to find length , freq of each char and list of unique characters of a string
  • Ans. 

    To find length, frequency of each character and list of unique characters of a string.

    • Iterate through the string and count the frequency of each character using a hash table.

    • Create a list of unique characters by iterating through the hash table.

    • Calculate the length of the string using the built-in length function.

    • Return the frequency, length and list of unique characters as an array of strings.

  • Answered by AI
  • Q2. How to check wheather a string is palindrome or not?
  • Ans. 

    To check if a string is palindrome or not.

    • Compare the first and last characters of the string and continue towards the middle until all characters have been compared.

    • If all characters match, the string is a palindrome.

    • If any characters do not match, the string is not a palindrome.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just keep basics clear..and command on your projects

Skills evaluated in this interview

I appeared for an interview in Aug 2021.

Interview Questionnaire 

1 Question

  • Q1. Os c c++ oops

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well basic topics

I appeared for an interview in Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - One hour aptitude,1.5 hour coding
Round difficulty - Medium

First round was of aptitude that was easy and second round was of coding which had medium level questions.

  • Q1. 

    Prime Numbers Identification

    Given a positive integer N, your task is to identify all prime numbers less than or equal to N.

    Explanation:

    A prime number is a natural number greater than 1 that has no po...

  • Ans. 

    Identify all prime numbers less than or equal to a given positive integer N.

    • Iterate from 2 to N and check if each number is prime

    • Use the Sieve of Eratosthenes algorithm for efficient prime number identification

    • Optimize by only checking up to the square root of N for divisors

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 20 minutes
Round difficulty - Medium

First I was asked about my projects and then 2 questions on array were given.

  • Q1. 

    Count Pairs with Given Sum

    Given an integer array/list arr and an integer 'Sum', determine the total number of unique pairs in the array whose elements sum up to the given 'Sum'.

    Input:

    The first line c...
  • Ans. 

    Count the total number of unique pairs in an array whose elements sum up to a given value.

    • Use a hashmap to store the frequency of each element in the array.

    • Iterate through the array and for each element, check if (Sum - current element) exists in the hashmap.

    • Increment the count of pairs if the complement exists in the hashmap.

    • Divide the count by 2 to avoid counting duplicates (arr[i], arr[j]) and (arr[j], arr[i]) separ

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Guru Nanak Dev University. Eligibility criteriaNoNagarro interview preparation:Topics to prepare for the interview - Data structures,machine learning,deep learning,oops , dbmsTime required to prepare for the interview - 2-3 monthsInterview preparation tips for other job seekers

Tip 1 : Data structures should be on your tips.
Tip 2 : Learn how to make logic.
Tip 3 : Be confident while giving the interview.

Application resume tips for other job seekers

Tip 1 : Add projects with description.
Tip 2 : Be true to yourself in resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in Sep 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

First Round-It was 90 minutes round and basically contains aptitude question which you need to solve quickly.

  • Q1. MCQs

    Normal aptitude and English and reasoning questions.

  • Ans. 

    The question involves multiple choice questions on aptitude, English, and reasoning.

    • Practice solving different types of aptitude questions like numerical reasoning, logical reasoning, and data interpretation.

    • Improve your English skills by reading books, newspapers, and practicing grammar exercises.

    • Enhance your reasoning abilities by solving puzzles, brain teasers, and logical reasoning problems.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 40 minutes
Round difficulty - Easy

My interview started and the interviewer asked me to introduce myself. Also he asked me some questions related to my hobbies like the last movie I saw in theatre (these questions are asked to make you comfortable and familiarise you with the interview) .

After this he asked me about my projects.
In which technology did I work. What is my project all about , what are its features and how is it useful in the real world.

After this, since I made my project in native Android using Java he asked me some conceptual questions in Java.He asked me about Collection framework.
After this he asked me about OOPs.What is OOPs, then he asked me about polymorphism and told me to explain it.

Finally, he gave me a question and asked me to code it.
Q. Find the second largest element in the given array (don't use sorting ).
Eg. arr={6,7,8,9,0}
Then, output=8

Interview took around 35-40 min .
At last he asked me if I had any questions for him to which I replied in what technologies do I get to work on if I get selected.

  • Q1. 

    Find the Second Largest Element

    Given an array or list of integers 'ARR', identify the second largest element in 'ARR'.

    If a second largest element does not exist, return -1.

    Example:

    Input:
    ARR = [2,...
  • Ans. 

    Find the second largest element in an array of integers.

    • Iterate through the array to find the largest and second largest elements.

    • Handle cases where all elements are identical.

    • Return -1 if second largest element does not exist.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from National Institute of Technology, Raipur. I applied for the job as SDE - Intern in BangaloreEligibility criteria7+ CGPA, No Active backlogsOptum interview preparation:Topics to prepare for the interview - Arrays, Linked Lists , Stacks & Queues ,Trees and Graphs, OOPs, AlgorithmsTime required to prepare for the interview - 5 monthInterview preparation tips for other job seekers

Tip 1 : Consistency-Solving problems daily 
Tip 2 : Quality over quantity
Tip 3 : build confidence by solving problems till you confident about any topic (don't go over number of questions)

Application resume tips for other job seekers

Tip 1 : Be Precise 
Tip 2 : mention only important tech related things like projects and experiences

Final outcome of the interviewSelected
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Coding Test 

It had mcq and 1 hard coding question

Round 2 - Technical 

(2 Questions)

  • Q1. They asked me about backtracking and dp series problem and also to solve the given question
  • Q2. Java and in depth about different pillars of java

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus primarily on Java and advanced data structures and algorithms topics, such as backtracking and dynamic programming.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Easy to medium questions

Round 2 - Hackathon 

(1 Question)

  • Q1. Create a software
  • Ans. 

    A software for managing inventory in a retail store

    • Create a user-friendly interface for adding, updating, and deleting products

    • Include features for tracking sales, restocking inventory, and generating reports

    • Implement barcode scanning functionality for quick product lookup

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Just stick to the basics

Skills evaluated in this interview

Software Developer Intern Interview Questions & Answers

Dell user image Nikhita Bhattacharya

posted on 13 Dec 2024

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

I appeared for an interview before Dec 2023.

Round 1 - Aptitude Test 

Fundamental output questions and aptitude assessments.

Round 2 - Technical 

(1 Question)

  • Q1. Pattern printing Delete drop truncate difference Projects discussion
Round 3 - HR 

(2 Questions)

  • Q1. What motivated you to choose Dell?
  • Ans. 

    I chose Dell for their reputation for innovation, strong company culture, and opportunities for growth.

    • Reputation for innovation in technology industry

    • Strong company culture focused on employee development

    • Opportunities for growth and advancement within the company

  • Answered by AI
  • Q2. Opinion about JD.

I appeared for an interview in Dec 2020.

Round 1 - Video Call 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

he interviews were conducted simultaneously for all on BlueJeans along with a code sharing website. After the initial set up and introduction, a set of 2 questions from DSA were asked from all candidates. The results were announced the same day.

  • Q1. 

    DFS Traversal Problem Statement

    Given an undirected and disconnected graph G(V, E), where V is the number of vertices and E is the number of edges, the connections between vertices are provided in the 'GR...

  • Ans. 

    DFS traversal to find connected components in an undirected and disconnected graph.

    • Use Depth First Search (DFS) algorithm to traverse the graph and find connected components.

    • Maintain a visited array to keep track of visited vertices.

    • For each unvisited vertex, perform DFS to explore all connected vertices and form a connected component.

  • Answered by AI
  • Q2. 

    Median of Two Sorted Arrays

    Given two sorted arrays A and B of sizes N and M, find the median of the merged array formed by combining arrays A and B. If the total number of elements, N + M, is even, the m...

  • Ans. 

    Find the median of two sorted arrays by merging them and calculating the middle element(s).

    • Merge the two sorted arrays into one sorted array.

    • Calculate the median based on the total number of elements in the merged array.

    • If the total number of elements is even, take the mean of the two middle elements as the median.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaNo criteriaNagarro interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, Algorithms, Dynamic Programming, DBMSTime required to prepare for the interview - 7 monthsInterview preparation tips for other job seekers

Tip 1 : Don't forget to revise OOPS, OS, DBMS too.
Tip 2 : During the interview, one thing that is asked for sure is the time complexity of your solution, so always know the complexity of your algorithms.
Tip 3 : Try out mock interviews with friends, that's the best thing you can do for yourself other than practicing
questions

Application resume tips for other job seekers

Tip 1 : Make sure that there are no formatting errors
Tip 2 : Have your projects clearly mentioned and well explained

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in Oct 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 120 mintues
Round difficulty - Medium

Aptitude round was in afternoon around 3 pm and every person who has given aptitude round was also given an other chance which was coding round. There was a time gap of 1 hr between two test. both of these went online. Environment was good without any lag. Webcam was on throughout the test. There were 3 coding questions, of which 2 were medium and one was easy. I attempted all of them.

  • Q1. 

    String Rotation Problem Statement

    You are given a string named str and an integer D. Your task is to perform both left (anticlockwise) and right (clockwise) rotations on the given string by D units, start...

  • Ans. 

    Implement left and right string rotations by D units on a given string.

    • Implement leftRotate() function to return string after left rotation by D units.

    • Implement rightRotate() function to return string after right rotation by D units.

    • Consider handling edge cases like empty string or D exceeding string length.

    • Example: For input 'coding', D=2, leftRotate() should return 'dingco' and rightRotate() should return 'ngcodi'.

  • Answered by AI
  • Q2. 

    Height of Binary Tree

    You are provided with the Inorder and Level Order traversals of a Binary Tree composed of integers. Your goal is to determine the height of this Binary Tree without actually construc...

  • Ans. 

    Calculate the height of a Binary Tree given its Inorder and Level Order traversals without constructing it.

    • Use the properties of Inorder and Level Order traversals to determine the height of the Binary Tree.

    • The height of a Binary Tree is the number of edges on the longest path from the root to a leaf node.

    • Consider edge cases like a single node tree or empty tree when calculating the height.

  • Answered by AI
  • Q3. 

    Common Elements Problem Statement

    Identify and output the common strings present in both given arrays of lowercase alphabets for each test case.

    Input:

    The first line contains an integer 'T' representin...
  • Ans. 

    The task is to find and output the common strings present in both given arrays of lowercase alphabets for each test case.

    • Iterate through the elements of the second array and check if they are present in the first array.

    • Use a hash set or map to efficiently check for common elements.

    • Return the common strings in the order they appear in the second array.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

This round was at 12 pm. Interviewer and I greeted each other and then he asked me to explain all the questions I had done during test. He shared screen with my report of test which was having the solutions I typed during coding rounds. It took around 20 minutes to explain all three questions. Interviewer was happy with my explanation. Then he had asked me one coding question and various questions based on my project. I answered him all with a smile.

  • Q1. 

    Maximum Subarray Sum Problem Statement

    Given an array arr of length N consisting of integers, find the sum of the subarray (including empty subarray) with the maximum sum among all subarrays.

    Explanation...

  • Ans. 

    Find the sum of the subarray with the maximum sum among all subarrays in an array of integers.

    • Use Kadane's algorithm to find the maximum subarray sum efficiently.

    • Initialize two variables, one for current sum and one for maximum sum.

    • Iterate through the array and update the current sum and maximum sum accordingly.

    • Return the maximum sum as the result.

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Medium

It was in afternoon. HR called to me to fix a meeting on Microsoft teams. He was very polite with experience of corporate environment.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in GurgaonEligibility criteria6 CGPANagarro interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, Computer Networks, DBMS, SQL, OS, PythonTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Properly grasp Data Structures and Algorithms from basics. Cramming problems would not help.
Tip 2 : Try platforms like code-zen for practice. Its a good platform with selected questions. 
Tip 3 : Do at least 2 projects in which you are confident enough to answer anything the interviewer ask.
Tip 4 : Be confident with a smile on face during interviews.

Application resume tips for other job seekers

Tip 1 : Just one page resume, not more than that for freshers.
Tip 2 : Make it as attractive/catchy as you can. Interviewers don't spend much time while reading your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Tell us how to improve this page.

Interview Questions from Similar Companies

Teleperformance Interview Questions
3.9
 • 1.8k Interviews
Nagarro Interview Questions
4.0
 • 762 Interviews
FIS Interview Questions
3.9
 • 487 Interviews
Dell Interview Questions
3.9
 • 390 Interviews
Quest Global Interview Questions
3.6
 • 307 Interviews
NeoSOFT Interview Questions
3.7
 • 268 Interviews
Qualcomm Interview Questions
3.8
 • 256 Interviews
Episource Interview Questions
3.9
 • 220 Interviews
FactSet Interview Questions
3.9
 • 208 Interviews
View all
CodeNation SDE (Software Development Engineer) Salary
based on 33 salaries
₹24 L/yr - ₹40 L/yr
32% more than the average SDE (Software Development Engineer) Salary in India
View more details

CodeNation SDE (Software Development Engineer) Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
SDE (Software Development Engineer)
33 salaries
unlock blur

₹24 L/yr - ₹40 L/yr

Sde1
10 salaries
unlock blur

₹33.2 L/yr - ₹37.5 L/yr

Software Engineer
9 salaries
unlock blur

₹30 L/yr - ₹36.5 L/yr

Software Developer
8 salaries
unlock blur

₹30 L/yr - ₹35 L/yr

Software Development Engineer
8 salaries
unlock blur

₹24 L/yr - ₹37 L/yr

Explore more salaries
Compare CodeNation with

Teleperformance

3.9
Compare

Optum Global Solutions

4.0
Compare

FIS

3.9
Compare

Nagarro

4.0
Compare
Did you find this page helpful?
Yes No
write
Share an Interview