Upload Button Icon Add office photos

Filter interviews by

Weizmann Forex Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. They asked me one question.why select in this company.

I applied via Monster and was interviewed in Dec 2017. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. They are asked question tell about yourself in general questions.

Interview Preparation Tips

General Tips: I attend in interview last candidate so just 5 minits faced HR interview.
Skills: Analytical Skills
Duration: 1-4 weeks

Analyst Interview Questions & Answers

Wells Fargo user image SNEHA KUMARI SHARMA

posted on 1 Jun 2017

I was interviewed in Aug 2016.

Interview Questionnaire 

11 Questions

  • Q1. Basics of programming language
  • Q2. Basics of programming language
  • Q3. Microprocessor basics
  • Q4. Logic of traffic light functionality
  • Ans. 

    Traffic lights use a set sequence of colors to control the flow of vehicles and pedestrians.

    • Traffic lights use red, yellow, and green lights to indicate when vehicles and pedestrians should stop, slow down, or go.

    • The sequence of colors is typically red, yellow, green, and then back to red.

    • Different traffic lights may have different timings for each color depending on the traffic flow and pedestrian activity.

    • Traffic lig...

  • Answered by AI
  • Q5. Logic of elevator operation
  • Ans. 

    The logic of elevator operation involves a system of sensors, controls, and algorithms to efficiently transport passengers between floors.

    • Elevators use sensors to detect the presence of passengers and determine their desired floor.

    • Controls process this information and calculate the most efficient route for the elevator to take.

    • Algorithms prioritize elevator assignments based on factors like proximity, floor traffic, an...

  • Answered by AI
  • Q6. Coding on paper.
  • Q7. How was the technical I review experience
  • Q8. How was the technical I review experience
  • Q9. Why wells Fargo?
  • Ans. 

    Wells Fargo is a reputable and established financial institution with a strong track record in the industry.

    • Wells Fargo has a long history dating back to 1852, making it one of the oldest and most established banks in the United States.

    • The company has a strong reputation for providing a wide range of financial services, including banking, investments, and insurance.

    • Wells Fargo has a large network of branches and ATMs, ...

  • Answered by AI
  • Q10. Comments on the moto of the company
  • Q11. General questions related to resume included details.

Interview Preparation Tips

Round: Test
Experience: Computer based Test
Enrollment round
Followed with other test rounds with one minute timer for each question.
Tips: Be quick,still careful.
Time management is the key to score.

Total Questions: 75

Round: Technical Interview
Experience: Computer based Test
Enrollment round
Followed with other test rounds with one minute timer for each question.
Tips: Be quick,still careful.
Time management is the key to score.


Round: Technical Interview
Experience: A general introduction of oneself.Hobbies and inclination towards IT sector job and why wells Fargo followed by different subject knowledge and basics .

Tips: Be confident.
Revise coding basics.
Know your microprocessor basics.
Be frank to say if u are unable to recall an answer at that moment.


College Name: Sikkim Manipal University

I applied via Campus Placement

Interview Questionnaire 

2 Questions

  • Q1. Why this specific profile? (analyst)
  • Ans. 

    I am passionate about analyzing data and deriving insights to drive strategic decision-making.

    • I have a strong background in data analysis and statistics.

    • I enjoy problem-solving and finding patterns in data.

    • I believe that my analytical skills can add value to the organization by providing actionable insights.

    • I have experience using various analytical tools such as Excel, SQL, and Tableau.

    • I am detail-oriented and thrive

  • Answered by AI
  • Q2. Why finance?
  • Ans. 

    Passion for analyzing data and making informed financial decisions.

    • I have always been fascinated by numbers and analyzing trends.

    • I enjoy the challenge of making sense of complex financial data.

    • I believe finance plays a crucial role in driving business success and growth.

    • I am motivated by the opportunity to help companies make informed financial decisions.

    • I find satisfaction in using data to identify opportunities for i

  • Answered by AI

Interview Preparation Tips

Round: Case Study Interview
Experience: Q: Give me five steps to estimate the number of traffic lights in Bombay.
Me: I will divide the city into equidistant lines, both vertical and horizontal; sort of a mesh. Then I would take vertical and horizontal rectangles i.e. the rectangles which fall on length and breadth of the city. Starting with the horizontal ones I would try to estimate the number of roads going from east to west in each rectangle(depending on the type of area: residential, commercial or a highway) Similarly I would try to estimate the number of roads going from north to south in each vertical rectangle. Now I have the average number of roads per unit length and per unit breadth. Now, I can calculate the average number of roads intersecting per rectangle. Now if I have the data, I can also use the traffic density data to further improve my estimate, i.e. whether the traffic light is required in that rectangle or not.(depending upon the traffic density)
Q: Lets say that golden quadrilateral gets completed tomorrow. What would be its impact on the sales of Ashok Leyland?
Me: Sir, they would increase, as more and more traffic will shift from railways to roadways as the average time taken by road will decrease.
Q: If I say that the sales will decreases by road, the truk will make the same number of trips in less amount of time, thereby rendering overcapacity in the road transport market therefore the sales will decrease.
Me: (I actually didn't let him complete, I interrupted him in between and said that I got the logic)
Tips: Don't try to overstate the facts.

Skills:
Duration: 3
College Name: IIM Lucknow

Interview Questionnaire 

11 Questions

  • Q1. What is the difference between multi tasking, multi processing and multi programming operating systems with examples ?
  • Ans. 

    Multi tasking, multi processing, and multi programming are different approaches to managing tasks in an operating system.

    • Multi tasking allows multiple tasks to run concurrently on a single processor.

    • Multi processing involves multiple processors running tasks simultaneously.

    • Multi programming allows multiple programs to be loaded into memory and executed concurrently.

    • Examples of multi tasking operating systems include Wi...

  • Answered by AI
  • Q2. Tell me about memory allocation (stack vs. heap)?
  • Ans. 

    Memory allocation refers to the process of assigning memory to programs during runtime.

    • Stack allocation is done automatically and is limited in size.

    • Heap allocation is done manually and is larger in size.

    • Stack memory is used for local variables and function calls.

    • Heap memory is used for dynamic memory allocation.

    • Memory leaks can occur if heap memory is not properly managed.

  • Answered by AI
  • Q3. You have two threads one printing even numbers in order and other odd numbers. Design an algorithm so that it prints numbers in natural order?
  • Ans. 

    Use a shared variable and synchronization mechanisms to ensure natural order printing of numbers.

    • Create two threads, one for printing even numbers and the other for printing odd numbers.

    • Use a shared variable to keep track of the current number to be printed.

    • Implement synchronization mechanisms like locks or semaphores to ensure only one thread can access the shared variable at a time.

    • Each thread should check if it is i...

  • Answered by AI
  • Q4. Print a matrix in spiral order?
  • Ans. 

    Printing a matrix in spiral order

    • Start from the first element and print it

    • Move in a spiral order towards the center of the matrix

    • Repeat until all elements are printed

  • Answered by AI
  • Q5. Thread class and Runnable Interface?
  • Ans. 

    Thread class and Runnable Interface are used for multithreading in Java.

    • Thread class is a predefined class in Java that provides methods to create and control threads.

    • Runnable interface is used to define a task that can be executed by a thread.

    • Thread class implements Runnable interface.

    • Thread class provides more control over threads than Runnable interface.

    • Example: Thread t = new Thread(new MyRunnable()); t.start();

    • Exa...

  • Answered by AI
  • Q6. What’s the difference between a Linked List and an ArrayList and give me an example of when to use which?
  • Ans. 

    Linked List is a dynamic data structure while ArrayList is a static data structure.

    • Linked List is best for frequent insertion and deletion operations.

    • ArrayList is best for frequent access operations.

    • Linked List uses more memory than ArrayList.

    • ArrayList is faster than Linked List for accessing elements.

    • Use Linked List when you need to frequently add or remove elements from the list.

    • Use ArrayList when you need to frequen

  • Answered by AI
  • Q7. Questions of OS concepts?
  • Q8. A role play scenario was given. With a clear instruction on I don’t need to know the basis and the hypothetical assumption was presented. I was told that I was expected to respond to the given scenario, in...
  • Q9. Why are you interested in a career in investment banking?
  • Ans. 

    I am not interested in a career in investment banking.

    • I am more interested in a career in software development

    • I enjoy problem-solving and creating innovative solutions through coding

    • Investment banking does not align with my passion and skill set

  • Answered by AI
  • Q10. Why have you chosen to apply to J.P. Morgan?
  • Ans. 

    I have chosen to apply to J.P. Morgan because of their reputation, global presence, and opportunities for growth.

    • J.P. Morgan has a strong reputation in the financial industry.

    • They have a global presence with offices in multiple countries.

    • The company offers various opportunities for career growth and development.

    • J.P. Morgan is known for its innovative technology solutions in the financial sector.

    • I am impressed by their ...

  • Answered by AI
  • Q11. Have you ever made a mistake? Tell us about it?
  • Ans. 

    Yes, I have made a mistake in my previous project.

    • I underestimated the complexity of a task and ended up missing the deadline.

    • I failed to properly test a feature, resulting in a bug that affected user experience.

    • I accidentally deleted an important file without having a backup.

    • I misunderstood a requirement and implemented a feature incorrectly.

  • Answered by AI

Interview Preparation Tips

Round: Test
Total Questions: 1

General Tips: Interview Process: Aptitude test, followed by 3 rounds of interview. Interview process was very good. Just be positive to clear the interview.
Check this link before appearing for interview with JP Morgan. It will help  -----
Skills: Algorithm, Data structure, Stack
College Name: Na

Skills evaluated in this interview

I applied via Referral and was interviewed before Feb 2021. There was 1 interview round.

Round 1 - HR 

(7 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Why should we hire you?
  • Q5. Why are you looking for a change?
  • Q6. What are your strengths and weaknesses?
  • Q7. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Mothilal Oswal...is one of Best Oraganistion...

I applied via Recruitment Consultant and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. NOTHING SPECIAL

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepare for all types of HL knowledge and login process and market analysis

I applied via LinkedIn and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure always you tell the right thing on which you are working and you should have clear understanding on your technical skill whatever you know.

I applied via Walk-in and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic accounts and finance questions
  • Q2. If you dont know answer better be straight forward about it

Interview Preparation Tips

Interview preparation tips for other job seekers - lot of round, pretty tough

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Coding questions with system design questions and puzzles were asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your resume up to date. Do not add unnecessary stuff to your resume else they will easily catch you. Be as real as yo can. You should know some languages of your interest and should have relevant work experience in that.

Tell us how to improve this page.

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.9
 • 565 Interviews
Bajaj Finserv Interview Questions
4.0
 • 521 Interviews
Thomas Cook Interview Questions
3.7
 • 44 Interviews
Paul Merchants Interview Questions
4.0
 • 7 Interviews
Cox & Kings Interview Questions
3.7
 • 6 Interviews
Centrumdirect Interview Questions
3.9
 • 3 Interviews
View all

Weizmann Forex Reviews and Ratings

based on 124 reviews

4.0/5

Rating in categories

4.0

Skill development

3.9

Work-life balance

3.8

Salary

3.9

Job security

3.9

Company culture

3.6

Promotions

4.0

Work satisfaction

Explore 124 Reviews and Ratings
Senior Executive
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Executive
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Executive Accountant
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Marketing Executive
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Weizmann Forex with

Thomas Cook

3.7
Compare

Centrumdirect

3.9
Compare

Paul Merchants

4.0
Compare

Pheroze Framroze

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