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

Updated 25 Nov 2024

Top Coditas Technologies Intern Interview Questions and Answers

Coditas Technologies Intern Interview Experiences

6 interviews found

Intern Interview Questions & Answers

user image Anonymous

posted on 26 Sep 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via campus placement at Modern Education Societys College of Engineering, Pune and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Group Discussion 

5G technology, 2 mins to prepare, Calls out name and then we have to turn on camera and speak.

Round 2 - Group Discussion 

Impact of E-commerce on bricks and motors

Round 3 - One-on-one 

(6 Questions)

  • Q1. Introduce Yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for software development.

    • Graduated with a Bachelor's degree in Computer Science

    • Proficient in programming languages such as Java, Python, and C++

    • Completed internships at tech companies like Google and Microsoft

    • Interested in machine learning and artificial intelligence

  • Answered by AI
  • Q2. Research Internship based questions on python which I mentioned in my Resume
  • Q3. Doctype Html - Why is it mentioned? HTML - Inline and block elements
  • Q4. What is OOP? Explain its five pillars.
  • Ans. 

    OOP stands for Object-Oriented Programming. Its five pillars are encapsulation, inheritance, polymorphism, abstraction, and composition.

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

    • Inheritance: Creating new classes by inheriting attributes and methods from existing classes.

    • Polymorphism: Objects of different classes can be treated as objects of a common superclass.

    • Abstrac...

  • Answered by AI
  • Q5. SQL - Select query syntax and types of join
  • Ans. 

    SQL select query syntax and types of join

    • SQL SELECT query syntax: SELECT column1, column2 FROM table_name WHERE condition

    • Types of joins: INNER JOIN, LEFT JOIN, RIGHT JOIN, FULL JOIN

    • Example: SELECT orders.order_id, customers.customer_name FROM orders INNER JOIN customers ON orders.customer_id = customers.customer_id

  • Answered by AI
  • Q6. JAVA - DSA Questions 1. For range 1 to 100, if number divisible by 3 print "Zig", if number divisible by 5 print "Zag" and if divisible by both print "Zig-Zag". 2. Find second largest element in a given ar...

Interview Preparation Tips

Interview preparation tips for other job seekers - Know your resume thoroughly and actually know every detail of the tech stack you mention in it.

Skills evaluated in this interview

Intern Interview Questions & Answers

user image Anonymous

posted on 15 Oct 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Apr 2024.

Round 1 - Group Discussion 

GD was amazing we were asked to talk on that particular topic for 5 min.

Round 2 - Group Discussion 

In second GD round we were given a topic , first group of 5 clusters were made and then very individual were given chance to speak

Round 3 - Technical 

(2 Questions)

  • Q1. What is polymorphish
  • Ans. 

    Polymorphish is a term used to describe the ability of a programming language to allow different data types to be used interchangeably.

    • Polymorphish allows for flexibility in coding by allowing variables to hold different types of data.

    • It is a key feature in object-oriented programming languages like Java and C++.

    • For example, a function can accept different types of parameters and return different types of values based

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

    Overriding is a concept in object-oriented programming where a subclass provides a specific implementation of a method that is already provided by its superclass.

    • Overriding allows a subclass to provide a specific implementation of a method that is already defined in its superclass.

    • The method in the subclass must have the same name, return type, and parameters as the method in the superclass to override it.

    • Example: clas...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - try your best ..

Intern Interview Questions Asked at Other Companies

asked in Accenture
Q1. Case. There is a housing society “The wasteful society”, you coll ... read more
Q2. Which programming language you are comfortable with?
asked in Deloitte
Q3. Case : I am a US based company and I sell 3 products A, B, C (I d ... read more
Q4. Huffman CodingYou are given an array 'ARR' of Integers having 'N' ... read more
asked in Accenture
Q5. A marketing strategy case. Client is a perfume seller in Jaipur. ... read more

Intern Interview Questions & Answers

user image Anonymous

posted on 25 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

20 questions thats all

Round 2 - Group Discussion 

Good, Overall they give time for topics

Interview Preparation Tips

Interview preparation tips for other job seekers - good

Intern Interview Questions & Answers

user image Anonymous

posted on 21 Feb 2024

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

I applied via LinkedIn and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Group Discussion 

In group discussion around, we have to talk on any particular topic given by them for five minutes

Coditas Technologies interview questions for designations

 UX Intern

 (1)

 Software Developer Intern

 (2)

 Software Engineer Intern Trainee

 (1)

 Associate Software Engineering Intern

 (1)

 Senior Business Analyst

 (2)

Intern Interview Questions & Answers

user image Anonymous

posted on 16 Apr 2024

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

I applied via Recruitment Consulltant and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Oops concepts question in C, C++

Round 2 - HR 

(1 Question)

  • Q1. Personel details
Round 3 - Coding Test 

Arrays question, Fibonacci series

Interview Preparation Tips

Interview preparation tips for other job seekers - keep updated with tech

Intern Interview Questions & Answers

user image Anonymous

posted on 7 Jun 2022

I applied via Referral and was interviewed in May 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Nice

Round 2 - Group Discussion 

Nice

Round 3 - One-on-one 

(1 Question)

  • Q1. Introduce yourself and job description

Interview Preparation Tips

Interview preparation tips for other job seekers - Study hard and focus on basic skills.

Interview questions from similar companies

Interview Questionnaire 

3 Questions

  • Q1. Left view of a tree
  • Ans. 

    The left view of a tree shows the nodes visible from the left side of the tree.

    • The leftmost node of each level is visible in the left view.

    • Nodes to the right of the leftmost node are not visible in the left view.

    • The left view can be obtained using a depth-first search or a breadth-first search algorithm.

  • Answered by AI
  • Q2. Find nth node from last in a linked list in one traversal
  • Ans. 

    To find nth node from last in a linked list in one traversal

    • Use two pointers, one at the head and the other at nth node from head

    • Move both pointers simultaneously until the second pointer reaches the end

    • The first pointer will be at the nth node from last

  • Answered by AI
  • Q3. Topological sort

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What are your basic concepts of power BI
  • Ans. 

    Power BI is a business analytics tool by Microsoft that provides interactive visualizations and business intelligence capabilities.

    • Power BI allows users to connect to various data sources and create interactive reports and dashboards.

    • It offers features like data modeling, data visualization, and sharing capabilities.

    • Users can create custom visuals and use natural language queries to analyze data.

    • Power BI integrates wit...

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Basics of the SQL and logical codding questions in any language
  • Q2. Questions regarding the college project work
  • Q3. Behaviour questions

I applied via Job Portal and was interviewed in Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Hr policies

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing

Coditas Technologies Interview FAQs

How many rounds are there in Coditas Technologies Intern interview?
Coditas Technologies interview process usually has 2-3 rounds. The most common rounds in the Coditas Technologies interview process are Group Discussion, Aptitude Test and One-on-one Round.
How to prepare for Coditas Technologies Intern 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 Coditas Technologies. The most common topics and skills that interviewers at Coditas Technologies expect are Analytical skills, Communication Skills, Excel, Excel Sheet and MS Office.
What are the top questions asked in Coditas Technologies Intern interview?

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

  1. What is OOP? Explain its five pilla...read more
  2. SQL - Select query syntax and types of j...read more
  3. what is polymorph...read more

Tell us how to improve this page.

Coditas Technologies Intern Interview Process

based on 5 interviews in last 1 year

2 Interview rounds

  • Group Discussion Round 1
  • Group Discussion Round 2
View more

People are getting interviews through

based on 4 Coditas Technologies interviews
Job Portal
Campus Placement
Referral
25%
25%
25%
25% 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

Intern Interview Questions from Similar Companies

TCS Intern Interview Questions
3.7
 • 34 Interviews
Infosys Intern Interview Questions
3.7
 • 22 Interviews
Wipro Intern Interview Questions
3.7
 • 11 Interviews
HCLTech Intern Interview Questions
3.5
 • 7 Interviews
Mphasis Intern Interview Questions
3.4
 • 2 Interviews
View all

Coditas Technologies Intern Reviews and Ratings

based on 3 reviews

3.0/5

Rating in categories

1.8

Skill development

2.6

Work-Life balance

2.2

Salary & Benefits

1.8

Job Security

2.2

Company culture

1.8

Promotions/Appraisal

1.8

Work Satisfaction

Explore 3 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