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 Interview Questions and Answers for Freshers

Updated 24 Mar 2025

Codingmart Technologies Interview Experiences for Freshers

Popular Designations

3 interviews found

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

I applied via Campus Placement and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Online MCQs - 15 Questions (Aps, DSA, Output Prediction)

Round 2 - Coding Test 

1 Question (with 3 Enhancement)

Round 3 - Technical 

(2 Questions)

  • Q1. Delete Middle Element from a stack of Odd Length
  • Ans. 

    Remove middle element from a stack with odd length

    • Find the middle index of the stack by dividing the length by 2

    • Remove the element at the middle index

    • Adjust the stack by shifting elements if necessary

  • Answered by AI
  • Q2. Resume Based Questions
Round 4 - HR 

(2 Questions)

  • Q1. Self Introduction but without the details in the resume
  • Q2. Asked whether ok with the bond

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Dsa predict the output

Round 2 - Coding Test 

One medium problem. Based on that the students are selected. And modifications in code has been asked

Round 3 - HR 

(1 Question)

  • Q1. Coding related questions

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

Product Engineer Interview Questions & Answers

user image madhu kiran

posted on 10 Aug 2016

Interview Questionnaire 

2 Questions

  • Q1. Logical questions
  • Q2. Technical questions

Interview Preparation Tips

Round: Resume Shortlist
Experience: Company will shortlist students according to their required eligibility.
For our campus they shortlisted students of >7.5 CGPA.
80% in 10th and
80% in 12th
No standing Arrears

Round: Test
Experience: A puzzle based on JQuery or JavaScript or HTML,CSS. A Video will be shown and according to the result,we should create a webpage
Questions were like :
-----?v=Z1x4v6yFQnQ
-----?v=qE68PP_rVrc
-----?v=FBdsNDKecq8
-----?v=m1Yvq-ExgfA
-----?v=iHP372xd_YU
Tips: Priority will be given to those who does in JQuery. So keep a track and knowledge on the basics and implementation

Round: Test
Experience: Students who were passed in round 1 will be given another puzzle of next level and this will be like a sort of basic game play.
Tips: Internet help can be taken solving the questions, So you have to identify what fields can be used and surf accordingly step by step

Round: Group Activity
Experience: The shortlisted members were divided into groups and given a choice of selecting one web language (SASS,BOOTSTRAP,COFFEESCRIPT,ANGULAR.JS,NODE.JS,,etc.).

We are given a choice of selecting own idea implementation and should be done on selected web language

Round: Technical Interview
Experience: i was interviewed for 20 min and the questions were on Logical and technical.
Questions based on our Resume.(Whatever we are perfect enough in)
Tips: Get thorough study of Resume

Skills: Learning Ability, Logical Puzzles
College Name: SRM University

Product Engineer Interview Questions asked at other Companies

Q1. Left View of a Binary Tree Given a binary tree, your task is to print the left view of the tree. The left view of a binary tree contains the nodes visible when the tree is viewed from the left side. Input: The input consists of elements in ... read more
View answer (1)

Jobs at Codingmart Technologies

View all

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Be transparent and real. Don't bluff :)
Fingent has got a good number of people in the interview panel(my personal experience)
Even if you do not know the answer, the panel will explain it to you.

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.

Interview Preparation Tips

Round: Test
Experience: PAPER DURATION: 3 hours
NO. OF QUESTIONS: 2 (20 marks each)
MAXIMUM MARKS: 20*2 = 40 marksQUESTION 1:
JSON Prettier:-Write a program which takes JSON as input and gives prettified JSONYou need to read JSON from STDIN. Input gives one line of uglified JSON.Output should be formatted JSON. Check the standard output link.Use 2 white spaces (not‘\t’) for one indentation.SAMPLE INPUT:{“group” : {list : [1,2,3]}, “list” : [“a”,”b”,”c”]}SAMPLE OUTPUT:{“group” : {List : [1,2,3]},“list” : [“a”,”b”,”c”]}EXPLANATION: Input will be uglifiedjson in one line and output will be prettified format of that. QUESTION 2:XML parse plus series computationEvaluate an expression given in XML format. Keys will be Expr- contains the entire expression. Elem – contains the digit, sum, Prod- contains two or more keys whose evaluation needs to be summed or multiplied respectively. Sub will contain 2 keys or more, where the second key onwards will have to be subtracted from the first one. Div- will contain 2 keys in which first key will need to be divided by second. SAMPLE INPUT:4673 SAMPLE OUTPUT:
20EXPLANATION:Input will be xml file through standard input. End of xml file marked by .
Duration: 180 minutes
Total Questions: 2

College Name: NA

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.
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. Describe Life cycle in react
  • Ans. 

    React has three main phases in its lifecycle: mounting, updating, and unmounting.

    • Mounting: when a component is created and inserted into the DOM

    • Updating: when a component is updated due to changes in props or state

    • Unmounting: when a component is removed from the DOM

    • Lifecycle methods can be used to perform actions at each phase, such as componentDidMount() or componentWillUnmount()

    • React also has error handling methods,

  • Answered by AI
  • Q2. Explain strict mode in javascript and it's use
  • Ans. 

    Strict mode is a way to write secure and optimized JavaScript code.

    • Enables catching of silent errors

    • Disallows duplicate property names or parameters

    • Prevents use of undeclared variables

    • Makes `eval()` safer to use

    • Throws errors on invalid usage of `this` keyword

  • Answered by AI
Round 3 - Assignment 

CURD operations along with implementation of a mock UI

Interview Preparation Tips

Interview preparation tips for other job seekers - They are doing good job. If possible try to send a rejection mail along with the reason if candidate is not selected.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

(1 Question)

  • Q1. Tell about Oops concepts
  • Ans. 

    OOPs concepts are fundamental principles in object-oriented programming, including inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex imple...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Will ask coding related
Round 4 - HR 

(1 Question)

  • Q1. What is Expected salary
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

Codingmart Technologies Interview FAQs

How many rounds are there in Codingmart Technologies interview for freshers?
Codingmart Technologies interview process for freshers usually has 3-4 rounds. The most common rounds in the Codingmart Technologies interview process for freshers are Coding Test, HR and Aptitude Test.
How to prepare for Codingmart Technologies interview for freshers?
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 Continuous Improvement, IT Recruitment, Business Administration, Client Engagement and Cold Calling.
What are the top questions asked in Codingmart Technologies interview for freshers?

Some of the top questions asked at the Codingmart Technologies interview for freshers -

  1. Delete Middle Element from a stack of Odd Len...read more
  2. What is the algorithm used in Google Map...read more
  3. logical questi...read more
How long is the Codingmart Technologies interview process?

The duration of Codingmart Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Codingmart Technologies Interview Process for Freshers

based on 2 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

BrowserStack Interview Questions
3.6
 • 49 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 Reviews and Ratings

based on 71 reviews

4.2/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

3.8

Salary

3.3

Job security

4.1

Company culture

3.7

Promotions

3.9

Work satisfaction

Explore 71 Reviews and Ratings
Digital Marketing Specialist

Coimbatore

1-3 Yrs

Not Disclosed

IT Recruiter

Coimbatore

0-1 Yrs

Not Disclosed

Lead Generation Specialist

Coimbatore

0-1 Yrs

Not Disclosed

Explore more jobs
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.7
Compare

Yodlee

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