Upload Button Icon Add office photos
Engaged Employer

i

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

Coditas Technologies Verified Tick

Compare button icon Compare button icon Compare
3.1

based on 216 Reviews

Filter interviews by

Coditas Technologies Software Developer Interview Questions and Answers

Updated 23 Nov 2024

Coditas Technologies Software Developer Interview Experiences

6 interviews found

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

I was interviewed in Aug 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Sessions in MVC
  • Ans. 

    Sessions in MVC are used to store user-specific data across multiple requests.

    • Sessions are used to maintain state between HTTP requests in MVC applications.

    • Session data is stored on the server and can be accessed by the client using a session ID.

    • Sessions can be used to store user authentication information, shopping cart items, etc.

  • Answered by AI
  • Q2. Using keyword in C#
  • Ans. 

    Keywords in C# are reserved words that have special meaning and cannot be used as identifiers.

    • Keywords are predefined and cannot be changed or redefined.

    • Examples of keywords in C# include 'class', 'int', 'void', 'if', 'else', 'for', 'while', etc.

    • Keywords are case-sensitive.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

1st round of online aptitude

Round 2 - Group Discussion 

It was 2nd round Grup discussion

Round 3 - Coding Test 

Coding question on palindrome

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray SumGiven an array of numbers, find the maximum s ... read more
asked in Cognizant
Q2. Nth Fibonacci NumberNth term of Fibonacci series F(n), where F(n) ... read more
asked in Rakuten
Q3. Merge two sorted arraysNinja has been given two sorted integer ar ... read more
asked in GlobalLogic
Q4. Terms Of APAyush is given a number ‘X’. He has been told that he ... read more
asked in Amazon
Q5. Minimum Number of Platform NeededYou are given the arrival and de ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Group Discussion 

1 hr interview for shapping career

Round 2 - Aptitude Test 

1 hr - reasoning , quant

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Group Discussion 

Topic was given and we had to talk for 3 minutes on that topic.

Round 3 - Aptitude Test 

Test was easy to crack

Round 4 - Technical 

(1 Question)

  • Q1. Oops concepts was asked

Coditas Technologies interview questions for designations

 Software Developer Intern

 (2)

 Junior Software Developer

 (1)

 Senior Software Developer

 (1)

 Software Engineer

 (15)

 Software Trainee

 (1)

 Java Developer

 (1)

 Associate Software Engineer

 (13)

 Senior Software Engineer

 (2)

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

I applied via Approached by Company and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. String Manipulation, Array Manipulation
  • Q2. Input : aaabccdddd Output: a3b1c2d4
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at JSPM's Jayawantrao Sawant college of Engineering, Pune and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Usual aptitude test with grammar , maths and coding mcqs questions

Round 2 - Technical 

(2 Questions)

  • Q1. Had a phone discussion regarding python and sql questions
  • Q2. Difference between list and tuple , how will you swap integers?
  • Ans. 

    List is mutable, tuple is immutable. Use tuple for fixed data, list for changing data. To swap integers, use tuple unpacking.

    • List can be modified, tuple is fixed

    • List uses square brackets [], tuple uses parentheses ()

    • To swap integers, use tuple unpacking: a, b = b, a

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Arrays , backend java questions based on internship

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via campus placement at Dr Mahalingam College of Engineering & Technology, Coimbatore and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical thinking and quantitative

Round 2 - Coding Test 

One Java and one SQL and one js question

Round 3 - HR 

(3 Questions)

  • Q1. What is collections
  • Ans. 

    Collections are data structures that store and organize multiple elements in a single unit.

    • Collections provide methods to add, remove, and manipulate elements.

    • Examples of collections include arrays, lists, sets, and maps.

    • Collections can be used to efficiently manage and access large amounts of data.

  • Answered by AI
  • Q2. What is constructor
  • Ans. 

    A constructor is a special method in a class that is automatically called when an object of that class is created.

    • Constructors have the same name as the class they belong to

    • They are used to initialize the object's state

    • Constructors can have parameters to customize the initialization process

  • Answered by AI
  • Q3. What is data science
  • Ans. 

    Data science is a field that uses scientific methods, algorithms, and systems to extract knowledge and insights from structured and unstructured data.

    • Data science involves collecting, analyzing, and interpreting large amounts of data to make informed decisions.

    • It combines statistics, machine learning, and domain knowledge to uncover patterns and trends in data.

    • Data scientists use programming languages like Python and R...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was moderate process

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Simple DSA questions

Round 2 - Technical 

(2 Questions)

  • Q1. Java related questions asked
  • Q2. System design
Round 3 - Ghosted 

(1 Question)

  • Q1. Ghosted by recuriter
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Hoisting?
  • Ans. 

    Hoisting is a JavaScript mechanism where variable and function declarations are moved to the top of their containing scope during compilation.

    • Variables and functions are hoisted to the top of their scope.

    • Only declarations are hoisted, not initializations.

    • Function declarations are hoisted before variable declarations.

  • Answered by AI
  • Q2. What is currying?
  • Ans. 

    Currying is a technique in functional programming where a function with multiple arguments is transformed into a sequence of functions, each taking a single argument.

    • Currying helps in creating reusable functions and improving code readability.

    • It allows partial application of functions, where some arguments are fixed and others are left to be provided later.

    • Example: const add = (a) => (b) => a + b; add(2)(3) will return

  • Answered by AI
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Jan 2024.

Round 1 - Technical 

(3 Questions)

  • Q1. Basic questions regarding Python e.g. magic functions, constructor in python, list, tuple
  • Q2. Basic questions regarding FastAPI e.g. what is pydantic, ORM usage, BaseModel etc.
  • Q3. Basic questions regarding SQL e.g. No-SQL vs SQL, Indexing,

Interview Preparation Tips

Interview preparation tips for other job seekers - Worst Experience. They were not looking for any person to join it was just a interview that I guess they had to do. Never got any feedback from HR even after answering all the questions of interviewer and writing programs as well.

Coditas Technologies Interview FAQs

How many rounds are there in Coditas Technologies Software Developer interview?
Coditas Technologies interview process usually has 2-3 rounds. The most common rounds in the Coditas Technologies interview process are Aptitude Test, Technical and Group Discussion.
What are the top questions asked in Coditas Technologies Software Developer interview?

Some of the top questions asked at the Coditas Technologies Software Developer interview -

  1. difference between list and tuple , how will you swap intege...read more
  2. Sessions in ...read more
  3. Using keyword in...read more

Tell us how to improve this page.

Coditas Technologies Software Developer Interview Process

based on 5 interviews in last 1 year

Interview experience

4.2
  
Good

People are getting interviews through

based on 3 Coditas Technologies interviews
Campus Placement
67%
33% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Coditas Technologies Software Developer Salary
based on 126 salaries
₹6 L/yr - ₹20.5 L/yr
60% more than the average Software Developer Salary in India
View more details

Coditas Technologies Software Developer Reviews and Ratings

based on 12 reviews

3.3/5

Rating in categories

3.7

Skill development

3.7

Work-Life balance

3.4

Salary & Benefits

3.1

Job Security

2.9

Company culture

3.0

Promotions/Appraisal

3.1

Work Satisfaction

Explore 12 Reviews and Ratings
Software Engineer
356 salaries
unlock blur

₹4.5 L/yr - ₹13.8 L/yr

Associate Software Engineer
151 salaries
unlock blur

₹3.5 L/yr - ₹7.2 L/yr

Software Developer
126 salaries
unlock blur

₹6 L/yr - ₹20.5 L/yr

Senior Software Engineer
109 salaries
unlock blur

₹10.8 L/yr - ₹30 L/yr

QA Engineer
64 salaries
unlock blur

₹2.5 L/yr - ₹11.1 L/yr

Explore more salaries
Compare Coditas Technologies 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