Upload Button Icon Add office photos

BA Continuum

Compare button icon Compare button icon Compare

Filter interviews by

BA Continuum Senior Technical Associate Interview Questions and Answers

Updated 5 Nov 2024

9 Interview questions

A Senior Technical Associate was asked
Q. What are the steps in the waterfall model?
Ans. 

Waterfall model is a linear sequential approach to software development.

  • Requirements gathering and analysis

  • Design

  • Implementation

  • Testing

  • Deployment

  • Maintenance

A Senior Technical Associate was asked
Q. Explain the different types of joins.
Ans. 

Different types of joins are used to combine data from two or more tables based on a related column.

  • 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 rows from both tables, with NULL values in non-matching rows

Senior Technical Associate Interview Questions Asked at Other Companies

asked in Genpact
Q1. What about DNS, query, zones, records, stub zone, PTR, Point reco ... read more
asked in Genpact
Q2. Active Directory, How to migrate AD from legacy server to new ser ... read more
asked in Genpact
Q3. How to upgrade windows from user end, what about antivirus, encry ... read more
Q4. How can you measure exactly 4 liters of water using only a 3-lite ... read more
Q5. Write a program to convert a number given in words to its numeral ... read more
A Senior Technical Associate was asked
Q. Explain agile methodology.
Ans. 

Agile methodology is an iterative approach to software development that emphasizes flexibility and customer satisfaction.

  • Agile values individuals and interactions over processes and tools

  • It emphasizes working software over comprehensive documentation

  • Agile teams work in short iterations called sprints

  • Customer feedback is incorporated throughout the development process

  • Examples of agile methodologies include Scrum, K...

A Senior Technical Associate was asked
Q. Write a program to convert a number given in words to its numeral representation. For example, if the input is 'three million four hundred fifty six thousand three hundred thirty five', the output should be...
Ans. 

Convert a number in words to its numeral form.

  • Split the input string into words

  • Create a dictionary mapping words to their numerical values

  • Iterate through the words and add up the numerical values

  • Return the final sum as a string

A Senior Technical Associate was asked
Q. Write a program to print all numbers from 1 to n that are divisible by both 2 and 7.
Ans. 

Print all numbers from 1 to n that are divisible by 2 and 7.

  • Use a loop to iterate from 1 to n

  • Check if the current number is divisible by 2 and 7 using the modulo operator

  • If the number is divisible by both 2 and 7, print it

A Senior Technical Associate was asked
Q. Explain different data types in Python.
Ans. 

Python supports various data types including numeric, string, boolean, list, tuple, set, and dictionary.

  • Numeric data types include integers, floats, and complex numbers.

  • String data type is used to represent text.

  • Boolean data type has two values: True and False.

  • List is a collection of ordered and changeable elements.

  • Tuple is a collection of ordered and unchangeable elements.

  • Set is a collection of unordered and unin...

A Senior Technical Associate was asked
Q. Explain sequential data types.
Ans. 

Sequential data types are data structures where the elements are arranged in a specific order.

  • Elements can be accessed using their position or index

  • Examples include arrays, lists, and tuples

  • They are useful for storing and manipulating data that has a specific order

Are these interview questions helpful?
A Senior Technical Associate was asked
Q. Explain the approach used in the previous problem.
Ans. 

I need more context on the previous problem to provide an answer.

  • Please provide more information on the previous problem

  • Without context, I cannot provide an answer

A Senior Technical Associate was asked
Q. What are your plans for higher education?
Ans. 

I am currently not planning for higher studies.

  • I believe that my current skills and experience are sufficient for my career goals.

  • I am focused on gaining more practical experience in my field.

  • I may consider pursuing higher studies in the future if it aligns with my career goals.

  • However, at this time, I am not actively pursuing any further education.

BA Continuum Senior Technical Associate Interview Experiences

5 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Why should we hire you
  • Ans. 

    I have the technical skills, experience, and passion to excel in this role.

    • I have a strong background in technical skills relevant to the position

    • I have proven experience in similar roles, showcasing my ability to succeed

    • I am passionate about the work and eager to contribute to the team

  • Answered by AI

I applied via Campus Placement and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Virtual Interview 

(3 Questions)

  • Q1. Print all the numbers from 1 to n which are divisible 2 and 7
  • Ans. 

    Print all numbers from 1 to n that are divisible by 2 and 7.

    • Use a loop to iterate from 1 to n

    • Check if the current number is divisible by 2 and 7 using the modulo operator

    • If the number is divisible by both 2 and 7, print it

  • Answered by AI
  • Q2. Convert the number given in the word to a numeral ex: if three million four hundred fifty six thousand three hundred thirty five is given as input we need to print 3456335
  • Ans. 

    Convert a number in words to its numeral form.

    • Split the input string into words

    • Create a dictionary mapping words to their numerical values

    • Iterate through the words and add up the numerical values

    • Return the final sum as a string

  • Answered by AI
  • Q3. Explain the approach used in the previous problem
  • Ans. 

    I need more context on the previous problem to provide an answer.

    • Please provide more information on the previous problem

    • Without context, I cannot provide an answer

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. Explain different data types in python.
  • Ans. 

    Python supports various data types including numeric, string, boolean, list, tuple, set, and dictionary.

    • Numeric data types include integers, floats, and complex numbers.

    • String data type is used to represent text.

    • Boolean data type has two values: True and False.

    • List is a collection of ordered and changeable elements.

    • Tuple is a collection of ordered and unchangeable elements.

    • Set is a collection of unordered and unindexed...

  • Answered by AI
  • Q2. Explain sequential data types
  • Ans. 

    Sequential data types are data structures where the elements are arranged in a specific order.

    • Elements can be accessed using their position or index

    • Examples include arrays, lists, and tuples

    • They are useful for storing and manipulating data that has a specific order

  • Answered by AI
  • Q3. Explain about agile methodology
  • Ans. 

    Agile methodology is an iterative approach to software development that emphasizes flexibility and customer satisfaction.

    • Agile values individuals and interactions over processes and tools

    • It emphasizes working software over comprehensive documentation

    • Agile teams work in short iterations called sprints

    • Customer feedback is incorporated throughout the development process

    • Examples of agile methodologies include Scrum, Kanban...

  • Answered by AI
  • Q4. Explain different types of joins
  • Ans. 

    Different types of joins are used to combine data from two or more tables based on a related column.

    • 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 rows from both tables, with NULL values in non-matching rows

  • Answered by AI
Round 3 - HR 

(5 Questions)

  • Q1. What is your favourite pass time
  • Q2. What are the steps in waterfall model
  • Ans. 

    Waterfall model is a linear sequential approach to software development.

    • Requirements gathering and analysis

    • Design

    • Implementation

    • Testing

    • Deployment

    • Maintenance

  • Answered by AI
  • Q3. How many interviews have you given
  • Q4. Are you okay with any location mentioned in job description.
  • Q5. Plans of higher studies
  • Ans. 

    I am currently not planning for higher studies.

    • I believe that my current skills and experience are sufficient for my career goals.

    • I am focused on gaining more practical experience in my field.

    • I may consider pursuing higher studies in the future if it aligns with my career goals.

    • However, at this time, I am not actively pursuing any further education.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be yourself during the interview
Dont lose confidence
Be strong with your basics

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Regular aptitude test for 45 mins

Round 2 - Coding Test 

Simple questions on strings in c++

Interview Preparation Tips

Topics to prepare for BA Continuum Senior Technical Associate interview:
  • Python
  • C++
Interview preparation tips for other job seekers - Very easy to make it into Bank of America. Interview questions are easy and pretty basic ones.

I applied via Campus Placement and was interviewed in Dec 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. What projects did you do?
  • Q2. Give more info on projects I did

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you have good projects for a base.

I applied via Recruitment Consultant and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. There were multiple questions they asked me about my domain and interview had been taken in 3 parts.
  • Q2. All questions were about my project domain.

Interview Preparation Tips

Interview preparation tips for other job seekers - I have given straight and clear answers to their questions. Also I have put my personal opinion on my job location selection. Please be clear and tell them only relevant information about the questions.

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about BA Continuum?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Recruitment Consulltant and was interviewed in May 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Related profile, regarding LOS and LMS lending application questions

Interview Preparation Tips

Interview preparation tips for other job seekers - You should know about your job profile what exactly you are doing currently in your Jo
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Sep 2022. 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 - One-on-one 

(3 Questions)

  • Q1. Questions on credit risk which involve around pd lgd and ead
  • Q2. Sas, ead, lgd, credit risk
  • Q3. Credit risk and its implications
  • Ans. 

    Credit risk refers to the potential loss that a lender may incur due to a borrower's failure to repay a loan or meet contractual obligations.

    • Credit risk is the risk of financial loss resulting from a borrower's failure to repay a loan or meet other financial obligations.

    • It is important for financial institutions to assess and manage credit risk to protect their assets and maintain financial stability.

    • Factors that contr...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - give as much as details you want
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(3 Questions)

  • Q1. About past experience
  • Q2. Grilling on past experience
  • Q3. Personal Loans deep dive on product

Interview Preparation Tips

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

I appeared for an interview in Dec 2024.

Round 1 - HR 

(1 Question)

  • Q1. Past work history
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 - HR 

(1 Question)

  • Q1. Normal question
Round 3 - One-on-one 

(3 Questions)

  • Q1. About past company
  • Q2. Not decided anything could be as per resume
  • Q3. Why you want to join this company
  • Ans. 

    I want to join this company because of its strong reputation, innovative culture, and opportunities for growth.

    • Strong reputation: The company has a proven track record of success and is highly regarded in the industry.

    • Innovative culture: The company encourages creativity and embraces new ideas, which aligns with my own values.

    • Opportunities for growth: The company offers various career development programs and promotes ...

  • Answered by AI
Round 4 - One-on-one 

(1 Question)

  • Q1. No 3rd round there

Interview Preparation Tips

Interview preparation tips for other job seekers - Ok

BA Continuum Interview FAQs

How many rounds are there in BA Continuum Senior Technical Associate interview?
BA Continuum interview process usually has 2 rounds. The most common rounds in the BA Continuum interview process are Technical, Resume Shortlist and HR.
What are the top questions asked in BA Continuum Senior Technical Associate interview?

Some of the top questions asked at the BA Continuum Senior Technical Associate interview -

  1. Convert the number given in the word to a numeral ex: if three million four hun...read more
  2. Print all the numbers from 1 to n which are divisible 2 an...read more
  3. What are the steps in waterfall mo...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 2 interview experiences

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Hero FinCorp Interview Questions
4.0
 • 97 Interviews
Kinara Capital Interview Questions
4.3
 • 75 Interviews
mPokket Interview Questions
3.8
 • 75 Interviews
View all
BA Continuum Senior Technical Associate Salary
based on 109 salaries
₹3.5 L/yr - ₹12.1 L/yr
9% less than the average Senior Technical Associate Salary in India
View more details

BA Continuum Senior Technical Associate Reviews and Ratings

based on 19 reviews

4.2/5

Rating in categories

3.4

Skill development

4.3

Work-life balance

3.5

Salary

4.3

Job security

4.0

Company culture

3.2

Promotions

3.4

Work satisfaction

Explore 19 Reviews and Ratings
Team Developer
770 salaries
unlock blur

₹3 L/yr - ₹10.8 L/yr

Team Lead
755 salaries
unlock blur

₹7.8 L/yr - ₹13.6 L/yr

Assistant Manager
705 salaries
unlock blur

₹7.2 L/yr - ₹24.8 L/yr

Senior Analyst
448 salaries
unlock blur

₹11 L/yr - ₹31 L/yr

Software Engineer
442 salaries
unlock blur

₹11.2 L/yr - ₹23 L/yr

Explore more salaries
Compare BA Continuum with

Bank of America

4.2
Compare

Home Credit Finance

4.1
Compare

Sammaan Capital Limited

3.7
Compare

Hero FinCorp

4.0
Compare
write
Share an Interview