Upload Button Icon Add office photos
Engaged Employer

i

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

Cigniti Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Cigniti Technologies Sdet Interview Questions and Answers

Updated 15 Feb 2024

Cigniti Technologies Sdet Interview Experiences

1 interview found

Sdet Interview Questions & Answers

user image Anonymous

posted on 15 Feb 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. 1, Diff b/w final, Finaly & Finalize
  • Ans. 

    final, finally, and finalize are keywords in Java with different meanings.

    • final is a keyword used to declare a constant value that cannot be modified

    • finally is a block used in exception handling to ensure a piece of code is always executed

    • finalize is a method in the Object class used for garbage collection before an object is destroyed

  • Answered by AI
  • Q2. 2, In C# what are Var and Ref Keywards
  • Ans. 

    Var is used to declare implicitly typed local variables, while Ref is used for passing arguments by reference.

    • Var keyword allows the compiler to infer the type of the variable based on the assigned value.

    • Ref keyword is used to pass arguments by reference, allowing the called method to modify the original value.

    • Var example: var number = 10; // Compiler infers the type as int

    • Ref example: void ModifyValue(ref int value) {...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Sdet Interview Questions & Answers

Infosys user image Anonymous

posted on 9 Jul 2021

Interview Questionnaire 

2 Questions

  • Q1. Standard Selenium questions
  • Q2. Pay is less
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Not Selected

I applied via Job Portal and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Coding Test 

SQL, Python - basics of SQL and how to populate values in a list using functions

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Function declaration reverse word in a string copy array without direct assignment equality operator vs strict equal post vs put success code of patch what is 403 status code

Interview Preparation Tips

Interview preparation tips for other job seekers - basic logical understanding of javascript ant apis
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Reverse String without using loop
  • Ans. 

    Reverse string without using loop

    • Use recursion to reverse the string

    • Base case: if string length is 0 or 1, return the string

    • Recursive case: return the last character + reverse(rest of the string)

  • Answered by AI
  • Q2. Parenthesis Balancing using stack
  • Ans. 

    Implement a parenthesis balancing algorithm using a stack

    • Use a stack to keep track of opening parentheses

    • When encountering a closing parenthesis, pop from stack and check if it matches the closing parenthesis

    • If stack is empty or mismatched parentheses, return false

    • If all parentheses are balanced, return true

  • Answered by AI

Skills evaluated in this interview

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

(5 Questions)

  • Q1. Explain framework used for selenium
  • Ans. 

    Selenium is an open-source automation testing framework used for web applications.

    • Selenium supports multiple programming languages like Java, Python, C#, etc.

    • It consists of Selenium WebDriver, Selenium IDE, and Selenium Grid.

    • Selenium WebDriver is used for automating web applications by interacting with the web elements.

    • Selenium IDE is a record and playback tool for creating test cases.

    • Selenium Grid is used for parallel...

  • Answered by AI
  • Q2. Checked and unchecked exceptions.
  • Ans. 

    Checked exceptions are checked at compile time, while unchecked exceptions are not.

    • Checked exceptions must be either caught or declared in the method signature using 'throws' keyword.

    • Unchecked exceptions do not need to be explicitly handled.

    • Examples of checked exceptions include IOException, ClassNotFoundException.

    • Examples of unchecked exceptions include NullPointerException, ArrayIndexOutOfBoundsException.

  • Answered by AI
  • Q3. Exceptions in selenium
  • Ans. 

    Exceptions in Selenium are errors that occur during test execution, such as ElementNotVisibleException or TimeoutException.

    • Selenium WebDriver throws exceptions when it encounters errors during test execution.

    • Common exceptions include NoSuchElementException, ElementNotVisibleException, TimeoutException, StaleElementReferenceException, and WebDriverException.

    • Handling exceptions in Selenium can be done using try-catch blo...

  • Answered by AI
  • Q4. Waits in selenium
  • Ans. 

    Waits in Selenium are used to synchronize tests with the browser's state.

    • Waits help to handle synchronization issues in Selenium tests

    • There are two types of waits in Selenium - Implicit Wait and Explicit Wait

    • Implicit Wait sets a default waiting time for the entire test script

    • Explicit Wait allows the test to wait for a certain condition to be met before proceeding

  • Answered by AI
  • Q5. Frames handling

Skills evaluated in this interview

Sdet Interview Questions & Answers

TCS user image Kranthi B. Irlapati

posted on 16 Jan 2025

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

(1 Question)

  • Q1. Palindrome with dynamic programming
  • Ans. 

    Using dynamic programming to check if a string is a palindrome.

    • Create a 2D array to store the results of subproblems

    • Iterate through the string and fill the array based on whether substrings are palindromes

    • Check the array to determine if the entire string is a palindrome

  • Answered by AI

Sdet Interview Questions & Answers

Infosys user image Anonymous

posted on 11 May 2022

Round 1 - Technical 

(1 Question)

  • Q1. Project related questions only and basic question
Round 2 - HR 

(1 Question)

  • Q1. Ctc discussion, expected ctc and doj

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well before interview round and be confident

Sdet Interview Questions & Answers

TCS user image Anonymous

posted on 9 May 2024

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

I applied via Naukri.com and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Oops concepts, Selenium, core java

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well on core java concepts

Sdet Interview Questions & Answers

TCS user image Anonymous

posted on 30 Sep 2022

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Basic question on corenjava
  • Q2. Basic question on selenium

Interview Preparation Tips

Interview preparation tips for other job seekers - Never join this pathetic organization. People are rude and have slave mentality.

Cigniti Technologies Interview FAQs

How many rounds are there in Cigniti Technologies Sdet interview?
Cigniti Technologies interview process usually has 1 rounds. The most common rounds in the Cigniti Technologies interview process are One-on-one Round.
How to prepare for Cigniti Technologies Sdet 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 Cigniti Technologies. The most common topics and skills that interviewers at Cigniti Technologies expect are Java, Automation, Core Java, React.Js and SDET.
What are the top questions asked in Cigniti Technologies Sdet interview?

Some of the top questions asked at the Cigniti Technologies Sdet interview -

  1. 2, In C# what are Var and Ref Keywa...read more
  2. 1, Diff b/w final, Finaly & Final...read more

Tell us how to improve this page.

Cigniti Technologies Sdet Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Sdet Interview Questions from Similar Companies

TCS Sdet Interview Questions
3.7
 • 4 Interviews
Infosys Sdet Interview Questions
3.6
 • 2 Interviews
Incedo Sdet Interview Questions
3.1
 • 1 Interview
Apexon Sdet Interview Questions
3.3
 • 1 Interview
View all
Cigniti Technologies Sdet Salary
based on 8 salaries
₹4.5 L/yr - ₹9.4 L/yr
53% less than the average Sdet Salary in India
View more details
Senior Test Engineer
609 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Engineer
513 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Test Lead
389 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Test Engineer
358 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engineer
262 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Cigniti Technologies with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview