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 Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Coditas Technologies Sdet Automation Test Engineer Interview Questions and Answers

Updated 24 Mar 2024

Coditas Technologies Sdet Automation Test Engineer Interview Experiences

1 interview found

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

I applied via Company Website and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is Arrays?
  • Ans. 

    Arrays are a data structure that stores a collection of elements of the same data type in a contiguous memory location.

    • Arrays are used to store multiple values in a single variable.

    • Elements in an array are accessed by their index position.

    • Arrays can be of fixed size or dynamic size.

    • Example: String[] names = {"Alice", "Bob", "Charlie"};

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

    ArrayList is a dynamic array in Java that can grow or shrink in size as needed.

    • ArrayList is a class in Java that implements the List interface.

    • It allows for dynamic resizing, unlike regular arrays which have a fixed size.

    • Elements in an ArrayList can be accessed using their index.

    • Example: ArrayList<String> names = new ArrayList<String>();

    • names.add("Alice"); names.add("Bob");

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical strong

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Coditas Technologies?
Ask anonymously on communities.

Interview questions from similar companies

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

I applied via Company Website and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Find the missing number in a permutation array
  • Ans. 

    Find the missing number in a permutation array

    • Iterate through the array and calculate the sum of all numbers

    • Calculate the sum of all numbers from 1 to n (where n is the length of the array)

    • Subtract the sum of the array from the sum of all numbers to find the missing number

  • Answered by AI
  • Q2. Find if there is a loop in linked list
  • Ans. 

    To find a loop in a linked list, use Floyd's Cycle Detection Algorithm.

    • Use two pointers - slow and fast, where slow moves one step at a time and fast moves two steps at a time.

    • If there is a loop, the two pointers will eventually meet at some point within the loop.

    • To find the starting point of the loop, reset one pointer to the head and move both pointers one step at a time until they meet again.

  • Answered by AI
Round 2 - Coding Test 

Leetcode medium level questions, sql query, puzzle, test writing for api

Skills evaluated in this interview

Sdet Automation Test Engineer Interview Questions Asked at Other Companies

Q1. Wait in selenium and how to find all links present in a page xpat ... read more
Q2. What is page object model and test ng annotations
Q3. How do you handle alerts in Selenium, and what methods do you use ... read more
Q4. How to take screenshot and project framework
Q5. What is the software testing life cycle?

I applied via Walk-in and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. For fresher 1 aptitude - percentage,date and time,number system,intrest,work done problems 2 Group discussion 3 HR interview

Interview Preparation Tips

Interview preparation tips for other job seekers - First is usual aptitude after finishing it takes 30 min for result . Next g it is more of generall topic, atlast hr

I applied via Campus Placement and was interviewed before Mar 2021. There were 4 interview rounds.

Round 1 - Coding Test 

90 minute test on hacker rank consisting of 3 coding questions all of medium difficulty. Most candidates are required to solve more than 1 question.

Round 2 - Technical 

(3 Questions)

  • Q1. Questions on concepts of OOPS and Operating Systems.
  • Q2. Find least common ancestor of a binary tree.
  • Ans. 

    Find the lowest common ancestor of a binary tree.

    • Traverse the tree recursively from the root node.

    • If the current node is null or matches either of the given nodes, return the current node.

    • Recursively search for the nodes in the left and right subtrees.

    • If both nodes are found in different subtrees, return the current node.

    • If both nodes are found in the same subtree, continue the search in that subtree.

  • Answered by AI
  • Q3. Find first missing positive integer from an array for non-negative integers.
  • Ans. 

    Find first missing positive integer from an array of non-negative integers.

    • Create a hash set to store all positive integers in the array

    • Loop through the array and add all positive integers to the hash set

    • Loop through positive integers starting from 1 and return the first missing integer not in the hash set

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Design a parking lot
  • Ans. 

    Design a parking lot

    • Consider the size and capacity of the parking lot

    • Decide on the layout and organization of parking spaces

    • Implement a system to manage parking availability and reservations

    • Include features like ticketing, payment, and security

    • Consider scalability and future expansion

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Given a grid which represents an ocean( For all index i,j if mat[i][j] = 1 is island and mat[i][j] = 0 means water). Find the island with largest area.
  • Ans. 

    Find the largest island area in a grid representing an ocean using DFS or BFS.

    • Use Depth-First Search (DFS) or Breadth-First Search (BFS) to explore the grid.

    • Mark visited cells to avoid counting them multiple times.

    • Count the size of each island during the traversal.

    • Example: For a grid [[1,0,0],[1,1,0],[0,0,1]], the largest island has area 3.

    • Keep track of the maximum area found during the exploration.

  • Answered by AI
  • Q2. Given list of strings group them into distinct anagrams.
  • Ans. 

    Group list of strings into distinct anagrams.

    • Create a hash table with sorted string as key and list of anagrams as value.

    • Iterate through the list of strings and add each string to its corresponding anagram list in the hash table.

    • Return the values of the hash table as a list of lists.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Arcesium Senior Software Engineer interview:
  • Low Level Design
  • Object Oriented Programming
  • Data Structures
  • Algorithms
  • DBMS
Interview preparation tips for other job seekers - Focus on Data Structures & Algorithms and Low Level Designing. Some brushup of DBMS will also help.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Question on js

Interview Preparation Tips

Interview preparation tips for other job seekers - study the basics, coding ques
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement 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
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

45 questions were asked

Round 2 - Coding Test 

3 questions were asked one from SQL and 2 from java

Round 3 - One-on-one 

(1 Question)

  • Q1. Oops concepts and java basics
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Four Pillars of OOPS in Java?
  • Q2. What is a constructor in Java?

Skills evaluated in this interview

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

I appeared for an interview before May 2024, where I was asked the following questions.

  • Q1. What is the specific problem you are referring to?
  • Q2. Why the specific
  • Q3. Tell me about yourself.
  • Q4. What are your reasons?
  • Q5. What are your dreams?
  • Ans. 

    My dreams revolve around creating impactful software, fostering innovation, and contributing to a collaborative tech community.

    • Innovative Software Solutions: I aspire to develop applications that solve real-world problems, like a health tracking app that promotes wellness.

    • Continuous Learning: I dream of mastering new technologies, such as AI and machine learning, to enhance my skill set and stay relevant.

    • Mentorship and...

  • Answered by AI
  • Q6. What is your full name?
  • Q7. What are your weaknesses?
  • Ans. 

    Identifying weaknesses helps in personal growth; common examples include perfectionism and difficulty in delegation.

    • Perfectionism: I often spend too much time on details, which can delay project timelines. For instance, I once spent extra hours refining a UI component.

    • Difficulty in Delegation: I sometimes struggle to delegate tasks, fearing that others may not meet my standards. This was evident in a team project where...

  • Answered by AI
  • Q8. What are your reasons for seeking employment?
  • Ans. 

    I seek employment to grow my skills, contribute to innovative projects, and be part of a collaborative team in software development.

    • Skill Development: I want to enhance my programming skills and learn new technologies, such as cloud computing or machine learning.

    • Career Growth: I'm looking for opportunities to advance my career, potentially moving into leadership roles or specialized areas like DevOps.

    • Passion for Innova...

  • Answered by AI
  • Q9. What do you consider to be your strengths?
  • Ans. 

    My strengths include problem-solving, adaptability, and strong communication skills, which enhance my effectiveness as a developer.

    • Problem-Solving: I excel at breaking down complex problems into manageable parts. For example, I successfully debugged a critical issue in a production system by systematically isolating the problem and implementing a solution.

    • Adaptability: I quickly learn new technologies and frameworks. W...

  • Answered by AI
  • Q10. Where do you see yourself in five years?
  • Ans. 

    In five years, I envision myself as a lead software developer, driving innovative projects and mentoring junior developers.

    • Leadership Role: I aim to progress into a lead developer position, guiding a team on complex projects, similar to how I led a successful app development in my last role.

    • Technical Expertise: I plan to deepen my knowledge in emerging technologies like AI and cloud computing, contributing to projects ...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2023.

Round 1 - Coding Test 

Sorting algo , array question

Round 2 - Technical 

(1 Question)

  • Q1. Oops dbms coding basics

Coditas Technologies Interview FAQs

How many rounds are there in Coditas Technologies Sdet Automation Test Engineer interview?
Coditas Technologies interview process usually has 1 rounds. The most common rounds in the Coditas Technologies interview process are One-on-one Round.
How to prepare for Coditas Technologies Sdet Automation Test Engineer 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 Automation Testing, Java and Selenium.
What are the top questions asked in Coditas Technologies Sdet Automation Test Engineer interview?

Some of the top questions asked at the Coditas Technologies Sdet Automation Test Engineer interview -

  1. What is Arra...read more
  2. What is arrayl...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Join Coditas Technologies Let’s work together. And build impactful software.

Interview Questions from Similar Companies

Arcesium Interview Questions
3.5
 • 85 Interviews
Programmers.io Interview Questions
4.2
 • 26 Interviews
Diverse Lynx Interview Questions
3.6
 • 20 Interviews
Spektra Systems Interview Questions
4.0
 • 13 Interviews
BANGMETRIC Interview Questions
3.8
 • 12 Interviews
Apps Associates Interview Questions
3.9
 • 10 Interviews
Signant Health Interview Questions
3.2
 • 9 Interviews
View all

Coditas Technologies Sdet Automation Test Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
343 salaries
unlock blur

₹6 L/yr - ₹13 L/yr

Associate Software Engineer
160 salaries
unlock blur

₹3.5 L/yr - ₹7.2 L/yr

Software Developer
143 salaries
unlock blur

₹4.6 L/yr - ₹17 L/yr

Senior Software Engineer
129 salaries
unlock blur

₹11.1 L/yr - ₹40 L/yr

QA Engineer
60 salaries
unlock blur

₹3 L/yr - ₹11.5 L/yr

Explore more salaries
Compare Coditas Technologies with

Mobile Programming

2.9
Compare

Diverse Lynx

3.6
Compare

Arcesium

3.5
Compare

Solartis Technology Services

3.5
Compare
write
Share an Interview