Upload Button Icon Add office photos
Engaged Employer

i

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

Avalara Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Avalara Technologies Sdet Interview Questions and Answers

Updated 9 Oct 2023

Avalara Technologies Sdet Interview Experiences

1 interview found

Sdet Interview Questions & Answers

user image Anonymous

posted on 9 Oct 2023

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Apr 2023. There were 3 interview rounds.

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 

(1 Question)

  • Q1. Technical questions related to tech which we worked on total three rounds was there and all were technical
Round 3 - Technical 

(1 Question)

  • Q1. All tech concept which we worked on

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

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

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
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Tha aptitude exam was not very easy and not that difficult. It was something which one can easily get into.

Round 2 - Technical 

(1 Question)

  • Q1. Question related to 1. Servers 2. Coding practices 3. Database queries 4. Latest versions syntax
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. Windows internals
  • Q2. Windows apis like loaddll dynamically
  • Q3. IPC mechanism in windows
  • Ans. 

    IPC mechanism in Windows allows communication between processes through shared memory, message passing, and synchronization.

    • IPC mechanisms in Windows include named pipes, mailslots, shared memory, and sockets.

    • Named pipes allow communication between processes on the same machine or over a network.

    • Mailslots are used for one-way interprocess communication.

    • Shared memory allows processes to share data by mapping a region of...

  • Answered by AI
  • Q4. Multi-threading in windows
  • Ans. 

    Multi-threading in Windows allows multiple threads to run concurrently within a single process.

    • Windows provides APIs like CreateThread and CreateProcess to create and manage threads.

    • Threads share the same memory space within a process, allowing for efficient communication and resource sharing.

    • Windows supports both user-mode and kernel-mode threads, with user-mode threads being more lightweight.

    • Synchronization mechanism...

  • Answered by AI
  • Q5. C++ general questions
Round 2 - Technical 

(4 Questions)

  • Q1. Memory management
  • Q2. Memory mapping in windows, file mapping
  • Ans. 

    Memory mapping in Windows allows files to be mapped directly into memory for faster access and manipulation.

    • Memory mapping allows files to be accessed as if they were in memory

    • File mapping can be used for sharing data between processes

    • Improves performance by reducing disk I/O operations

    • Examples: CreateFileMapping, MapViewOfFile, UnmapViewOfFile

  • Answered by AI
  • Q3. Windows internal
  • Q4. Critical section in windows
  • Ans. 

    Critical section in Windows is a synchronization mechanism used to protect shared resources from concurrent access.

    • Critical sections are used to ensure mutual exclusion between threads accessing shared resources.

    • They are implemented using the Windows API functions InitializeCriticalSection, EnterCriticalSection, and LeaveCriticalSection.

    • Critical sections are more efficient than mutexes for synchronization within a sing...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through c++ apis specifically for windows.

Skills evaluated in this interview

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

It was online , evryone cheated , and even solving all the questions wont get you shortlisted

Round 2 - Technical 

(2 Questions)

  • Q1. Dynamic memory allocation in c
  • Ans. 

    Dynamic memory allocation in C allows for allocating memory at runtime, enabling flexibility in memory usage.

    • Use functions like malloc(), calloc(), and realloc() to dynamically allocate memory in C.

    • Remember to free the allocated memory using free() to prevent memory leaks.

    • Dynamic memory allocation is commonly used for creating arrays or structures of unknown size at compile time.

  • Answered by AI
  • Q2. Reverse linked list

Skills evaluated in this interview

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

I applied via Instahyre and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Product array itself

Round 2 - Assignment 

Parking lot design system design in java

Avalara Technologies Interview FAQs

How many rounds are there in Avalara Technologies Sdet interview?
Avalara Technologies interview process usually has 3 rounds. The most common rounds in the Avalara Technologies interview process are Technical and Resume Shortlist.
How to prepare for Avalara 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 Avalara Technologies. The most common topics and skills that interviewers at Avalara Technologies expect are Manual Testing, Automation Testing, Computer science, Python and SDET.
What are the top questions asked in Avalara Technologies Sdet interview?

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

  1. technical questions related to tech which we worked on total three rounds was t...read more
  2. All tech concept which we worked...read more

Tell us how to improve this page.

Avalara Technologies Sdet Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Infosys Interview Questions
3.6
 • 7.5k 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
 • 2.9k Interviews
Zoho Interview Questions
4.3
 • 505 Interviews
Chetu Interview Questions
3.3
 • 172 Interviews
Freshworks Interview Questions
3.5
 • 157 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
AVASOFT Interview Questions
3.7
 • 154 Interviews
View all
Avalara Technologies Sdet Salary
based on 26 salaries
₹10 L/yr - ₹30 L/yr
38% more than the average Sdet Salary in India
View more details

Avalara Technologies Sdet Reviews and Ratings

based on 2 reviews

3.0/5

Rating in categories

3.0

Skill development

4.9

Work-life balance

4.0

Salary

2.0

Job security

2.0

Company culture

2.0

Promotions

3.0

Work satisfaction

Explore 2 Reviews and Ratings
Senior Software Engineer
187 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Analyst
124 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
105 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
100 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate
81 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Avalara Technologies with

Tally Solutions

4.2
Compare

QUICK HEAL TECHNOLOGIES

3.7
Compare

Zoho

4.3
Compare

Freshworks

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