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
3.5

based on 268 Reviews

Filter interviews by

Avalara Technologies Engineering Intern Interview Questions and Answers

Updated 28 Mar 2024

Avalara Technologies Engineering Intern Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant and was interviewed before Mar 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

It was a 30 mins aptitude test, consisting mathematical, logical and few basic programming questions

Round 2 - Coding Test 

We were asked to write 3 different basic programs on paper

Round 3 - Technical 

(1 Question)

  • Q1. Interviewer asked basic and cire java interview questions
Round 4 - Behavioral 

(1 Question)

  • Q1. The manager asked few general questions on my resume

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. They will ask basic sql questions and it was very basic

Interview Preparation Tips

Topics to prepare for Thomson Reuters Engineering Intern interview:
  • SQL
  • Python
  • Big data topics
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Dayananda Sagar College of Engineering, Bangalore and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Coding Test 

3 coding dsa question
Difficulty is On your luck
My friends got easy level
I got medium level
Some got hard questions as well

Round 2 - Aptitude Test 

Ssh round , quant and logical
Tip: bring your calculator

Round 3 - Technical 

(3 Questions)

  • Q1. Two Puzzle : bulb switching and candle
  • Q2. Dsa questions such as string reverse, binary search
  • Q3. Dbms and os core subject questions
Round 4 - HR 

(2 Questions)

  • Q1. How are you better than others
  • Q2. Why should we hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are a girl, the interview rounds will be much easier for you as this company promotes diversity hiring.
The main differing factor is technical round interview which totally depends on the interviewer's mood .
Girls do get priority in this round, they are asked easier questions and will be selected if able to answer 60-70% of the questions.
Note:- it's not like they will hire any girl but a bit easier comparatively
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. Design a efficiënte db read
  • Ans. 

    Efficient database read design

    • Use indexing to quickly locate data

    • Minimize the number of reads by fetching only necessary columns

    • Consider denormalizing data for faster reads

    • Implement caching mechanisms to reduce database load

    • Optimize queries by avoiding unnecessary joins

  • Answered by AI
  • Q2. Exception handling
  • Q3. Customruntime exception
  • Q4. Design abstract factory
  • Q5. Design a system to read the data efficiently without iterating on record repeatedly
  • Ans. 

    Use indexing to access data directly without iterating

    • Implement a database with proper indexing on key fields

    • Utilize data structures like hash tables or binary search trees for quick access

    • Consider using caching mechanisms to store frequently accessed data

    • Optimize queries by using efficient algorithms like merge sort or quicksort

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare core java and design questions

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Use case+ situation based question to gauge management skills
  • Q2. Stakeholder management
Round 2 - Technical 

(2 Questions)

  • Q1. Sudoko pseudo code , complexity
  • Q2. Mentoring and feedback related questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Interaction with onsite team
Round 4 - One-on-one 

(2 Questions)

  • Q1. General discussion regarding tech challenges
  • Q2. Leadership styles, working in existingteam vs new team

Interview Preparation Tips

Interview preparation tips for other job seekers - Research ahead about ccompany
Interview experience
4
Good
Difficulty level
-
Process Duration
6-8 weeks
Result
-
Round 1 - Group Discussion 

Android vs apple conversation between 30 mins

Round 2 - Technical 

(2 Questions)

  • Q1. Basic resume quest
  • Q2. Technical based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Hackerrank 3 questions were given of binary search dp and a math coding question

Round 2 - Technical 

(2 Questions)

  • Q1. Heap hard question
  • Q2. Nothing only one question was asked

Interview Preparation Tips

Interview preparation tips for other job seekers - I was not up to the mark
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Backtracking problem for tree

Round 2 - Technical 

(1 Question)

  • Q1. High level design of search engine
  • Ans. 

    A search engine is a software system that is designed to search for information on the World Wide Web.

    • Crawling: Search engines use web crawlers to discover and index web pages.

    • Indexing: The search engine creates an index of the content it finds during crawling.

    • Ranking: Algorithms are used to determine the relevance of web pages to a user's query.

    • User Interface: A search engine provides a user-friendly interface for use...

  • Answered by AI

Skills evaluated in this interview

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

I applied via campus placement at Kongu Engineering College, Erode and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Written test coding and with aptitude questions are asked

Round 2 - Technical 

(1 Question)

  • Q1. Asking about OOPS and C++ basics concepts

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Round 1  was a coding round of 60 min which started around 5:30PM in which 2 problem statements were given. The questions were based on Array and linked list. The platform used for test was coding which was user friendly and which use to display number of test cases passed and some test cases were hidden.

  • Q1. 

    Problem: Deletion in Circular Linked List

    You are provided with a Circular Linked List of integers and a specific integer, referred to as 'key'.

    Your task is to implement a function that locates the spec...

  • Ans. Recursion

    The idea is to use a recursive approach to find the given key and then remove that node. The recursive idea is very clear that we will traverse through the circular linked list, and we will check if the value of the node is equal to the given key. 
     

    We will define a function deleteNodeHelper(root, key, head) to remove the key in which the head is the starting node of the linked list, and we will send ...

  • Answered Anonymously
  • Q2. 

    Rearrange Array: Move Negative Numbers to the Beginning

    Given an array ARR consisting of N integers, rearrange the elements such that all negative numbers are located before all positive numbers. The orde...

  • Ans. Using Sorting

    Approach: A brute force approach could be to just sort the given array in ascending order. This will result in all negative numbers to appear at the beginning and positive number at the end.

    Space Complexity: O(1)Explanation:

    O(1)

     

    Because no extra space is required.

    Time Complexity: O(nlogn)Explanation:

    O(N*logN), where N is the number of elements in the array.

     

    In the worst case, sorting requires O...

  • Answered Anonymously
Round 2 - Video Call 

Round duration - 30-35 minutes
Round difficulty - Medium

This round was of technical interview and they asked me various concepts

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Cummins College Of Engineering For Women, Nagpur. I applied for the job as SDE - Intern in PuneEligibility criteriaAbove 65% in 10th,12th, degreeWolters Kluwer interview preparation:Topics to prepare for the interview - Java, Data Structure, OPPS, SQL, SDLC, Networking, TestingTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Read well the job profile, company background and skill requirements and prepare accordingly. 
Tip 2 : Whatever topic you are preparing don't just study to finish the topic but study to understand it because interviewers often deep dive and ask questions, make sure you basics are getting cleared.
Tip 3 : Solve Aptitude questions, coding problems as much as possible.

Application resume tips for other job seekers

Tip 1 : Write optimal yet powerful summary. 
Tip 2 : Highlight your education,internships, projects, certifications.
Tip 3 : Do mention technologies in which you worked on in your internship, projects. 
Tip 4 : If you don't have any internship/project(any one will work fine but both are big plus) done go and get some work done and make your hands dirty and then put it in your resume. 
Tip 6 : Avoid writing long statements.
Tip 7 : Honesty is the best policy.

Final outcome of the interviewSelected

Skills evaluated in this interview

Avalara Technologies Interview FAQs

How many rounds are there in Avalara Technologies Engineering Intern interview?
Avalara Technologies interview process usually has 4 rounds. The most common rounds in the Avalara Technologies interview process are Aptitude Test, Coding Test and Technical.
How to prepare for Avalara Technologies Engineering Intern 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 Agile, Analytical, Coding, Data Structures and Debugging.

Tell us how to improve this page.

Avalara Technologies Engineering Intern Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

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
Zoho Interview Questions
4.3
 • 512 Interviews
Globant Interview Questions
3.9
 • 169 Interviews
Chetu Interview Questions
3.3
 • 166 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
Freshworks Interview Questions
3.5
 • 154 Interviews
View all
Senior Software Engineer
180 salaries
unlock blur

₹13 L/yr - ₹45 L/yr

Associate Analyst
118 salaries
unlock blur

₹3.5 L/yr - ₹7.2 L/yr

Software Engineer
104 salaries
unlock blur

₹14.4 L/yr - ₹25 L/yr

Technical Lead
99 salaries
unlock blur

₹16.9 L/yr - ₹54 L/yr

Associate
78 salaries
unlock blur

₹1.6 L/yr - ₹7.5 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