Upload Button Icon Add office photos
Engaged Employer

i

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

Upland Software Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Upland Software Test Engineer Interview Questions and Answers

Updated 30 Oct 2024

Upland Software Test Engineer Interview Experiences

1 interview found

Test Engineer Interview Questions & Answers

user image Siva Eleven

posted on 30 Oct 2024

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Cleared the reasoning and aptitude test.

Round 2 - Coding Test 

Cleared interview on selenium, javascript, cypress, Manual testing and coding on javascript

Round 3 - Group Discussion 

Had discussion with client and manager. Over view of personal skills, technical skills on Cypress.

Round 4 - HR 

(2 Questions)

  • Q1. How do you choose the organizations if you got another offer in the hand
  • Q2. Why we should hire you?

Interview Preparation Tips

Interview preparation tips for other job seekers - After clearing all the technical rounds is not only to clear HR round is main. Even it took 100 mins instead of scheduled 45 mins. only to satisfy the HR is main after asking irrelevant questions on other stuffs. Even I answered them.

Rejected me because of salary package. There is no discussion came on salary package. What a tragedy.

You know my experience, salary and other stuffs bit you took interview and got selected all the rounds. I didn't say that the people do wrong it is purely on the last round you attend.
I won't recommend or encourage this type of nature by organization.

Don't join in this type of organisation please.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Javascript fundamentals and output questions Angular - routing, component, directive etc Sass

Interview Preparation Tips

Interview preparation tips for other job seekers - Positive experience

Interview Questionnaire 

1 Question

  • Q1. Previous project and skills

Interview Preparation Tips

Round: Technical Interview
Experience: What I mentioned in resume the technical interview asked based on my resume

Interview Questionnaire 

2 Questions

  • Q1. Salary discussion and notice period
  • Q2. Core java, collections and coding

Interview Preparation Tips

Round: Manager Round
Experience: About project and previous company experience , daily activity

Software Engineer Interview Questions & Answers

Adobe user image Devendra Bendkhale

posted on 4 Dec 2015

Interview Questionnaire 

8 Questions

  • Q1. WRITE A GENERIC SWAP FUNCTION
  • Ans. 

    A generic swap function swaps two values of any data type.

    • The function should take two parameters of any data type.

    • Use a temporary variable to store the value of one parameter.

    • Assign the value of the second parameter to the first parameter.

    • Assign the value of the temporary variable to the second parameter.

  • Answered by AI
  • Q2. SEARCH AN ELEMENT IN ROTATED SORTED LINKLIST .
  • Ans. 

    Search for an element in a rotated sorted linked list.

    • Find the pivot point where the list is rotated.

    • Divide the list into two sublists based on the pivot point.

    • Perform binary search on the appropriate sublist.

    • Handle edge cases such as empty list and list with only one element.

  • Answered by AI
  • Q3. SEARCH AN ELEMENT IN ROTATED SORTED ARRAY. WRITED A CODE FOR IT
  • Ans. 

    Search an element in a rotated sorted array

    • Find the pivot point where the array is rotated

    • Divide the array into two sub-arrays based on pivot point

    • Perform binary search on the appropriate sub-array

    • Repeat until element is found or sub-array size is 1

  • Answered by AI
  • Q4. In an Array of size 95 contain numbers in range 1 to 100. each number is at max once in the array. find the 5 missing numbers in array between 1-100
  • Ans. 

    Find 5 missing numbers in an array of size 95 containing numbers in range 1 to 100.

    • Create a boolean array of size 100 and mark the present numbers

    • Iterate through the boolean array and find the missing numbers

    • Alternatively, use a HashSet to store the present numbers and find the missing ones

  • Answered by AI
  • Q5. Given sudoku as id array of size . in a given empty cell find the possible numbers that could be possible. Asked me to write code for it
  • Ans. 

    Given a Sudoku board, find possible numbers for an empty cell.

    • Iterate through empty cells and check possible numbers using row, column, and box constraints.

    • Use a set to keep track of possible numbers for each empty cell.

    • Return the set of possible numbers for the given empty cell.

  • Answered by AI
  • Q6. Given 4 unsigned integers find their integer average (eg. (2,2,2,3) => (2+2+2+3)/4 = 2) consider integer division ) without typecasting
  • Ans. 

    Find integer average of 4 unsigned integers without typecasting

    • Add all the integers and divide by 4

    • Use bit shifting to divide by 4

    • Handle overflow by using long long data type

    • Use unsigned int data type for input

  • Answered by AI
  • Q7. Write a code to identify wheter given processor is of 32 bit architecture or 64 bit architecture
  • Ans. 

    Code to identify 32 bit or 64 bit architecture of a processor

    • Check if the operating system is 32 bit or 64 bit

    • If OS is 32 bit, processor is 32 bit

    • If OS is 64 bit, check if processor supports 64 bit architecture

    • Use CPUID instruction to check if processor supports 64 bit architecture

  • Answered by AI
  • Q8. Convert a binary number into base 64 integer
  • Ans. 

    Convert binary number to base 64 integer

    • Divide the binary number into groups of 6 bits

    • Convert each group of 6 bits to decimal

    • Map the decimal value to the corresponding base 64 character

    • Concatenate the base 64 characters to form the final integer

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: SIMPLE CODING QUESTIONS SPEED MATTERS.
Duration: 60 minutes
Total Questions: 3

Skills: Analytics And Coding
College Name: IIT Guwahati

Skills evaluated in this interview

Interview Questionnaire 

6 Questions

  • Q1. Solving puzzles(25 horses,ant and sweets,height of a building..) try as many as possible before appearing for interview
  • Q2. If experienced , then project details of previous companies a must prepare question
  • Q3. Writing test cases for random scenarios
  • Q4. Programming in whatsoever language you r comfortable with, basic coding problems of DS,Algos. eg. Zigzag tree traversal algo,random linked list copy
  • Q5. Some people asked me questions related to the work i will do if hired in the project
  • Q6. Be genuine in ur CV, and be prepared with everything you write there.

Interview Preparation Tips

College Name: Na

Interview Preparation Tips

Round: Resume Shortlist
Experience: I had a standard resume for this company as per the norms of our institute’s placement cell. For Oracle I laid emphasis on my programming skills and projects related to it.

Round: Test
Experience: The first round was the written test that comprised of 5 sections – vocabulary, aptitude, pattern matching, logical reasoning and programming. The questions in the programming section were asked from data structures and C++. The questions in the programming section were mainly from trees (from data structures). Around 400 students appeared for their written test out of which around 100 were shortlisted.

Round: HR Interview
Experience: The next round was the interview round. They gave me some puzzles to solve and a program to write. One of the puzzles that I remember was that if I were to be given an egg then how would I determine its durability, i.e. how would I determine that from which floor do I need to throw the egg from so that the egg does not break if thrown from any floor below it.
For the coding question I was given a mathematical formula and I was asked to devise a code such that the program uses the formula and gives the output.
Tips: Prepare for Data Structures as well as the commonly asked puzzles for Oracle.

College Name: IIT ROORKEE
Motivation: Oracle is a reputed company in the space of software and ITeS. It had come to our campus with five profiles. The best means to know about all of them is to attend the pre-placement talk of the company.

I applied via LinkedIn and was interviewed before May 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basics in Java, Microservices & Spring boot

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with your basics on Java 8, Spring boot

I applied via Naukri.com and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Basic oop
  • Q2. Previous projects and walktrough of one of the project, if any
  • Q3. Basic English test on a computer

Interview Preparation Tips

Interview preparation tips for other job seekers - The first step of the interview is the basic communication skills, which is taken on computer, try to listen carefully, most of the questions are only about what you have comprehend from the automated voice when played over.

OOP is very basic, they may ask some real life examples.

If you have worked previously, they may ask you about one of your projects. What technologies have you used ans why.

Interview Questionnaire 

3 Questions

  • Q1. What is in line view. How view is provided security. What is bulk collect. Write a plsql program to display week days except Saturday and Sunday. What is difference between rowid and rownum. What is diffe...
  • Ans. 

    Answers to questions related to software engineering concepts and PL/SQL programming.

    • Inline view is a virtual table created in the FROM clause of a SQL query.

    • Views can be secured by granting appropriate privileges to users and implementing row-level security.

    • BULK COLLECT is a feature in PL/SQL that allows fetching multiple rows from a query into a collection.

    • PL/SQL program to display weekdays except Saturday and Sunday...

  • Answered by AI
  • Q2. Ask about project . How to understand client request. Explain about software SDLC.
  • Q3. Discuss about salary and benefits.

Upland Software Interview FAQs

How many rounds are there in Upland Software Test Engineer interview?
Upland Software interview process usually has 4 rounds. The most common rounds in the Upland Software interview process are Aptitude Test, Coding Test and Group Discussion.

Tell us how to improve this page.

Upland Software Test Engineer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 860 Interviews
KPIT Technologies Interview Questions
3.4
 • 284 Interviews
Adobe Interview Questions
3.9
 • 234 Interviews
Salesforce Interview Questions
4.0
 • 226 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
ServiceNow Interview Questions
4.1
 • 120 Interviews
NICE Interview Questions
3.6
 • 81 Interviews
View all
Software Engineer2
11 salaries
unlock blur

₹21 L/yr - ₹29 L/yr

Senior Software Engineer
7 salaries
unlock blur

₹16 L/yr - ₹44 L/yr

Senior Software Engineer 2
7 salaries
unlock blur

₹38 L/yr - ₹50 L/yr

Software Engineer Level 1
7 salaries
unlock blur

₹14 L/yr - ₹19.4 L/yr

Product Owner
7 salaries
unlock blur

₹22 L/yr - ₹38.4 L/yr

Explore more salaries
Compare Upland Software with

Oracle

3.7
Compare

KPIT Technologies

3.4
Compare

Intellect Design Arena

3.9
Compare

Oracle Cerner

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