i
Coditas Technologies
Filter interviews by
I applied via Company Website and was interviewed before Mar 2023. There was 1 interview round.
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"};
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");
Top trending discussions
posted on 26 Aug 2024
I applied via Company Website and was interviewed in Jul 2024. There were 2 interview rounds.
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
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.
Leetcode medium level questions, sql query, puzzle, test writing for api
I applied via Campus Placement and was interviewed before Mar 2021. There were 4 interview rounds.
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.
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.
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
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
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.
I applied via Naukri.com and was interviewed before Jun 2023. There was 1 interview round.
I applied via LinkedIn and was interviewed before Dec 2023. There were 2 interview rounds.
Coding questions on Javascript
I applied via Approached by Company and was interviewed in Feb 2024. There were 2 interview rounds.
posted on 24 Jun 2024
I applied via Campus Placement
45 questions were asked
3 questions were asked one from SQL and 2 from java
posted on 22 Nov 2024
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.
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 } }
based on 1 interview
Interview experience
based on 1 review
Rating in categories
Software Engineer
411
salaries
| ₹3.6 L/yr - ₹12.5 L/yr |
Associate Software Engineer
149
salaries
| ₹1 L/yr - ₹9.1 L/yr |
Software Developer
142
salaries
| ₹4.9 L/yr - ₹17 L/yr |
Senior Software Engineer
112
salaries
| ₹10 L/yr - ₹35 L/yr |
Data Engineer
58
salaries
| ₹6 L/yr - ₹14 L/yr |
Mobile Programming
Diverse Lynx
Arcesium
Solartis Technology Services