Skip to contentSkip to footer
  • Community
  • Jobs
  • Companies
  • Salaries
  • For Employers
      Notifications

      Loading...

      Elevate your career

      Discover your earning potential, land dream jobs, and share work-life insights anonymously.

      employer cover photo
      employer logo
      employer logo

      Bluevine

      Engaged Employer

      About
      Reviews
      Pay & benefits
      Jobs
      Interviews
      Interviews
      Related searches: Bluevine reviews | Bluevine jobs | Bluevine salaries | Bluevine benefits
      Bluevine interviewsBluevine Vue Js Developer interviewsBluevine interview


      Glassdoor

      • About / Press
      • Awards
      • Blog
      • Research
      • Contact Us
      • Guides

      Employers

      • Free Employer Account
      • Employer Center
      • Employers Blog

      Information

      • Help
      • Guidelines
      • Terms of Use
      • Privacy & Ad Choices
      • Do Not Sell Or Share My Information
      • Cookie Consent Tool
      • Security

      Work With Us

      • Advertisers
      • Careers
      Download the App

      • Browse by:
      • Companies
      • Jobs
      • Locations
      • Communities
      • Recent Posts

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls," and logo are proprietary trademarks of Glassdoor LLC.

      Company Bowl sample

      Want the inside scoop on your own company?

      Check out your Company Bowl for anonymous work chats.

      Bowls

      Get actionable career advice tailored to you by joining more bowls.

      Followed companies

      Stay ahead in opportunities and insider tips by following your dream companies.

      Job searches

      Get personalized job recommendations and updates by starting your searches.

      Vue Js Developer Interview

      Dec 18, 2024
      Anonymous Interview Candidate
      Bengaluru
      No offer
      Positive experience
      Average interview

      Application

      I interviewed at Bluevine (Bengaluru)

      Interview

      I got a call from Naukri There were a total of four rounds Tech round 1 Tech round 2 Managerial round 1 Architect round 1 It went well, All the interviewers were nice and helpful.

      Interview questions [1]

      Question 1

      Question 1. Write a function that sorts an arbitrary, but unique, list of numbers in a zig-zag function such that “a < b > c < d” etc.. Assumptions: 1) The list can be of any length 2) The list is only integers 3) Each element is unique Examples: [3, 6, 5, 9, 4] -> [4, 9, 3, 6, 5] [1, 0, 3, 2, 4] -> [3, 4, 1, 2, 0] [ ↓, ↑, ↓, ↑, ↓] input [0,1,2,3,4] ---> output [0,2,1,3,4] , [0,4,1,3,2] input [3, 4, 5, 6, 9] ---> output [3,5,4,9,6], [3,9,4,6,5] Question 2. What is the output for the below code const arr = [10, 12, 15, 21] // 4 for (var i = 0; i < arr.length; i++) { setTimeout(() => console.log(`Index: ${i}, element: ${arr[i]}`), 1000) } Question 3. // What is the output for the following use: import logging var counter = function () { var _counter = 3 return { add: (num) => _counter += num, retrieve: () => `the value of counter is currently: ${ _counter}` } } var count=counter(); count.add(9); count.add(5); console.log(count.retrieve()) Question 4. // What is the output for the following use: var A = function () { var B = []; return function(C) { for (D in B) { if (B[D] === C) { return true; } } B.push(C); return false; } }(); console.log(A(1)); console.log(A(2)); console.log(A(1));
      Answer question