Upload Button Icon Add office photos
Engaged Employer

i

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

Veeva Systems Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Veeva Systems Sdet Automation Test Engineer Interview Questions and Answers

Updated 5 Sep 2024

Veeva Systems Sdet Automation Test Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal

Round 1 - Technical 

(2 Questions)

  • Q1. Hashset and hashmap
  • Q2. Coding question to find the frequency of string
  • Ans. 

    Find the frequency of each string in an array of strings.

    • Create a hashmap to store the frequency of each string.

    • Iterate through the array of strings and update the hashmap accordingly.

    • Return the hashmap with the frequency of each string.

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Veeva Systems?
Ask anonymously on communities.

Interview questions from similar companies

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

I applied via Referral and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Selenium Architecture, Waits in Selenium, Collections, Reverse the String, Occurance and count of variables in a given string, how to take screenshots, Test NG Annotations, how to parse JSON in rest assure...

Sdet Automation Test Engineer Interview Questions Asked at Other Companies

Q1. Wait in selenium and how to find all links present in a page xpat ... read more
Q2. What is page object model and test ng annotations
Q3. How do you handle alerts in Selenium, and what methods do you use ... read more
Q4. How to take screenshot and project framework
Q5. What is the software testing life cycle?
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. Dynamic xpath any e-commerce
  • Ans. 

    Dynamic XPath expressions help locate elements on e-commerce sites, adapting to changing structures and attributes.

    • Use contains() to match partial text: `//div[contains(@class, 'product-name')]`.

    • Utilize starts-with() for dynamic IDs: `//input[starts-with(@id, 'search')]`.

    • Leverage attributes for filtering: `//a[@href='/category/shoes']`.

    • Combine multiple conditions: `//div[@class='product' and contains(@data-category, 'e...

  • Answered by AI
  • Q2. Testing strategies
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I appeared for an interview in Aug 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions regarding Java programming
  • Q2. Questions related to REST API and UI and GIT
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
6-8 weeks
Result
Not Selected

I applied via Referral and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Panel itself didnt join at the scheduled time of interview and after joining call I have been told panel is not available, will schedule later but again postponed. After multiple reschedules first round was scheduled which is coding cum discussion round of 90min duration.

Round 2 - One-on-one 

(1 Question)

  • Q1. Manager round who was very dumb with artificial smile on her face. She was busy responding to her chat messages through out the interview process. No respect for the interviewee, didnt ask any relevant que...

Interview Preparation Tips

Interview preparation tips for other job seekers - I got the feedback after 1 month. It was through referral and they dont want to spend referral bonus so rejected. Better dont apply for the Backbase company, its waste of your time they simply reject even after satisfactory thing from your side
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
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 

(5 Questions)

  • Q1. Write one program to reverese string questions on selenium Framework
  • Q2. Didnt remember what I have answered
  • Q3. Day to day projects
  • Q4. Testcase creation
  • Q5. Challenging questions

Interview Preparation Tips

Interview preparation tips for other job seekers - do well
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Overall 

(1 Question)

  • Q1. There were 6 rounds, 1st was coding, after that it is mandate to attend all rounds. 3 rounds of manager round, behaviour questions. 1 round of coding, with mid level algorithm based 1 round of selenium re...
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
No response
Round 1 - Technical 

(1 Question)

  • Q1. Asked about aking framework for UI Automation and 1 java string decding question

I applied via Walk-in and was interviewed before Oct 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Good technical round, you can manage, mainly Java questions used to come

Round 2 - HR 

(2 Questions)

  • Q1. HR round is also good package discussion will happen
  • Q2. Company personal so kept secret

Interview Preparation Tips

Topics to prepare for Yodlee Senior Software Engineer interview:
  • Java
Interview preparation tips for other job seekers - With ML & advanced technology in working condition in place, they require less staffs

I appeared for an interview before Apr 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

The second round is also written but you need to write programming based on their concept.

  • Q1. 

    Prime Numbers Identification

    Given a positive integer N, your task is to identify all prime numbers less than or equal to N.

    Explanation:

    A prime number is a natural number greater than 1 that has no po...

  • Ans. 

    Identify all prime numbers less than or equal to a given positive integer N.

    • Iterate from 2 to N and check if each number is prime

    • Use the Sieve of Eratosthenes algorithm for better efficiency

    • Optimize by only checking up to the square root of N for divisors

  • Answered by AI
  • Q2. 

    Palindrome String Validation

    Determine if a given string 'S' is a palindrome, considering only alphanumeric characters and ignoring spaces and symbols.

    Note:
    The string 'S' should be evaluated in a case...
  • Ans. 

    Check if a given string is a palindrome after removing special characters, spaces, and converting to lowercase.

    • Remove special characters and spaces from the string

    • Convert the string to lowercase

    • Check if the modified string is a palindrome by comparing characters from start and end

  • Answered by AI
Round 2 - Face to Face 

(6 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical round with questions mainly on Java and OOPS concepts.

  • Q1. What is the difference between static methods and instance methods in Java?
  • Ans. 

    Static methods belong to the class itself, while instance methods belong to individual objects of the class.

    • Static methods are called using the class name, while instance methods are called using object references.

    • Static methods cannot access instance variables directly, while instance methods can access both static and instance variables.

    • Static methods are shared among all instances of the class, while instance method...

  • Answered by AI
  • Q2. What is the difference between an abstract class and an interface in Java?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, member variables, and methods with implementation.

    • Interface can only have abstract methods and constants.

    • A class can implement multiple interfaces but can only extend one abstract class.

    • Example: Abstract class - Animal with abstract method 'eat', Interface - Flyable with m...

  • Answered by AI
  • Q3. What is the difference between ClassNotFoundException and NoClassDefFoundError in Java?
  • Ans. 

    ClassNotFoundException occurs when a class is not found during runtime, while NoClassDefFoundError occurs when a class was found during compilation but not during runtime.

    • ClassNotFoundException is a checked exception, while NoClassDefFoundError is an Error.

    • ClassNotFoundException occurs when a class is not found at runtime, usually due to a missing classpath or incorrect class name.

    • NoClassDefFoundError occurs when a cla...

  • Answered by AI
  • Q4. What is the difference between an Error and an Exception in Java?
  • Ans. 

    Error is a serious issue that cannot be handled at runtime, while Exception is a recoverable issue that can be caught and handled.

    • Error is a subclass of Throwable and is usually caused by the environment or system, such as running out of memory or stack overflow.

    • Exception is also a subclass of Throwable but is caused by the application code, such as invalid input or file not found.

    • Errors are unchecked and are not meant...

  • Answered by AI
  • Q5. What is SerialVersionUID in Java?
  • Ans. 

    SerialVersionUID is a unique identifier used by Java to ensure the compatibility of serialized objects.

    • SerialVersionUID is a static final long variable in a class that implements Serializable interface.

    • It is used to ensure that the serialized object can be deserialized correctly even if the class definition has changed.

    • If the SerialVersionUID of the serialized object does not match the one in the class, an InvalidClass...

  • Answered by AI
  • Q6. What are the requirements for creating an immutable class in Java?
  • Ans. 

    Requirements for creating an immutable class in Java

    • Make the class final so it cannot be extended

    • Make all fields private and final

    • Do not provide setter methods, only getter methods

    • Ensure that mutable objects are not returned in getter methods

    • Override equals() and hashCode() methods for proper comparison

    • Consider making defensive copies of mutable fields in constructor or getter methods

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAYodlee interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Veeva Systems Interview FAQs

How many rounds are there in Veeva Systems Sdet Automation Test Engineer interview?
Veeva Systems interview process usually has 1 rounds. The most common rounds in the Veeva Systems interview process are Technical.
What are the top questions asked in Veeva Systems Sdet Automation Test Engineer interview?

Some of the top questions asked at the Veeva Systems Sdet Automation Test Engineer interview -

  1. Coding question to find the frequency of str...read more
  2. Hashset and hash...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 1 interview experience

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

RGBSI Interview Questions
3.3
 • 27 Interviews
MapmyIndia Interview Questions
3.6
 • 26 Interviews
Backbase Interview Questions
3.7
 • 23 Interviews
Bottomline Interview Questions
3.4
 • 20 Interviews
3Pillar Global Interview Questions
3.2
 • 20 Interviews
Mentor Graphics Interview Questions
4.0
 • 18 Interviews
Yodlee Interview Questions
3.9
 • 17 Interviews
Cerence Interview Questions
3.2
 • 17 Interviews
Toast Interview Questions
3.4
 • 17 Interviews
View all
Veeva Systems Sdet Automation Test Engineer Salary
based on 7 salaries
₹11.2 L/yr - ₹16 L/yr
5% less than the average Sdet Automation Test Engineer Salary in India
View more details

Veeva Systems Sdet Automation Test Engineer Reviews and Ratings

based on 5 reviews

3.8/5

Rating in categories

4.0

Skill development

2.8

Work-life balance

4.2

Salary

3.0

Job security

3.4

Company culture

2.8

Promotions

3.8

Work satisfaction

Explore 5 Reviews and Ratings
Software Engineer
23 salaries
unlock blur

₹11 L/yr - ₹15 L/yr

Automation Test Engineer
18 salaries
unlock blur

₹9.4 L/yr - ₹16.5 L/yr

Senior Software Engineer
16 salaries
unlock blur

₹16.9 L/yr - ₹25.5 L/yr

Softwaretest Engineer
12 salaries
unlock blur

₹10.5 L/yr - ₹18 L/yr

Associate Software Engineer
12 salaries
unlock blur

₹10 L/yr - ₹12.7 L/yr

Explore more salaries
Compare Veeva Systems with

Prime Focus Technologies

3.3
Compare

MapmyIndia

3.6
Compare

Yodlee

3.9
Compare

Bravura Solutions

3.8
Compare
write
Share an Interview