i
Coditas Technologies
Filter interviews by
I applied via LinkedIn and was interviewed in Dec 2023. There were 2 interview rounds.
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.
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
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.
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...
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...
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...
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 ...
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
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...
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
I applied via Campus Placement and was interviewed in Aug 2024. There were 3 interview rounds.
5G technology, 2 mins to prepare, Calls out name and then we have to turn on camera and speak.
Impact of E-commerce on bricks and motors
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
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...
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
I was interviewed in Jul 2024.
First round was GD1 - We were given a Topic of Democracy in India and have 5 mins to think on it..
Second round was GD2 - here, the Topic was "if you could have a superpower for one day what superpower you will choose" and we have to talk on this topic for 5 mins
Encapsulation, Inheritance, Polymorphism, Abstraction are the four pillars of OOPS
Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: Class Car with properties like make, model, and methods like start(), stop().
Inheritance: Ability of a class to inherit properties and behavior from another class. Example: Class SUV inheriting from Class Car.
Polymorphism: Ability to present the...
Developed a web-based project management system for tracking tasks and deadlines
Used HTML, CSS, JavaScript for front-end development
Implemented PHP and MySQL for back-end functionality
Incorporated user authentication and role-based access control
Utilized AJAX for dynamic content loading
Extract numbers from a string of alphanumeric characters.
Iterate through each character in the string and check if it is a number.
Build a new string with only the numbers found in the original string.
Return the final string containing only the numbers.
As a team leader, I manage conflicts by promoting open communication, listening to all perspectives, finding common ground, and facilitating a resolution.
Encourage open communication among team members to address conflicts early on
Listen to all perspectives and ensure everyone feels heard and understood
Identify common ground and areas of agreement to build consensus
Facilitate a resolution by guiding the team towards a ...
Simple topic u have to speak on that
Dont know why they are taking multiple gds
Coditas Technologies interview questions for popular designations
I applied via Company Website and was interviewed in Sep 2024. There were 3 interview rounds.
Javascript, css, angular and HTML
JS, angular and HTML
I handle pressure by staying organized, prioritizing tasks, and maintaining open communication with team members.
Staying organized by creating to-do lists and setting realistic deadlines
Prioritizing tasks based on deadlines and importance
Maintaining open communication with team members to delegate tasks and ask for help when needed
Get interview-ready with Top Coditas Technologies Interview Questions
I applied via Naukri.com and was interviewed in May 2024. There were 3 interview rounds.
Create a Directed Acyclic Graph (DAG) to execute Python scripts in parallel.
Define tasks for each Python script to be executed in parallel
Use a parallelism parameter to specify the number of tasks to run concurrently
Set up dependencies between tasks to ensure proper execution order
Use a DAG scheduler like Apache Airflow to manage and execute the DAG
Python code to find repeated numbers and their concurrency
Iterate through the array and use a dictionary to store the count of each number
Iterate through the dictionary to find numbers with count greater than 1 and their concurrency
I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.
I have worked on a variety of technologies including Python, SQL, Hadoop, Spark, and AWS.
Python
SQL
Hadoop
Spark
AWS
Rate in skills out of 5
Programming: 5
Data Analysis: 4
Database Management: 4
Machine Learning: 3
Explode function is used to split a string into an array of strings based on a delimiter.
The explode function takes in a delimiter and a string as input
It splits the string into an array of strings based on the delimiter
For example, explode(',', 'apple,banana,orange') would return ['apple', 'banana', 'orange']
I applied via Recruitment Consulltant and was interviewed in Jun 2024. There were 3 interview rounds.
The first round was group discussion; which was conducted by an institution referring candidates to the company. I was shortlisted.
The next round was also conducted by the company itself, and it was group discussion again, it went well. I believe there were around 12 candidates in one batch, and I was shortlisted. And I got the selection mail for the final technical interview, but then they call me and say I'm kept on hold and never contacted me.
A todo list application built using ReactJS
Use React components to create a form for adding new todos
Store todos in state and map over them to display in a list
Implement functionality to mark todos as complete and delete them
Utilize CSS for styling and make the app responsive
I was interviewed in Aug 2024.
Sessions in MVC are used to store user-specific data across multiple requests.
Sessions are used to maintain state between HTTP requests in MVC applications.
Session data is stored on the server and can be accessed by the client using a session ID.
Sessions can be used to store user authentication information, shopping cart items, etc.
Keywords in C# are reserved words that have special meaning and cannot be used as identifiers.
Keywords are predefined and cannot be changed or redefined.
Examples of keywords in C# include 'class', 'int', 'void', 'if', 'else', 'for', 'while', etc.
Keywords are case-sensitive.
Top trending discussions
Some of the top questions asked at the Coditas Technologies interview -
The duration of Coditas Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 73 interviews
Interview experience
based on 228 reviews
Rating in categories
4-10 Yrs
Not Disclosed
5-10 Yrs
Not Disclosed
Software Engineer
393
salaries
| ₹0 L/yr - ₹0 L/yr |
Associate Software Engineer
149
salaries
| ₹0 L/yr - ₹0 L/yr |
Software Developer
129
salaries
| ₹0 L/yr - ₹0 L/yr |
Senior Software Engineer
111
salaries
| ₹0 L/yr - ₹0 L/yr |
QA Engineer
66
salaries
| ₹0 L/yr - ₹0 L/yr |
TCS
Infosys
Wipro
HCLTech