i
Celebal Technologies
Filter interviews by
Networking of linux and cloud involves configuring network settings, security protocols, and communication between servers and services.
Configuring network interfaces in Linux using tools like ifconfig or ip command
Setting up virtual private networks (VPNs) for secure communication between cloud servers
Implementing firewall rules to control incoming and outgoing network traffic
Using protocols like SSH, HTTPS, or VPN pr...
Top trending discussions
Waits in Selenium are used to make tests more reliable by waiting for certain conditions to be met before proceeding.
Waits help handle synchronization issues in test automation
Types of waits in Selenium include Implicit Wait, Explicit Wait, and Fluent Wait
Example: WebDriverWait wait = new WebDriverWait(driver, 10); wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("elementId")));
I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.
2 Coding questions - medium to hard
Implement LFU cache using OOPs concepts
Create a class for LFU cache with methods like get, put, and remove
Use a hashmap to store key-value pairs and a hashmap to store frequency of each key
Implement a doubly linked list to store keys with the same frequency
Reverse a given string
Create a new empty string to store the reversed string
Iterate through the original string from end to start and append each character to the new string
Return the reversed string
I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.
Frequency array, java collection, missing number
React Context is a feature in React that allows data to be passed down the component tree without having to pass props manually.
Context provides a way to share values like themes, user data, etc. across the component tree.
It avoids prop drilling, where props are passed down multiple levels to reach a component that needs them.
Context consists of two parts: a Provider component that provides the data and a Consumer comp...
Closure is a function that has access to its parent scope, even after the parent function has closed.
Closure is created when a function is defined inside another function.
The inner function has access to the outer function's variables and parameters.
The outer function returns the inner function, which can be called later with the parent scope still accessible.
Closures are used for data privacy, event handlers, and call
Algorithm to convert roman numeral to numbers
Create a dictionary to map roman numerals to their corresponding values
Iterate through the roman numeral string from right to left
If the current value is less than the previous value, subtract it from the total
If the current value is greater than or equal to the previous value, add it to the total
Return the total
React context is a way to pass data through the component tree without having to pass props down manually at every level.
Context provides a way to share values like a theme or user data across the component tree.
It avoids prop drilling and makes the code cleaner and more maintainable.
Context consists of two parts: a Provider component that provides the data and a Consumer component that consumes the data.
Context can be...
There is no abstract class in JavaScript.
JavaScript does not have a built-in abstract class concept.
However, it is possible to create abstract classes using functions and prototypes.
Abstract classes are used as blueprints for other classes to inherit from.
They cannot be instantiated on their own and must be extended by a subclass.
Abstract methods can be defined in the abstract class and must be implemented in the subcl
Function overloading is when multiple functions have the same name but different parameters. Function overriding is when a subclass provides its own implementation of a method that is already present in the parent class.
Function overloading is used to provide multiple ways to call a function with different parameters.
Function overriding is used to provide a specific implementation of a method in a subclass.
Function ove...
Implement a counter in a React app
Create a state variable to hold the count
Render the count in the UI
Add buttons to increment and decrement the count
Update the state variable on button click
Strings are immutable to ensure data integrity and prevent unintended changes.
Immutable strings allow for safer multithreading and concurrency.
String interning is possible because of immutability.
Immutable strings can be used as keys in dictionaries and hash tables.
Examples of immutable data types include numbers and tuples.
posted on 3 Oct 2024
Locate element using Xpath and retrieve window handle in automation testing.
Use findElement method with By.xpath to locate the element using Xpath.
Use getWindowHandle method to retrieve the window handle.
Types of waits in automation testing with their syntax
Implicit Wait: driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
Explicit Wait: WebDriverWait wait = new WebDriverWait(driver, 10); wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("elementID")));
Fluent Wait: Wait wait = new FluentWait(driver).withTimeout(Duration.ofSeconds(10)).pollingEvery(Duration.ofSeconds(2)).ignoring(NoSuchElementEx
I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.
Interview experience
Data Engineer
367
salaries
| ₹4 L/yr - ₹11 L/yr |
Associate
240
salaries
| ₹4 L/yr - ₹10 L/yr |
Associate Consultant
158
salaries
| ₹5 L/yr - ₹15 L/yr |
Associate Data Engineer
154
salaries
| ₹2.5 L/yr - ₹10.5 L/yr |
Data Scientist
133
salaries
| ₹4.6 L/yr - ₹12 L/yr |
TCS
Infosys
Wipro
HCLTech