Upload Button Icon Add office photos
Engaged Employer

i

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

Codingmart Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Codingmart Technologies Full Stack Developer Interview Questions and Answers

Updated 12 Aug 2024

Codingmart Technologies Full Stack Developer Interview Experiences

3 interviews found

Full Stack Developer Interview Questions & Answers

user image Deekshap Dr.NGP Itech

posted on 10 Jul 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

It consists of several technical questions and DSA

Round 2 - Coding Test 

The coding round was moderate

Round 3 - One-on-one 

(2 Questions)

  • Q1. What are the frameworks used in development?
  • Ans. 

    Frameworks are tools that provide pre-written code to help developers build applications more efficiently.

    • Popular front-end frameworks include React, Angular, and Vue.js

    • Common back-end frameworks include Express.js, Django, and Ruby on Rails

    • Full stack frameworks like MEAN and MERN stack combine front-end and back-end technologies

  • Answered by AI
  • Q2. Explain the projects

Skills evaluated in this interview

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

I applied via Campus Placement

Round 1 - Coding Test 

In round one they asked advanced dsa mcqs. I found difficulty there. In round 2 the process was different they gave a question and allowed us to surf in internet and study. after that we have to code the question(for me Trapping rain water).

Round 2 - One-on-one 

(1 Question)

  • Q1. Technical hr round. they asked me a self intro and asked to write code in paper for two problems. one is in aplhanumeric string we have to add only the numbers, i have done this. another is remove k elemen...

Interview Preparation Tips

Interview preparation tips for other job seekers - you should have a small knowledge in problem solving and a little amount of luck

Full Stack Developer Interview Questions Asked at Other Companies

asked in DBS Bank
Q1. Query and Matrix Problem Statement You are given a binary matrix ... read more
asked in Accenture
Q2. Find Duplicates in an Array Given an array ARR of size 'N', where ... read more
asked in MakeMyTrip
Q3. Tower of Hanoi Problem Statement You have three rods numbered fro ... read more
Q4. Maximum Difference Problem Statement Given an array ARR of N elem ... read more
asked in Samsung
Q5. LCA of Binary Tree Problem Statement You are given a binary tree ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - DSA Mcq 

(2 Questions)

  • Q1. Pseudo code in linked list
  • Ans. 

    Pseudo code example for linked list operations

    • Create a Node class with data and next pointer

    • Initialize head as null for an empty linked list

    • Insert at the beginning: create a new node, set its next to current head, update head to new node

    • Traverse the linked list: start from head, loop until reaching null, move to next node

  • Answered by AI
  • Q2. Stack queue binary tree

Interview Preparation Tips

Topics to prepare for Codingmart Technologies Full Stack Developer interview:
  • DSA
Interview preparation tips for other job seekers - GOOD in DSA
Knowledge in your project

Skills evaluated in this interview

Interview questions from similar companies

I applied via Company Website and was interviewed before May 2018. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Questions about Oops, data structures based on the projects I had done, and my resume
  • Q2. Questions about classes and abstraction

Interview Preparation Tips

Interview preparation tips for other job seekers - 2 parts; part 1 is a coding test and part 2 is discussion.

I applied via Naukri.com and was interviewed before Jul 2019. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Questions about the projects you worked with. About how specific coding challenges were solved. How it could have been done other ways. etc.
  • Q2. About Python versions and differences. Impact on frameworks.
  • Q3. About module design, apis.

Interview Preparation Tips

Interview preparation tips for other job seekers - It is a relaxed interview, like a discussion. The questions are tough in that they make you think. Review your previous projects and be honest.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 DSA questions Both are from DP

Round 2 - Technical 

(2 Questions)

  • Q1. 2 Questions , 1 is DSA
  • Q2. Second question is Puzzle

Interview Preparation Tips

Interview preparation tips for other job seekers - Practise DSA more and give more and more interviews.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Oops? .net core features

I appeared for an interview in Jan 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 120 minutes
Round difficulty - Hard

This round was very difficult. I never do these much difficulty level of coding questions. But i give my best, and just do every questions by using step by step process.

  • Q1. 

    Hourglass Pattern Problem Statement

    Given an integer 'N', print an hourglass pattern based on the value of 'N'.

    Input:

    The first and only line of input contains an integer, denoting the value of N.

    Out...

  • Ans. 

    Print an hourglass pattern based on the given integer 'N'.

    • Read the integer 'N' as input

    • Print the top half of the hourglass pattern with decreasing numbers

    • Print the bottom half of the hourglass pattern with increasing numbers

    • Handle the constraints for 'N' values between 1 and 50

  • Answered by AI
  • Q2. 

    BFS Traversal in a Graph

    Given an undirected and disconnected graph G(V, E) where V vertices are numbered from 0 to V-1, and E represents edges, your task is to output the BFS traversal starting from the ...

  • Ans. 

    BFS traversal in a disconnected graph starting from vertex 0.

    • Use BFS algorithm to traverse the graph starting from vertex 0.

    • Explore neighbor nodes first before moving to the next level neighbors.

    • Consider bidirectional edges in an undirected graph.

    • Output the BFS traversal sequence for each test case in a separate line.

    • Ensure the BFS path starts from vertex 0 and print connected nodes in numerical sort order.

  • Answered by AI
  • Q3. 

    Sort a Stack Problem Statement

    You are given a stack. Your task is to sort the elements within the stack in ascending order using only push and pop operations. You are allowed to use one additional stack ...

  • Ans. 

    Sort a given stack in ascending order using only push and pop operations with the help of an additional stack.

    • Use one additional stack to assist in sorting the elements.

    • Pop elements from the input stack and push them onto the auxiliary stack in sorted order.

    • Keep track of the current minimum element to maintain ascending order.

    • Pop elements from the auxiliary stack back to the input stack to get the sorted order.

  • Answered by AI
Round 2 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

This round is also coding round in this round we have a small video call interaction too, in which hr ask few questions to only those whose coding question is correct.

  • Q1. 

    Next Smaller Palindrome Problem Statement

    You are given a palindrome number represented as a string S. Your task is to find the largest palindrome number that is strictly less than S.

    Example:

    Input:
    T...
  • Ans. 

    Find the largest palindrome number strictly less than a given palindrome number.

    • Iterate from the middle towards the start of the number and decrement the digits to create the largest palindrome less than the given number.

    • Handle cases where the number is all '9's by changing the middle digit to '9' and decrementing the rest of the digits.

    • If the number has an odd length, simply mirror the first half to create the largest

  • Answered by AI
  • Q2. 

    Rotting Oranges Problem Statement

    You are given a grid containing oranges where each cell of the grid can contain one of the three integer values:

    • 0 - representing an empty cell
    • 1 - representing a fre...
  • Ans. 

    Find minimum time to rot all fresh oranges adjacent to rotten oranges in a grid.

    • Use Breadth First Search (BFS) to simulate the rotting process.

    • Track the time taken to rot all fresh oranges.

    • Return -1 if all fresh oranges cannot be rotten.

    • Handle edge cases like empty grid or no fresh oranges.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Development in GurgaonEligibility criteriaAbove 7 cgpaZIGRAM interview preparation:Topics to prepare for the interview - OOPS , Data Structures, Dynamic Programming, Algorithms from variuos coding platforms , Database Management System, Operating System, Web developmentTime required to prepare for the interview - 2 monthInterview preparation tips for other job seekers

Tip 1 : Relax and don't stress. Practice
Tip 2 : Build Resume according to Job Description , but don't lie.
Tip 3 : Have good projects and knowledge regarding important subjects related to interviews

Application resume tips for other job seekers

Tip 1 : Include only genuine information, never lie in resume , it will impact to bad impression. 
Tip 2 : Skills relevant to Job Description
Tip 3 : Resume should not be more than 2 pages 
Tip 4 : Have some projects and internship on your resume because it will give good impression

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

They given one assignment in 5hrs,happens in Google meet.I.had done this and selected for next round

Round 2 - Technical 

(1 Question)

  • Q1. Useless to mention here

Interview Preparation Tips

Interview preparation tips for other job seekers - They told that second round was my last round of interview..after clearing that they told me to come to office for recieving offer letter..after reaching to the office again they started technical interview and they didn't informed to bring any laptop and all..I had called to hr before that for confirmation about bringing of laptop,still they told not required

After interview started interviewer asked that open your laptop, amazing 😍 interview that was..
Please get clear info before going to interview process..
Provide clear info about the interview.rounds...or else don't waste the time of candidates.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Application developement

Codingmart Technologies Interview FAQs

How many rounds are there in Codingmart Technologies Full Stack Developer interview?
Codingmart Technologies interview process usually has 2 rounds. The most common rounds in the Codingmart Technologies interview process are Coding Test, One-on-one Round and Assignment.
How to prepare for Codingmart Technologies Full Stack Developer 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 Codingmart Technologies. The most common topics and skills that interviewers at Codingmart Technologies expect are Javascript, Hibernate, Postgresql, Redux and Spring Boot.
What are the top questions asked in Codingmart Technologies Full Stack Developer interview?

Some of the top questions asked at the Codingmart Technologies Full Stack Developer interview -

  1. what are the frameworks used in developme...read more
  2. Pseudo code in linked l...read more
  3. Stack queue binary t...read more

Tell us how to improve this page.

Codingmart Technologies Full Stack Developer Interview Process

based on 3 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

BrowserStack Interview Questions
3.6
 • 48 Interviews
Fleetx.io Interview Questions
3.7
 • 28 Interviews
ZIGRAM Interview Questions
3.2
 • 26 Interviews
RGBSI Interview Questions
3.4
 • 24 Interviews
Springworks Interview Questions
4.5
 • 23 Interviews
Fingent Interview Questions
4.4
 • 22 Interviews
View all
Codingmart Technologies Full Stack Developer Salary
based on 5 salaries
₹4.6 L/yr - ₹8.2 L/yr
41% less than the average Full Stack Developer Salary in India
View more details

Codingmart Technologies Full Stack Developer Reviews and Ratings

based on 2 reviews

4.2/5

Rating in categories

3.6

Skill development

3.8

Work-life balance

3.2

Salary

2.6

Job security

3.8

Company culture

3.2

Promotions

3.2

Work satisfaction

Explore 2 Reviews and Ratings
Product Engineer
133 salaries
unlock blur

₹3 L/yr - ₹12.1 L/yr

Production Engineer
25 salaries
unlock blur

₹4.2 L/yr - ₹12 L/yr

Software Engineer
12 salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Software Developer
11 salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Business Analyst
10 salaries
unlock blur

₹4.5 L/yr - ₹7.1 L/yr

Explore more salaries
Compare Codingmart Technologies with

Aurigo

4.7
Compare

Prime Focus Technologies

3.3
Compare

Peel-works

3.6
Compare

Yodlee

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