Upload Button Icon Add office photos

Filter interviews by

LexisNexis Risk Solutions Quality Engineering Lead Interview Questions and Answers

Updated 12 Jul 2022

LexisNexis Risk Solutions Quality Engineering Lead Interview Experiences

1 interview found

I applied via Recruitment Consulltant and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. 1. What are your technical skills?
  • Q2. 2. What is your current package? and what are you expecting?
  • Q3. 3. what is your notice period and if you are already on notice period why you are looking new job?
Round 2 - Technical 

(3 Questions)

  • Q1. Selenium WebDriver and its related questions
  • Q2. API testing question, which tool used, how you make validation, get and push method
  • Q3. BDD and Test NG framework Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, listen carefully and be honest, if you dont know answers dont waste the time for both

Interview questions from similar companies

I was interviewed before Jun 2016.

Interview Preparation Tips

Round: Test
Experience: There were 2 objective written tests, 1st one had one section of mathematics questions (CAT like) and one section of Data Structure, C/C++ questions, 2nd one had only mathematics questions but they were tougher than those in the 1st test

Round: Technical Interview
Experience: I was asked some question on my resume, about the projects I had done, academics etc. Then he asked me to suggest a data structure I would use for a certain problem. He kept on increasing the complexity of the problem and asked me the suitable data structure at each step. The second interviewer asked me to propose a model for credit card security. He too kept on increasing the complexity level of the problem. The third interviewer asked me to redo some of the questions I did wrong or couldn
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. About WebForms?
  • Q2. Basic C# Concepts - Interface,ExtensionMethod, Windows Function, Triggers, Magic Table
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Pattern programming, javascriptt based questions

Round 2 - Technical 

(1 Question)

  • Q1. Browser specific questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Mar 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

2 coding qns and aptitude

Round 2 - Technical 

(2 Questions)

  • Q1. Question from resume, projects, SQL, OOPS
  • Q2. Lambda function in python
  • Ans. 

    Lambda function in Python is an anonymous function that can have any number of arguments, but can only have one expression.

    • Lambda functions are defined using the lambda keyword.

    • They are commonly used for small, one-time tasks.

    • They can take any number of arguments, but can only have one expression.

    • Example: lambda x: x*2 will return the double of x.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Why do you want to work for this company

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Questions related to Java, Spring, Rest API
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic java collection questions
Round 2 - Technical 

(1 Question)

  • Q1. Spring boot basic questions
Round 3 - HR 

(1 Question)

  • Q1. Why should we hire you
  • Ans. 

    I have a strong technical background, proven track record of delivering high-quality software, and a passion for continuous learning and improvement.

    • I have a Bachelor's degree in Computer Science and X years of experience in software development.

    • I have successfully led multiple projects from conception to completion, delivering high-quality software on time and within budget.

    • I am proficient in a variety of programming ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not even apply
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Duration - 1hr
Topic - String, Number, Array
Platform - Their own

Round 2 - Technical 

(2 Questions)

  • Q1. Opps, Java concepts
  • Q2. Why is string immutable in java?
  • Ans. 

    String is immutable in Java to ensure security, thread safety, and optimization.

    • Immutable strings are thread-safe as they cannot be modified concurrently by multiple threads.

    • String pooling allows Java to optimize memory usage by reusing common string literals.

    • Immutable strings prevent security vulnerabilities like SQL injection attacks.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. General Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be patient in the interview.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Basic java core questions and project questions
  • Q2. Hashmap vs hashset
  • Ans. 

    Hashmap is a key-value pair data structure while Hashset is a set of unique values.

    • Hashmap allows duplicate values but not duplicate keys.

    • Hashset does not allow duplicate values.

    • Hashmap is implemented using a combination of hash table and linked list.

    • Hashset is implemented using only a hash table.

    • Example of Hashmap: {1:'one', 2:'two', 3:'three'}

    • Example of Hashset: {'apple', 'banana', 'orange'}

  • Answered by AI
  • Q3. Arraylist vs hashmap
  • Ans. 

    ArrayList is a resizable array while HashMap is a key-value pair data structure.

    • ArrayList is ordered and allows duplicates while HashMap is unordered and does not allow duplicate keys.

    • ArrayList is accessed by index while HashMap is accessed by key.

    • ArrayList is suitable for storing and accessing elements sequentially while HashMap is suitable for fast lookup of values by key.

    • Example: ArrayList - List names = new ArrayLi...

  • Answered by AI
  • Q4. Abstract class vs interface
  • Ans. 

    Abstract class is a class that cannot be instantiated, while an interface is a contract that a class must implement.

    • Abstract classes can have implemented methods, while interfaces cannot

    • A class can implement multiple interfaces, but can only inherit from one abstract class

    • Interfaces are used for achieving multiple inheritance in Java

    • Abstract classes are used for creating a base class for other classes to inherit from

    • Ex...

  • Answered by AI
  • Q5. Projects questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Have some good knowledge of java core and graduation projects

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Apr 2022. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Sort array containing 0s, 1s and 2s
  • Ans. 

    Sort an array of 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of the positions of 0s, 1s, and 2s.

    • Traverse the array and swap elements to their respective positions.

    • Time complexity: O(n), Space complexity: O(1).

  • Answered by AI
  • Q2. Spiral order traversal of BST.
  • Ans. 

    Spiral order traversal of BST

    • Use two stacks to traverse the tree in a spiral order

    • Push the root node into the first stack

    • While the first stack is not empty, pop a node and print its value

    • Push its left and right children into the second stack

    • Once the first stack is empty, swap the stacks and repeat the process

    • Continue until both stacks are empty

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - DS Algo round. Start doing top 100 leetcode questions

Skills evaluated in this interview

LexisNexis Risk Solutions Interview FAQs

How many rounds are there in LexisNexis Risk Solutions Quality Engineering Lead interview?
LexisNexis Risk Solutions interview process usually has 2 rounds. The most common rounds in the LexisNexis Risk Solutions interview process are HR and Technical.
What are the top questions asked in LexisNexis Risk Solutions Quality Engineering Lead interview?

Some of the top questions asked at the LexisNexis Risk Solutions Quality Engineering Lead interview -

  1. API testing question, which tool used, how you make validation, get and push me...read more
  2. Selenium WebDriver and its related questi...read more
  3. BDD and Test NG framework Questi...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

S&P Global Interview Questions
4.1
 • 275 Interviews
TransUnion Interview Questions
4.0
 • 89 Interviews
FICO Interview Questions
4.0
 • 38 Interviews
Equifax Interview Questions
3.3
 • 29 Interviews
Experian Interview Questions
3.8
 • 22 Interviews
DynPro Interview Questions
3.8
 • 18 Interviews
View all

LexisNexis Risk Solutions Quality Engineering Lead Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Executive
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer III
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Quality Test Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare LexisNexis Risk Solutions with

Experian

3.8
Compare

TransUnion

4.0
Compare

Equifax

3.3
Compare

Crif High Mark Credit Information Services

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