Upload Button Icon Add office photos
Engaged Employer

i

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

BNY Verified Tick

Compare button icon Compare button icon Compare
3.9

based on 3.9k Reviews

Filter interviews by

BNY Senior Coldfusion Developer Interview Questions and Answers

Updated 10 Feb 2024

BNY Senior Coldfusion Developer Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Case Study 

Problem was given to understand how candidate is using Application CFC's events.

Round 2 - Technical 

(2 Questions)

  • Q1. Expect question on DSA using coldfusion. Mostly easy problem. They will also ask question on query of query, caching, variable scops, oop using CF.
  • Q2. Sorting data using coldfusion built in function
  • Ans. 

    Coldfusion provides built-in functions for sorting data.

    • Use the ArraySort() function to sort an array in ascending order.

    • Use the ArraySort() function with the 'numeric' attribute to sort numeric values.

    • Use the ArraySort() function with the 'textnocase' attribute to sort case-insensitive text values.

    • Use the ArraySort() function with the 'desc' attribute to sort in descending order.

    • Use the StructSort() function to sort a

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Why are you leaving your current organization?

Skills evaluated in this interview

Interview questions from similar companies

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

There were three coding questions.

Round 2 - Technical 

(5 Questions)

  • Q1. Could you provide a thorough explanation of the project?
  • Q2. OOps Concepts and question from the technical subjects
  • Q3. Why Spring Boot
  • Q4. JWT Authentication
  • Q5. Docker and Kubernetes
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. They grind u in javascript,typescript
  • Q2. Html css, angular
  • Q3. Deep preparation needed

Interview Preparation Tips

Interview preparation tips for other job seekers - Not an easy interview
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Project Architecture
Round 2 - Technical 

(1 Question)

  • Q1. Informatica tech questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Question Related to the DP and the Graph

Round 2 - Technical 

(2 Questions)

  • Q1. Kth Max Element in a Array
  • Ans. 

    Find the Kth maximum element in an array of strings.

    • Sort the array in descending order.

    • Return the element at index K-1.

  • Answered by AI
  • Q2. Coin Change and optimization through DP
  • Ans. 

    Coin change problem can be solved using dynamic programming to find the minimum number of coins needed to make a certain amount of change.

    • Use dynamic programming to build up solutions for smaller subproblems

    • Start by initializing an array to store the minimum number of coins needed for each amount from 0 to the target amount

    • Iterate through each coin denomination and update the array with the minimum number of coins need

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Project include in your Resume
  • Q2. HR common question

Skills evaluated in this interview

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

MCQ test consisting of 70 mcqs in 75 minutes from aptitude english and cs fundamentals. If cleared next paper 2 coding qs medium level

Round 2 - Technical 

(2 Questions)

  • Q1. Two sum leetcode problem
  • Q2. What problems you faced in your project
  • Ans. 

    I faced challenges with integrating third-party APIs and debugging complex logic.

    • Difficulty in understanding and implementing third-party APIs

    • Issues with data synchronization between different systems

    • Troubleshooting complex logic errors

    • Managing dependencies and version conflicts

    • Time constraints affecting problem-solving

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. OOP basic about the concept
  • Q2. Ms Sql based sql queries
Round 2 - Technical 

(2 Questions)

  • Q1. How exception handing in api
  • Ans. 

    Exception handling in API involves catching and handling errors that occur during API execution.

    • Use try-catch blocks to catch exceptions and handle them appropriately

    • Throw custom exceptions to provide meaningful error messages to API consumers

    • Use status codes to indicate the outcome of API requests (e.g. 200 for success, 400 for client errors, 500 for server errors)

    • Log exceptions to track errors and troubleshoot issues

    • ...

  • Answered by AI
  • Q2. Code for multiplication table
  • Ans. 

    Code to generate a multiplication table in a programming language

    • Use nested loops to iterate through rows and columns

    • Print the product of row and column for each cell

    • Consider formatting the output for better readability

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

DP graphs strings it was good

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse a linkded list
  • Ans. 

    Reverse a linked list by changing the direction of pointers

    • Start with three pointers: current, previous, and next

    • Iterate through the list, updating pointers to reverse the direction

    • Return the new head of the reversed list

  • Answered by AI
  • Q2. Print fibonacci series
  • Ans. 

    The Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • Start with two variables initialized to 0 and 1

    • Loop through desired number of iterations, adding the previous two numbers to get the next number

    • Print or store each number in the series

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Oct 2023. 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 

(6 Questions)

  • Q1. Java 8 features, functional Interfaces and predefined functional interfaces, Streams
  • Q2. Collections, Aggregations, solid principles in Java
  • Q3. Design patterns, singleton and factory explain in detail
  • Ans. 

    Design patterns are reusable solutions to common problems in software design. Singleton ensures a class has only one instance, while factory creates objects without specifying the exact class.

    • Design patterns are best practices for solving common software design problems.

    • Singleton pattern ensures a class has only one instance and provides a global point of access to it.

    • Factory pattern creates objects without specifying ...

  • Answered by AI
  • Q4. Spring functions, Spring Runners, Spring Exception handling
  • Q5. Springboot annotations except common(any 5)
  • Q6. Write spring boot program to accept json as request. write the logic and explain
  • Ans. 

    Create a Spring Boot program to accept JSON requests and process the data.

    • Create a Spring Boot application with a REST controller to handle incoming JSON requests.

    • Use @PostMapping annotation to map the endpoint for accepting JSON requests.

    • Use @RequestBody annotation to bind the incoming JSON data to a Java object.

    • Process the JSON data as needed in the controller method.

    • Return a response as JSON if required.

  • 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 Campus Placement and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Round of 3 phases : Vocabulary, Business analytics and Coding

Round 2 - Technical 

(1 Question)

  • Q1. Convert number to ruman numeral
  • Ans. 

    Convert a number to Roman numeral representation.

    • Create a mapping of numbers to Roman numerals (e.g. 1 -> 'I', 5 -> 'V', 10 -> 'X', etc.)

    • Iterate through the mapping in descending order and subtract the largest possible numeral from the number until it reaches 0.

    • Build the Roman numeral representation by appending the corresponding numeral for each subtraction.

    • Handle special cases like 4, 9, 40, 90, etc. by including the

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

(1 Question)

  • Q1. Resume questions

BNY Interview FAQs

How many rounds are there in BNY Senior Coldfusion Developer interview?
BNY interview process usually has 3 rounds. The most common rounds in the BNY interview process are Case Study, Technical and HR.
What are the top questions asked in BNY Senior Coldfusion Developer interview?

Some of the top questions asked at the BNY Senior Coldfusion Developer interview -

  1. Sorting data using coldfusion built in funct...read more
  2. Expect question on DSA using coldfusion. Mostly easy problem. They will also as...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Citicorp Interview Questions
3.7
 • 561 Interviews
Wells Fargo Interview Questions
3.9
 • 560 Interviews
Bajaj Finserv Interview Questions
4.0
 • 500 Interviews
HSBC Group Interview Questions
4.0
 • 489 Interviews
Goldman Sachs Interview Questions
3.6
 • 407 Interviews
American Express Interview Questions
4.2
 • 360 Interviews
UBS Interview Questions
4.0
 • 337 Interviews
Morgan Stanley Interview Questions
3.7
 • 304 Interviews
Bank of America Interview Questions
4.3
 • 234 Interviews
View all
Analyst
1.9k salaries
unlock blur

₹2 L/yr - ₹11.5 L/yr

Senior Analyst
1.7k salaries
unlock blur

₹3.7 L/yr - ₹15 L/yr

Senior Associate
1.2k salaries
unlock blur

₹11.1 L/yr - ₹25 L/yr

Intermediate Representative
1.1k salaries
unlock blur

₹2.6 L/yr - ₹7.2 L/yr

Vice President
973 salaries
unlock blur

₹15 L/yr - ₹51.1 L/yr

Explore more salaries
Compare BNY with

State Street Corporation

3.8
Compare

Northern Trust

3.7
Compare

Citibank

Compare

HSBC Group

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