Upload Button Icon Add office photos

Filter interviews by

Basware Technical Consultant Interview Questions and Answers

Updated 16 Feb 2024

Basware Technical Consultant Interview Experiences

2 interviews found

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

I applied via Company Website and was interviewed before Sep 2021. There were 2 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 

(2 Questions)

  • Q1. Find the manager name with respective employee name from a table.
  • Ans. 

    The answer to the question is to perform a join operation on the table to retrieve the manager name with respective employee name.

    • Use a SQL query to join the table on the manager ID

    • Select the manager name and employee name from the joined table

    • Display the manager name with respective employee name

  • Answered by AI
  • Q2. How to find the 3rd highest salary of any Employee from a table?
  • Ans. 

    To find the 3rd highest salary of any Employee from a table, we can use the SQL query with the 'ORDER BY' and 'LIMIT' clauses.

    • Write an SQL query to select the distinct salaries from the table in descending order.

    • Use the 'LIMIT' clause to limit the result to the third row.

    • The selected salary will be the 3rd highest salary of any employee.

  • Answered by AI

Skills evaluated in this interview

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

Interview Questionnaire 

3 Questions

  • Q1. Questions related to EDI documents, flow
  • Q2. Communication protocols such as SFTP, AS2
  • Q3. EDI Mapping flow, EDI transaction sets specification such as PO, Invoice etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and Write only those skills on resume on which you are confident enough and have hands on experience on those skills.

Technical Consultant Interview Questions Asked at Other Companies

asked in Mastek
Q1. Oops C and java difference Query for selecting all columns from a ... read more
Q2. What are the real time applications of spring concept in java?
asked in HCLTech
Q3. What is difference between family ipv6 route-target and default-r ... read more
asked in PwC
Q4. If I give you a new tool can you cope with it
asked in HCLTech
Q5. Why we received sngl collisions error on port what's the issue an ... read more

Interview questions from similar companies

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

I applied via Referral and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Three DSA questions one on likedlist one on BST and one on maps

Round 2 - Technical 

(2 Questions)

  • Q1. Cpp pointers explain smart pointers
  • Ans. 

    Smart pointers in C++ provide automatic memory management and help prevent memory leaks.

    • Smart pointers are objects that manage the memory of a pointer automatically.

    • They ensure that memory is deallocated when it is no longer needed.

    • Examples include unique_ptr, shared_ptr, and weak_ptr.

  • Answered by AI
  • Q2. Cpp question based on OOPs concepts
Round 3 - Coding Test 

DSA questions on graph and lots of puzzles

Interview Preparation Tips

Topics to prepare for Ansys Software Private Limited Senior Engineer interview:
  • C++
  • DSA
  • OOPS
  • Puzzles
Interview preparation tips for other job seekers - Overall good experience, but the HR hasn't replied yet.

Skills evaluated in this interview

I appeared for an interview in Apr 2022.

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 - One-on-one 

(2 Questions)

  • Q1. Related to fpga qutioms
  • Q2. Ask About protocols and implementation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident while we attend interview
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Basic question on dot net and sql server
Round 2 - Technical 

(1 Question)

  • Q1. Bit twisted and elaborative discussion on various technical spheres.

I applied via Naukri.com and was interviewed before Sep 2021. There were 4 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 

(2 Questions)

  • Q1. Technical round totally based on client. Client is taking interview. Technical lead has taken interview all questions related to your skill sets.
  • Q2. Front-end ReactJs 1. Hooks (useEffect, useState) 2. how to increase performance of your app. 3. virtual-Dom 4. functional components Javascripts & Node: 1.SetTimeout, setImmediate given script which one w...
Round 3 - Technical 

(1 Question)

  • Q1. Technical manager round 1. Introduction & project explain 2. Performance improvement technique front-end & backend 3. Logical coding question need to solve
Round 4 - HR 

(2 Questions)

  • Q1. Salary discussion, location negotiations. They will say 3 years client will fixed but reality is different.
  • Q2. Salary negotiation very quick decision.

Interview Preparation Tips

Interview preparation tips for other job seekers - Its contractual job when client want to exit the contract they can. Every 6 month your contract will renew. No Job security because you are vender may be in case client can hire you on their payroll.
If your salary is less then your job is safe else not.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Windows technology
Round 2 - One-on-one 

(1 Question)

  • Q1. Scenario based questions
Round 3 - HR 

(1 Question)

  • Q1. Salary discusssion

I applied via Job Fair and was interviewed in Jun 2022. 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 - Aptitude Test 

Cloud , Big Data , Jenkins , CICD Pipeline

Round 3 - One-on-one 

(4 Questions)

  • Q1. Computer Basic , Cloud computing , ETL , Java
  • Q2. What at is finally block
  • Ans. 

    Finally block is used in try-catch-finally statement to execute code after try and catch blocks.

    • Finally block is optional and can be used with try-catch or try-catch-catch statements.

    • It is executed regardless of whether an exception is thrown or not.

    • It is often used to release resources like file handles, database connections, etc.

    • Example: try { //code } catch (Exception e) { //code } finally { //code }

  • Answered by AI
  • Q3. How to get second largest salary from a table
  • Ans. 

    To get the second largest salary from a table, you can use the SQL query with the ORDER BY and LIMIT clauses.

    • Write a SQL query to select the distinct salaries from the table.

    • Order the salaries in descending order using the ORDER BY clause.

    • Use the LIMIT clause to retrieve the second row from the result set.

  • Answered by AI
  • Q4. What are joins , type of joins and example
  • Ans. 

    Joins are used to combine data from two or more tables based on a related column.

    • Types of joins include inner join, left join, right join, and full outer join.

    • Inner join returns only the matching rows from both tables.

    • Left join returns all rows from the left table and matching rows from the right table.

    • Right join returns all rows from the right table and matching rows from the left table.

    • Full outer join returns all row...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare from very basic cloud computing topics. Be confident about previously worked projects.

Skills evaluated in this interview

Interview experience
4
Good
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 tips
Round 2 - Technical 

(1 Question)

  • Q1. Tell me something about integration patterns? With examples.
  • Ans. 

    Integration patterns are design patterns used to integrate different systems and applications.

    • Point-to-Point: Direct communication between two systems.

    • Publish-Subscribe: One-to-many communication where a message is broadcast to multiple recipients.

    • Message Broker: Middleware that facilitates communication between different systems.

    • Shared Database: Systems share a common database to exchange information.

    • File Transfer: Da...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Preferred working model
  • Ans. 

    I prefer a collaborative working model where team members communicate openly and work together towards common goals.

    • Open communication among team members

    • Collaborative decision-making

    • Regular team meetings to discuss progress and challenges

    • Flexibility to adapt to changing project requirements

  • Answered by AI

I appeared for an interview in Nov 2022.

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

Basic questions on generic IT terms

Round 3 - Technical 

(2 Questions)

  • Q1. Questions based on skillset mentioned in resume
  • Q2. Questions based on basic computer science knowledge
Round 4 - Technical 

(2 Questions)

  • Q1. Questions based on skilleset mentioned in resume
  • Q2. Questions based on Mulesoft for me
Round 5 - Technical 

(1 Question)

  • Q1. One more level up on technical questions
Round 6 - One-on-one 

(1 Question)

  • Q1. Managerial and technical round

Interview Preparation Tips

Interview preparation tips for other job seekers - My only advice to job seekers who are willing to join Apisero with passion, please don't be dependent on Apisero. No clear idea about the selection process on Apisero, even if you perform well in all the technical rounds, still they will filter out your profile in the Final round, they will not be ready to listen to your technical qualifications and your justifications to give you the opportunity, they will simply close the call as they have so many candidates. They will provide opportunity to candidates who are already holding offers ( who may or may not join Apisero) and who has project experience but they will not consider people like us who are willing to join Apisero only for great learning curve and work culture. Hereby whatever I have shared is my own personal experience. If Apisero is providing opportunities for passionate candidates please avoid comparing their profiles wirh experience candidates, we are waiting with a ray of hope from you. Thank you Apisero for the corporate lessons. My advice is to attend Apisero interview only if you have experience else please avoid as you will be filtered among experienced candidates in the Final round despite your technical expertise and performance in the previous rounds.

Basware Interview FAQs

How many rounds are there in Basware Technical Consultant interview?
Basware interview process usually has 2 rounds. The most common rounds in the Basware interview process are Resume Shortlist and Technical.
How to prepare for Basware Technical Consultant 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 Basware. The most common topics and skills that interviewers at Basware expect are XML, Consulting, ERP, Product Management and SQL.
What are the top questions asked in Basware Technical Consultant interview?

Some of the top questions asked at the Basware Technical Consultant interview -

  1. Find the manager name with respective employee name from a tab...read more
  2. EDI Mapping flow, EDI transaction sets specification such as PO, Invoice ...read more
  3. Communication protocols such as SFTP, ...read more

Tell us how to improve this page.

Basware Technical Consultant Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

GEP Worldwide Interview Questions
3.7
 • 131 Interviews
Zycus Infotech Interview Questions
2.9
 • 67 Interviews
Apisero Interview Questions
4.3
 • 64 Interviews
TestingXperts Interview Questions
3.9
 • 41 Interviews
Credera Interview Questions
3.8
 • 40 Interviews
Stefanini Interview Questions
2.9
 • 34 Interviews
GlobalStep Interview Questions
2.7
 • 28 Interviews
View all
Basware Technical Consultant Salary
based on 56 salaries
₹4.3 L/yr - ₹11 L/yr
34% less than the average Technical Consultant Salary in India
View more details

Basware Technical Consultant Reviews and Ratings

based on 5 reviews

4.0/5

Rating in categories

3.7

Skill development

4.6

Work-life balance

3.0

Salary

3.2

Job security

4.3

Company culture

2.9

Promotions

3.6

Work satisfaction

Explore 5 Reviews and Ratings
Technical Consultant
56 salaries
unlock blur

₹4.3 L/yr - ₹11 L/yr

Cloud Operations Engineer
29 salaries
unlock blur

₹4.1 L/yr - ₹9.5 L/yr

Associate Consultant
24 salaries
unlock blur

₹3.2 L/yr - ₹6 L/yr

Senior Software Engineer
18 salaries
unlock blur

₹7 L/yr - ₹15 L/yr

Senior Technical Consultant
17 salaries
unlock blur

₹7 L/yr - ₹14.5 L/yr

Explore more salaries
Compare Basware with

Apisero

4.3
Compare

Actalent Services

3.5
Compare

Cyber Infrastructure

3.5
Compare

TestingXperts

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