Upload Button Icon Add office photos

Filter interviews by

Banyan Data Services Software Engineering Consultant Interview Questions and Answers for Experienced

Updated 20 Aug 2022

Banyan Data Services Software Engineering Consultant Interview Experiences for Experienced

1 interview found

I applied via LinkedIn and was interviewed in Feb 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 - One-on-one 

(1 Question)

  • Q1. Basic coding questions like prime numbers, reverse string, functions, solve problems in different approach
Round 3 - HR 

(1 Question)

  • Q1. Just a simple discussion of company,i individual work experience, join date, salary etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall a very good company, company location in Bangalore and Hyderabad

Interview questions from similar companies

I applied via LinkedIn and was interviewed in Oct 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. Basics of oracle technical
  • Q2. RICE Compenenets..............

Interview Preparation Tips

Topics to prepare for Wipro Software Engineering Consultant interview:
  • Oracle reports, Interfaces
Interview preparation tips for other job seekers - Have only 2 years of exp..so they asked basic things
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

2 hrs probablity questions

Round 2 - Technical 

(2 Questions)

  • Q1. Find max element from array
  • Q2. Binary seeach algo
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

They give a standard application to develop in mvvm or clean architecture, don't forget to write unit tests

Round 2 - One-on-one 

(5 Questions)

  • Q1. Mostly discuss on the implementation of the project you've done in round one
  • Q2. Flutter is addon
  • Ans. 

    Flutter is a UI toolkit for building natively compiled applications for mobile, web, and desktop from a single codebase.

    • Flutter is an open-source framework developed by Google.

    • It uses the Dart programming language.

    • Flutter allows for hot reload, which enables developers to see changes instantly.

    • It provides a rich set of pre-built widgets for building user interfaces.

    • Flutter can be used to create apps for iOS, Android, w

  • Answered by AI
  • Q3. Explain about compose way of thinking.
  • Ans. 

    Compose way of thinking involves breaking down complex problems into smaller, manageable parts and then combining them to create a solution.

    • Break down a problem into smaller components

    • Solve each component individually

    • Combine the solutions to create a complete solution

    • Example: Using functions to break down a complex task into smaller functions and then combining them to achieve the desired outcome

  • Answered by AI
  • Q4. Difference between presenter and viewmodel
  • Q5. Explain about lifecycle of view
  • Ans. 

    Lifecycle of view refers to the stages a view goes through from creation to destruction in an application.

    • Creation: View is initialized and loaded into memory.

    • Layout: View is positioned and sized on the screen.

    • Display: View is rendered and displayed to the user.

    • Interaction: User interacts with the view through input events.

    • Destruction: View is removed from memory when no longer needed.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience, and practical questions and friendly talk.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Asked basic Web Development related questions

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Java8 Concepts, Rest api concept
Round 2 - Technical 

(1 Question)

  • Q1. Microservices architecture
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Basics of your technical skills
Round 3 - Technical 

(1 Question)

  • Q1. More Projects related questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

Test releted to coding

Round 3 - Technical 

(1 Question)

  • Q1. Technical questions interview

Interview Preparation Tips

Interview preparation tips for other job seekers - No

I applied via Company Website and was interviewed in Apr 2022. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Is java springs good work
  • Q2. Very essay so just Tuff question

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing advice

I applied via Recruitment Consultant and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. What is comp & comp 3 differance ?
  • Ans. 

    COMP and COMP-3 are data types used in COBOL programming language.

    • COMP is a binary data type that stores numeric values as binary integers.

    • COMP-3 is a packed decimal data type that stores numeric values as packed decimal digits.

    • COMP uses less storage space compared to COMP-3.

    • COMP-3 is more suitable for decimal arithmetic operations.

    • COMP-3 values are stored in a packed format, where each digit occupies half a byte.

    • COMP-...

  • Answered by AI
  • Q2. How to check file is empty or not ?
  • Ans. 

    To check if a file is empty or not, we can use the file's size or read the file and check for any content.

    • Get the size of the file using file system APIs and check if it is zero.

    • Read the file and check if it contains any content.

    • Handle exceptions or errors that may occur during file operations.

  • Answered by AI
  • Q3. How many ways data pass jcl to cobol program ?
  • Ans. 

    Data can pass from JCL to COBOL program in multiple ways, such as through input files, system symbols, and program parameters.

    • Input files: Data can be passed to a COBOL program through input files specified in the JCL.

    • System symbols: JCL can define system symbols that can be accessed by the COBOL program to retrieve data.

    • Program parameters: JCL can pass parameters to the COBOL program, which can be used to receive data...

  • Answered by AI
  • Q4. How to data insert or update in table ?
  • Ans. 

    To insert or update data in a table, use SQL statements like INSERT INTO or UPDATE.

    • For inserting data, use the INSERT INTO statement followed by the table name and column names.

    • Specify the values to be inserted using the VALUES keyword.

    • For updating data, use the UPDATE statement followed by the table name.

    • Set the column values to be updated using the SET keyword.

    • Use conditions with the WHERE clause to specify which row

  • Answered by AI
  • Q5. What is array ? how to load data ?
  • Ans. 

    An array is a data structure that stores a collection of elements of the same type.

    • Arrays can be used to store and access multiple values using a single variable.

    • To load data into an array of strings, you can assign values to each element individually or use a loop.

    • Example: String[] names = {"John", "Jane", "Mike"};

    • Example: for(int i = 0; i < names.length; i++) { names[i] = "Value" + i; }

  • Answered by AI
  • Q6. 1 have 1000 records i will get abend in 590 th record how to restart logic using ?
  • Q7. We have 2 files eliminate duplicates and send to duplicate files in to another out put file how to achieve it ?
  • Ans. 

    To eliminate duplicates from 2 files and send them to another output file, we can use a combination of file reading, hashing, and file writing.

    • Read the contents of both files and store them in separate arrays or lists.

    • Create a hash table or dictionary to keep track of the unique elements in the arrays.

    • Iterate through the arrays and add each element to the hash table. If the element already exists, skip it.

    • Write the con...

  • Answered by AI
  • Q8. Soc 7 abend how to find ? resolve it ?
  • Ans. 

    S0C7 abend is a mainframe error caused by invalid data. It can be resolved by identifying the source of the error and correcting it.

    • S0C7 abend is caused by invalid data in a numeric field

    • To resolve it, identify the source of the error and correct it

    • Common causes include incorrect data types, invalid characters, and overflow

    • Debugging tools like IBM Debug Tool can help identify the source of the error

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - its going good

Skills evaluated in this interview

Banyan Data Services Interview FAQs

How many rounds are there in Banyan Data Services Software Engineering Consultant interview for experienced candidates?
Banyan Data Services interview process for experienced candidates usually has 3 rounds. The most common rounds in the Banyan Data Services interview process for experienced candidates are Resume Shortlist, One-on-one Round and HR.

Tell us how to improve this page.

People are getting interviews through

based on 1 Banyan Data Services interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Accenture Interview Questions
3.9
 • 7.9k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 4.9k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all
Software Engineer
9 salaries
unlock blur

₹3.6 L/yr - ₹10.2 L/yr

Associate Software Engineer
5 salaries
unlock blur

₹2.4 L/yr - ₹2.4 L/yr

Software Developer
3 salaries
unlock blur

₹3.6 L/yr - ₹4.5 L/yr

Data Analyst
3 salaries
unlock blur

₹4 L/yr - ₹4 L/yr

Associate DBA
3 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Explore more salaries
Compare Banyan Data Services with

Fractal Analytics

4.0
Compare

Mu Sigma

2.7
Compare

Tiger Analytics

3.6
Compare

LatentView Analytics

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview