Upload Button Icon Add office photos
Premium 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

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 Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Amazon
Q2. Fish Eater Problem Statement In a river where water flows from le ... read more
asked in Apple
Q3. Kevin and his Fruits Problem Statement Kevin has 'N' buckets, eac ... read more
asked in CommVault
Q4. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
Q5. Reverse Words in a String: Problem Statement You are given a stri ... 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. 

    Determine the Left View of a Binary Tree

    You are given a binary tree of integers. Your task is to determine the left view of the binary tree. The left view consists of nodes that are visible when the tree...

  • 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 Anonymously
  • Q2. 

    Number of Islands Problem Statement

    You are given a non-empty grid that consists of only 0s and 1s. Your task is to determine the number of islands in this grid.

    An island is defined as a group of 1s (re...

  • 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 Anonymously
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 Problem Statement

    Given a Directed Acyclic Graph (DAG) consisting of V vertices and E edges, your task is to find any topological sorting of this DAG. You need to return an array of size ...

  • 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 Anonymously
  • Q2. 

    N-th Node From The End Problem Statement

    You are provided with a Singly Linked List containing integers. Your task is to determine the N-th node from the end of the list.

    Example:

    Input:
    If the list is...
  • 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 Anonymously

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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Aptitude Test 

The aptitude section will consist of multiple-choice questions (MCQs).

Round 2 - Coding Test 

There will be coding problems relevant to the domain in which we are interviewing.

Round 3 - HR 

(1 Question)

  • Q1. What do you hope to achieve in the next two years?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is Linked List
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

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.

Coditas Technologies Software Developer Intern Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

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

1.0

Job security

2.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
391 salaries
unlock blur

₹4.5 L/yr - ₹12 L/yr

Associate Software Engineer
149 salaries
unlock blur

₹1 L/yr - ₹9.1 L/yr

Software Developer
129 salaries
unlock blur

₹6 L/yr - ₹20.5 L/yr

Senior Software Engineer
111 salaries
unlock blur

₹10.8 L/yr - ₹36 L/yr

QA Engineer
66 salaries
unlock blur

₹2.5 L/yr - ₹11.1 L/yr

Explore more salaries
Compare Coditas Technologies with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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