Upload Button Icon Add office photos

Filter interviews by

Clear (1)

QualityKiosk Technologies Senior RPA Developer Interview Questions and Answers

Updated 28 Dec 2023

QualityKiosk Technologies Senior RPA Developer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. 1.About projects till what i have done 2.RPA 3.Reframework 4.Excel and Email automation 5.Agile methodology 6.Document understanding 7.Selectors 8.Orchestrator 9.Challenges which ihave faced in projects. ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be on ur way give ur best in each interview. Many interviews attept is preferble.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Mainly about framework and protractor details.

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 3 rounds of technical interview. One HR interview. Processing was very nice and fast. I got the offer within a week. Client interview round was very nice. If you have indepth knowledge and understanding then you definitely crack the interview.

I applied via Naukri.com and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. All about functional testing
  • Q2. All about basic SQL, and testing methodologies
Round 2 - One-on-one 

(1 Question)

  • Q1. Manager round. al about the management queries,
Round 3 - HR 

(1 Question)

  • Q1. Behavoural and CTC discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Cigini is good organization for the new learners, if you want to learn cigniti is best plotform to work.
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Opps interview questions
  • Q2. Some of the interview question base on mysql and collecections
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Easy to medium prepare concepts like time-based concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - easy
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before Oct 2023.

Round 1 - Coding Test 

Machine test was given for 30mins

Round 2 - One-on-one 

(2 Questions)

  • Q1. Event loop and its operations
  • Ans. 

    Event loop is a mechanism in programming that allows for asynchronous execution of code by continuously checking for events and executing associated callbacks.

    • Event loop is commonly used in JavaScript to handle asynchronous operations.

    • It continuously checks the call stack for any pending tasks and executes them in a non-blocking manner.

    • Event loop allows for efficient handling of I/O operations without blocking the main...

  • Answered by AI
  • Q2. Mssql query for group bu
  • Ans. 

    Use GROUP BY clause in MSSQL to group data based on a specific column.

    • Use GROUP BY followed by the column you want to group by

    • Can be used with aggregate functions like COUNT, SUM, AVG, etc.

    • Example: SELECT column_name, COUNT(*) FROM table_name GROUP BY column_name

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. How to print numbers 1-100 using two go routines sequentially
  • Ans. 

    Use two go routines to print numbers 1-100 sequentially

    • Create two go routines, one for printing odd numbers and one for printing even numbers

    • Use channels to synchronize the two go routines and ensure sequential printing

    • Start the odd number go routine first, then start the even number go routine

  • Answered by AI
  • Q2. How to write generator functions using go language
  • Ans. 

    Generator functions in Go language allow for efficient iteration over a sequence of values.

    • Use the 'yield' keyword to return values one at a time from the generator function.

    • Generator functions are defined with a 'func' keyword followed by the function name and 'chan' keyword.

    • Example: func myGenerator() chan int { }

    • Use a 'for' loop to iterate over the values returned by the generator function.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Why do we use sync.Cond and sync.once
  • Ans. 

    sync.Cond is used for signaling between goroutines and sync.Once is used for running initialization code only once.

    • sync.Cond is used for goroutines to wait for or signal each other when a certain condition is met

    • sync.Once is used to ensure a function is only executed once, typically used for initialization tasks

    • Example: Using sync.Cond to coordinate multiple goroutines accessing a shared resource

    • Example: Using sync.Onc...

  • Answered by AI
  • Q2. Understanding about reflect package
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Job Portal and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Coding Test 

React js coding round

Round 2 - HR 

(1 Question)

  • Q1. Behavioral questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is a View?
  • Ans. 

    A View is a virtual table created by a query that can be used to retrieve and display data from one or more tables.

    • A View is not a physical table, but rather a result set of a stored query.

    • Views can simplify complex queries by storing them as a reusable object.

    • Views can also provide an additional layer of security by restricting access to certain columns or rows.

    • Examples: 'CREATE VIEW vw_employee AS SELECT * FROM emplo

  • Answered by AI
  • Q2. View defines the user-interface
  • Ans. 

    View defines the user-interface by determining how data is presented to the user.

    • View is responsible for displaying data and receiving user input.

    • It includes elements like buttons, text fields, and images.

    • Views can be designed using XML layouts in Android development.

    • Views can be styled using CSS in web development.

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
No response
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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Explain about current project
  • Q2. Explain devops architecture
  • Ans. 

    DevOps architecture is a set of practices that combines software development (Dev) and IT operations (Ops) to shorten the systems development life cycle.

    • DevOps architecture focuses on collaboration, automation, and monitoring throughout the software development lifecycle.

    • It aims to increase the speed of software delivery, improve reliability, and build scalable systems.

    • Examples of DevOps tools include Jenkins, Docker,

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

QualityKiosk Technologies Interview FAQs

How many rounds are there in QualityKiosk Technologies Senior RPA Developer interview?
QualityKiosk Technologies interview process usually has 2 rounds. The most common rounds in the QualityKiosk Technologies interview process are Resume Shortlist and Technical.

Recently Viewed

INTERVIEWS

Alembic Pharmaceuticals

No Interviews

INTERVIEWS

QualityKiosk Technologies

No Interviews

INTERVIEWS

QualityKiosk Technologies

No Interviews

INTERVIEWS

QualityKiosk Technologies

No Interviews

INTERVIEWS

QualityKiosk Technologies

No Interviews

INTERVIEWS

Alembic Pharmaceuticals

No Interviews

INTERVIEWS

QualityKiosk Technologies

No Interviews

INTERVIEWS

QualityKiosk Technologies

No Interviews

INTERVIEWS

Alembic Pharmaceuticals

No Interviews

SALARIES

Calpion Software Technologies

Tell us how to improve this page.

QualityKiosk Technologies Senior RPA Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

CitiusTech Interview Questions
3.4
 • 269 Interviews
NeoSOFT Interview Questions
3.9
 • 261 Interviews
Tiger Analytics Interview Questions
3.7
 • 222 Interviews
Episource Interview Questions
3.9
 • 220 Interviews
Altimetrik Interview Questions
3.8
 • 213 Interviews
Incedo Interview Questions
3.1
 • 180 Interviews
Xoriant Interview Questions
4.1
 • 179 Interviews
Indium Software Interview Questions
4.0
 • 162 Interviews
View all
QualityKiosk Technologies Senior RPA Developer Salary
based on 47 salaries
₹5.5 L/yr - ₹15.2 L/yr
24% less than the average Senior RPA Developer Salary in India
View more details

QualityKiosk Technologies Senior RPA Developer Reviews and Ratings

based on 5 reviews

3.5/5

Rating in categories

3.7

Skill development

3.0

Work-life balance

4.2

Salary

3.3

Job security

3.6

Company culture

3.3

Promotions

3.4

Work satisfaction

Explore 5 Reviews and Ratings
Test Engineer
2.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Test Engineer
1.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
994 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Automation Test Engineer
240 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Test Lead
235 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare QualityKiosk Technologies with

Thinksoft Global Services

3.7
Compare

Cigniti Technologies

3.7
Compare

Indium Software

4.0
Compare

Maveric Systems

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