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

Clear (1)

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)

  • 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? Which HTML tag is used to do it?
  • Ans. 

    To add a link to your Linkedin account in a website by clicking on the logo, use the <a> tag with the href attribute set to your Linkedin profile URL.

    • Use the <a> tag with the href attribute set to your Linkedin profile URL

    • Insert the Linkedin logo image inside the <a> tag as the clickable element

    • Example: <a href='https://www.linkedin.com/in/yourprofile'><img src='linkedin_logo.png' alt='Linked

  • Answered by AI
  • Q2. Difference between div and span
  • Ans. 

    div is a block-level element while span is an inline element in HTML.

    • div is used to group block-level elements and create sections on a webpage.

    • span is used to style inline elements or group text within a block-level element.

    • div elements create a line break before and after the element, while span does not.

  • Answered by AI
  • Q3. - What is JDBC in java? - What is JVM and the use of it? - We write "public static void main" in java.... will it work if we write "static public void main"? If yes, then why, what is the reason that it wo...
  • Ans. 

    JDBC is a Java API for connecting and executing queries on a database.

    • JDBC stands for Java Database Connectivity.

    • It provides a set of classes and interfaces to interact with databases.

    • JDBC allows developers to write database-independent code.

    • It supports various database operations like connecting, querying, updating, and deleting data.

    • JDBC drivers are used to establish a connection between Java application and database...

  • Answered by AI
  • Q4. One major difference between OOPs concept of C++ and OOPs concept of java
  • Ans. 

    C++ supports multiple inheritance while Java supports single inheritance.

    • C++ allows a class to inherit from multiple classes, while Java only allows a class to inherit from a single class.

    • In C++, a class can have multiple parent classes, resulting in a complex class hierarchy.

    • Java enforces single inheritance to avoid the diamond problem and maintain simplicity.

    • For example, in C++, a class can inherit from both a 'Vehic...

  • Answered by AI
  • Q5. Types of databases
  • Ans. 

    Types of databases include relational, NoSQL, object-oriented, and graph databases.

    • Relational databases store data in tables with predefined schemas, using SQL for querying (e.g. MySQL, Oracle)

    • NoSQL databases are schema-less and provide flexible data models (e.g. MongoDB, Cassandra)

    • Object-oriented databases store objects as they are, with support for inheritance and encapsulation (e.g. db4o)

    • Graph databases use nodes an...

  • Answered by AI
  • Q6. Difference between SQL based database and NoSQL based databases
  • Ans. 

    SQL databases are structured and use a fixed schema, while NoSQL databases are unstructured and have a flexible schema.

    • SQL databases use structured query language for defining and manipulating the data.

    • NoSQL databases use various data models like key-value, document, columnar, or graph.

    • SQL databases are suitable for complex queries and transactions.

    • NoSQL databases are horizontally scalable and provide high performance ...

  • Answered by AI
  • Q7. 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?
  • Ans. 

    The choice of database depends on factors like data structure, scalability, performance, and query requirements.

    • Consider the data structure and relationships between entities.

    • Evaluate the scalability requirements of the task.

    • Analyze the performance needs, including read and write operations.

    • Assess the query requirements, such as complex joins or aggregations.

    • Examples: relational databases for structured data, NoSQL for

  • Answered by AI
  • Q8. Examples of relational and non-relational databases
  • Ans. 

    Relational databases store data in tables with predefined relationships. Non-relational databases store data in flexible, schema-less formats.

    • Relational databases: MySQL, Oracle, SQL Server

    • Non-relational databases: MongoDB, Cassandra, Redis

    • Relational databases use structured query language (SQL) for data manipulation

    • Non-relational databases provide high scalability and flexibility

    • Relational databases are suitable for c...

  • Answered by AI
  • Q9. 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 the result of 145+14+2+7896 = ?
  • Ans. 

    The task is to add the consecutive numbers present in a given string.

    • Iterate through the string character by character

    • Check if the current character is a digit

    • If it is a digit, continue iterating until a non-digit character is encountered

    • Convert the consecutive digits into a number and add it to the sum

    • Repeat the process until all characters are processed

    • Return the sum

  • 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 before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 140 minutes
Round difficulty - Medium

Test timing was at 2:00 pm , it was conducted in a college and the environment was good for the test. Camera was a primary part of test, so no suspicious activity.

  • Q1. 

    Sum of Two Numbers Represented as Arrays

    Given two numbers in the form of two arrays where each element of the array represents a digit, calculate the sum of these two numbers and return this sum as an ar...

  • Ans. 

    Given two numbers represented as arrays, calculate their sum and return the result as an array.

    • Iterate through the arrays from right to left, adding digits and carrying over if necessary

    • Handle cases where one array is longer than the other by considering the remaining digits

    • Ensure the final sum array does not have any leading zeros

  • Answered by AI
Round 2 - Face to Face 

Round duration - 20 minutes
Round difficulty - Easy

The round was conducted at around 12 p.m. I was called at the college location and then it was conducted. The interviewer was quite polite and frank.

Round 3 - HR 

Round duration - 8 minutes
Round difficulty - Easy

This round was conducted right after finishing and clearing the technical round at the same place and on the same day.

Interview Preparation Tips

Eligibility criteriaAbove 60 %Wipro Limited interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Database Concepts, Coding problemsTime required to prepare for the interview - 2-3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice atleast 2-3 Coding problems daily so your logic building becomes stronger.
Tip 2 : Exercise problems based on OOPS concepts and others too.
Tip 3 : If you can have your own project built, then it's the major point and will act as a plus point.

Application resume tips for other job seekers

Tip 1 : Your resume should be in standard form, short and simple will be more effective.
Tip 2 : Whatever you have learned, you need to mention it in your resume as that will be your primary source of selection and having project on your resume is important.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. SOLID principals, oops, c# basics, SQL server, azure, design pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear basics of oops and design pattern

I applied via Campus Placement and was interviewed before Feb 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Hr

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be true to what you are putting before the interviewer . Try to put your ideas Add something you did well in your career like in projects /research which you know very well and versed in concepts about it for open interview so that interviewer can get bandwidth where he can ask questions from. This is simply a key .

I applied via Campus Placement and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. 1.Describe a situation where you have taken a quick decision and failed, and a situation where you succeeded. 2. What is a skill you have tried to achieve but failed? 3. Describe a decision you have taken ...

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Always try to take risk in small problems . When you face the consequences, you would be able to tackle bigger problems.
2. Every skill you learn, even if you didn't excel in it is not to be considered a waste of time/failure, you learn something simply by participating.

Interview Questionnaire 

1 Question

  • Q1. HTML, CSS, BOOTSTRAP, PHP. SQL

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Simple program
  • Q2. I wrote a simple program in C

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about Yourself, some questions related to machine learning, and I was asked more questions to differentiate like differences between ml and ai, python and c, c and java and procedural and functiona...

Interview Preparation Tips

Interview preparation tips for other job seekers - Get a complete grip on your resume and be confident about what you say, If you don't know the answer it is okay to agree that you don't know the answer so that interviewer can ask the next questions.

I applied via Job Portal and was interviewed before Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops Concepts,JAVA 8

Interview Preparation Tips

Interview preparation tips for other job seekers - Quite simple and easy. 1st round technical.2nd round HR
Contribute & help others!
anonymous
You can choose to be anonymous

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

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

Tally Solutions

No Interviews

INTERVIEWS

Saama Technologies

No Interviews

INTERVIEWS

Trell

No Interviews

INTERVIEWS

Texas Instruments

No Interviews

INTERVIEWS

Hewlett Packard Enterprise

No Interviews

INTERVIEWS

Virtusa Consulting Services

No Interviews

INTERVIEWS

Sutherland Global Services

No Interviews

INTERVIEWS

Tally Solutions

No Interviews

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
393 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
149 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
129 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
111 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Engineer
66 salaries
unlock blur

₹0 L/yr - ₹0 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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent