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 Intern Interview Questions, Process, and Tips

Updated 4 Jan 2024

Top Coditas Technologies Software Developer Intern Interview Questions and Answers

  • Q1. Suppose you want to add the link to your Linkedin account in a website, and you have to do it by clicking on the logo of linkedin in the website, then how can you do it? ...read more
  • Q2. if you are given a task and you have to decide which type of database will be best for this task, then how will you decide that?
  • Q3. Given a string = "as145egs14ghs2ghe7896", add the numbers present in the string, the consecutive numbers should be taken as a complete one number. i.e. you have to print ...read more
View all 9 questions

Coditas Technologies Software Developer Intern Interview Experiences

2 interviews found

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

I applied via LinkedIn and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Group Discussion 

My topic was - "Do women make good managers?"
There was a google meet having a total of 20 people.
5 groups were made of 4 people each.
Each group were given different topic and every member was given 2 minutes to speak on the topic.

Good thing about this GD round was everyone was given chance to speak individually.
Finally I got selected in this round.

Round 2 - Technical 

(9 Questions)

Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I applied after seeing a linkedin post from one of there employees. They shared a google form for applying in that linkedin post.

I got rejected in the first technical interview round only because I was not at all prepared for the interview. But if you have decent web development knowledge and basic DSA, then you can crack it.
Also, DO NOT put anything in your resume that you are not confident with.
Basic HTML, CSS, Javascript is very important.
Interviewer was friendly and was explaining me everything very nicely wherever I was wrong.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in May 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

Aptitude was Easy level.
the apti paper had 60 questions in 60 minutes.

Round 2 - Group Discussion 

My topic was placement scenarios in India.
everyone was given 2-3 minutes to express their views.

Round 3 - Technical 

(1 Question)

  • Q1. This was T1 this was based on my resume and simple coding quetions
Round 4 - Technical 

(1 Question)

  • Q1. T2 this was the managerial Round they had given me Coding question of alphanumeric characters. and had asked around 10-15 questions on sql such as joins and ACID transaction

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare string and leetcode questions well and have experience in coding also avoid silly mistakes

Software Developer Intern Interview Questions Asked at Other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your ta ... read more
asked in CommVault
Q2. Sliding Maximum You are given an array 'ARR' of integers of lengt ... read more
asked in Amazon
Q3. Fish EaterThere is a river which flows in one direction. One day, ... read more
Q4. Program to check the validity of a PasswordNinjas are trying to h ... read more
Q5. Find K Closest ElementsYou are given a sorted array 'A' of length ... read more

Interview questions from similar companies

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

2 coding questions were given to solve in 45 minutes.

  • Q1. Left View Of a Binary Tree

    You have been given a binary tree of integers. You are supposed to find the left view of the binary tree. The left view of a binary tree is the set of all nodes that are visible ...

  • Ans. 

    A level order traversal based solution can be presented here. For each level, we need to print the first node i.e. the leftmost node of that level.
    Steps :
    1. Make a queue of node type and push the root node in the queue. 
    2. While the queue is not empty, do :
    2.1 Determine the current size of the queue. 
    2.2 Run a for loop to traverse all nodes of the current level and do :
    2.2.1 Remove the topmost node from the q...

  • Answered by CodingNinjas
  • Q2. Number of Islands

    You have been given a non-empty grid consisting of only 0s and 1s. You have to find the number of islands in the given grid.

    An island is a group of 1s (representing land) connected hor...

  • Ans. 

    The question boils down to finding the number of connected components in an undirected graph. Now comparing the connected components of an undirected graph with this problem, the node of the graph will be the “1’s” (land) in the matrix. 
    BFS or DFS can be used to solve this problem. In each BFS call, a component or a sub-graph is visited. We will call BFS on the next un-visited component. The number of calls to BFS...

  • Answered by CodingNinjas
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This was a 60 min technical interview round. The interviewer asked me to code 2 programming questions. 
Tip : Practice more to clear DSA problems. Medium level questions will be enough to clear the rounds.

  • Q1. Topological Sort

    A Directed Acyclic Graph (DAG) is a directed graph that contains no cycles.

    Topological Sorting of DAG is a linear ordering of vertices such that for every directed edge from vertex ‘u’...

  • Ans. 

    Topological sorting of vertices of a Directed Acyclic Graph is an ordering of the vertices v1,v2,v3.....vn in such a way, that if there is an edge directed towards vertex vj from vertex vi , then vi comes before vj. Modified DFS can be used to solve topological sort problem. A stack can be used to implement it. Steps :
    1. Make a stack to store the nodes and a Boolean array to mark all visited nodes initialized to false....

  • Answered by CodingNinjas
  • Q2. N-th Node From The End

    You are given a Singly Linked List of integers. You have to find the N-th node from end.

    For Example
    If the given list is (1 -> -2 -> 0 -> 4) and N=2:
    

    Then the 2nd nod...

  • Ans. 

    A direct approach is to traverse the entire linked list and calculate its length. Traverse the list again and return the (length-N+1) node. But this approach involves two traversals of the linked list. 
    To further optimize the solution, the question can be solved in one traversal only. Two pointers can be used here. Steps :
    1. Initialize both the slow pointer and the fast pointer to the head node.
    2. First, move fast...

  • Answered by CodingNinjas

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAArcesium interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OS, DBMS, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Coding DSA question
  • Q2. No of frequency of character in word
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Four Pillars of OOPS in Java?
  • Ans. 

    Encapsulation, Inheritance, Polymorphism, Abstraction are the four pillars of OOPS in Java.

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

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

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

    • Abstraction: Hiding the implementation details and showing only the necessary features.

  • Answered by AI
  • Q2. What is a constructor in Java?
  • Ans. 

    A constructor in Java is a special type of method that is used to initialize objects.

    • Constructors have the same name as the class they are in.

    • They do not have a return type, not even void.

    • Constructors are called when an object of a class is created.

    • Example: public class Car { public Car() { // constructor code } }

  • Answered by AI

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
No response

I applied via Approached by Company and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Deep Technical Questions
  • Q2. Problem solving and usecases
Round 2 - Technical 

(1 Question)

  • Q1. Usecase based questions
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 

College first day experience:
just tell the breif abut your experience better dont tell about unwanted stuff

Round 3 - One-on-one 

(2 Questions)

  • Q1. Self intro: name: educational details: skills: acheivements: brief about your personality:
  • Q2. Why you choose this:
  • Ans. 

    I chose this software trainee position because of my passion for coding and my desire to learn and grow in the software development field.

    • I have always been interested in technology and computers.

    • I enjoy problem-solving and finding creative solutions.

    • I have a strong foundation in programming languages like Java and Python.

    • I believe this trainee position will provide me with valuable hands-on experience and mentorship.

    • I...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be in your way better show yourself truely dont fake about your knowledge
Interview experience
3
Average
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 

(2 Questions)

  • Q1. Coding questions basic
  • Q2. Binary search and sorting

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for basic DBMS and dsa questions and be calm

Coditas Technologies Interview FAQs

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

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

  1. Suppose you want to add the link to your Linkedin account in a website, and you...read more
  2. if you are given a task and you have to decide which type of database will be b...read more
  3. Given a string = "as145egs14ghs2ghe7896", add the numbers present in the string...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 Coditas Technologies interviews
Job Portal
Campus Placement
50%
50%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Coditas Technologies Software Developer Intern Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

2.0

Skill development

1.0

Work-Life balance

1.0

Salary & Benefits

1.0

Job Security

2.0

Company culture

1.0

Promotions/Appraisal

1.0

Work Satisfaction

Explore 1 Review and Rating
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