Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Celebal Technologies Team. If you also belong to the team, you can get access from here

Celebal Technologies Verified Tick

Compare button icon Compare button icon Compare
3.3

based on 577 Reviews

Filter interviews by

Celebal Technologies Senior Sdet Test Engineer Interview Questions and Answers

Updated 13 Jun 2024

Celebal Technologies Senior Sdet Test Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Networking of linux and cloud
  • Ans. 

    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...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Question was based on selenium and java, testng, sql
  • Q2. Waits in selenium
  • Ans. 

    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")));

  • Answered by AI
  • Q3. Testng annotation
  • Q4. Java coding questions related to array manipulation easy one

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Hard
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 - Coding Test 

2 Coding questions - medium to hard

Round 2 - One-on-one 

(2 Questions)

  • Q1. Questions on scalable systems.
  • Q2. Medium level DSA questions.
Round 3 - One-on-one 

(2 Questions)

  • Q1. Questions on SQL
  • Q2. Implement LFU using OOPs concepts from scratch.
  • Ans. 

    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

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Mainly related to JAVA programming
  • Q2. Selenium project reviews
Round 2 - Technical 

(2 Questions)

  • Q1. Reverse the string
  • Ans. 

    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

  • Answered by AI
  • Q2. Scenario based questions

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Git workflow and xpath. Reverse a string
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Coding Test 

Frequency array, java collection, missing number

Round 1 - Technical 

(4 Questions)

  • Q1. What is React Context?
  • Ans. 

    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...

  • Answered by AI
  • Q2. What is meant by closure in javascript?
  • Ans. 

    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

  • Answered by AI
  • Q3. What are the complicated tasks you've done exceeding everyone's expectation?
  • Q4. Algorithm to convert roman numeral to numbers?
  • Ans. 

    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

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. What is React context?
  • Ans. 

    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...

  • Answered by AI
  • Q2. What is abstract class in javascript?
  • Ans. 

    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

  • Answered by AI
  • Q3. What is meant by function overloading and function overriding?
  • Ans. 

    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...

  • Answered by AI
  • Q4. Implement counter in react app
  • Ans. 

    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

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic concepts in js was asked. JS classes questions was also asked

Skills evaluated in this interview

Sde1 Interview Questions & Answers

Amadeus user image Anonymous

posted on 18 May 2022

Round 1 - Technical 

(1 Question)

  • Q1. Why strings are immutable
  • Ans. 

    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.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared and questions will mainly appear from resume
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. LOCATE X PATH , GET WINDOW HANDLE
  • Ans. 

    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.

  • Answered by AI
  • Q2. TYPES OF WAITS WITH THEIR SYNTAX
  • Ans. 

    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

  • Answered by AI

Skills evaluated in this interview

Sdet Interview Questions & Answers

DE Shaw user image Anonymous

posted on 9 Dec 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
No response

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Performance Testing
  • Q2. Difference between put and patch

Celebal Technologies Interview FAQs

How many rounds are there in Celebal Technologies Senior Sdet Test Engineer interview?
Celebal Technologies interview process usually has 1 rounds. The most common rounds in the Celebal Technologies interview process are Technical.

Tell us how to improve this page.

Celebal Technologies Senior Sdet Test Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 802 Interviews
Globant Interview Questions
3.8
 • 170 Interviews
View all
Data Engineer
367 salaries
unlock blur

₹4 L/yr - ₹11 L/yr

Associate
240 salaries
unlock blur

₹4 L/yr - ₹10 L/yr

Associate Consultant
158 salaries
unlock blur

₹5 L/yr - ₹15 L/yr

Associate Data Engineer
154 salaries
unlock blur

₹2.5 L/yr - ₹10.5 L/yr

Data Scientist
133 salaries
unlock blur

₹4.6 L/yr - ₹12 L/yr

Explore more salaries
Compare Celebal 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