Upload Button Icon Add office photos
Engaged Employer

i

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

Basis Vectors Verified Tick

Compare button icon Compare button icon Compare
2.5

based on 16 Reviews

Filter interviews by

Basis Vectors Interview Questions and Answers

Updated 1 Aug 2024

Basis Vectors Interview Experiences

Popular Designations

2 interviews found

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

I applied via Naukri.com and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Related to probability, and simple math.

Round 2 - One-on-one 

(2 Questions)

  • Q1. What is ductility, hardnesa
  • Ans. 

    Ductility is the ability of a material to deform under tensile stress without breaking, while hardness is the resistance of a material to deformation or scratching.

    • Ductility refers to the ability of a material to be stretched into a wire without breaking.

    • Hardness is the resistance of a material to indentation or scratching.

    • Ductile materials include gold, copper, and aluminum.

    • Hard materials include diamond, steel, and c

  • Answered by AI
  • Q2. Stress strain curve

Material Specialist Interview Questions asked at other Companies

Q1. Zipper recipe = Ldpe resin grade (24FS40) from reliance(84%)having MFI - 3 gm/10 mint + (Elite 5401G) from DOW chemical ( polyolefin elastomer) (used to increase tear strength , tensile strength , sealing ,flexibility) (13%) & masterbat... read more
View answer (1)

Intern Interview Questions & Answers

user image Anonymous

posted on 26 May 2024

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

I applied via campus placement at Lovely Professional University (LPU) and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy to medium questions

Round 2 - Coding Test 

Medium level questions asked

Interview Preparation Tips

Interview preparation tips for other job seekers - knowing DSA is better

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Aptitude Test 

Mock test training is highly effective for improving communication skills.

Round 2 - Technical 

(5 Questions)

  • Q1. Learning the best approach to handling Customer Relationship Management (CRM)?
  • Q2. What is the process for making a deposition?
  • Q3. How to handle the customer feedback
  • Q4. How-to handle the customer feelings
  • Q5. Preparation of Script

Interview Preparation Tips

Interview preparation tips for other job seekers - Time management and leadership are essential for achieving sustainability.

MLE Intern Interview Questions & Answers

HyperVerge user image Anonymous

posted on 17 Jan 2025

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

I applied via Campus Placement

Round 1 - Technical 

(4 Questions)

  • Q1. Describe projects?
  • Ans. 

    I have worked on various projects ranging from data analysis to machine learning models.

    • Developed a sentiment analysis model using natural language processing techniques

    • Implemented a recommendation system based on collaborative filtering algorithm

    • Worked on a predictive maintenance project for optimizing equipment performance

  • Answered by AI
  • Q2. Explain architecture of Efficient-nets
  • Ans. 

    EfficientNets are a family of convolutional neural networks that have been designed to achieve state-of-the-art accuracy with fewer parameters and FLOPS.

    • EfficientNets use a compound scaling method to balance network depth, width, and resolution for optimal performance.

    • They are based on a baseline network architecture called EfficientNet-B0, which is then scaled up to create larger models like EfficientNet-B1, Efficient...

  • Answered by AI
  • Q3. Explain transformers architecture
  • Ans. 

    Transformers architecture is a deep learning model that uses self-attention mechanism to process sequential data.

    • Transformers consist of an encoder and a decoder, each composed of multiple layers of self-attention and feed-forward neural networks.

    • Self-attention mechanism allows the model to weigh the importance of different input tokens when making predictions.

    • Transformers have achieved state-of-the-art performance in ...

  • Answered by AI
  • Q4. Longest sub array question in python.
  • Ans. 

    Find the longest subarray of strings in a given array.

    • Iterate through the array and keep track of the current subarray length.

    • Reset the subarray length when encountering a non-string element.

    • Return the length of the longest subarray found.

  • Answered by AI
Round 2 - HR 

(3 Questions)

  • Q1. About family and past life
  • Q2. Past internships and learnings
  • Q3. College life and what they expect.
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(12 Questions)

  • Q1. Rate yourself in js, node js, react, MongoDB (separately)
  • Q2. Typeof null, typeof undefined, typeof {}, typeof NaN
  • Q3. What changes came in es6
  • Ans. 

    ES6 introduced several new features and improvements to JavaScript, making it more powerful and efficient.

    • Arrow functions for more concise syntax

    • Let and const for block-scoped variables

    • Classes for easier object-oriented programming

    • Template literals for easier string interpolation

    • Default parameters and rest parameters for function arguments

    • Destructuring assignment for easier data extraction

    • Promises for asynchronous prog

  • Answered by AI
  • Q4. This keyword, closures, hoisting
  • Q5. Are let and cont variables hoisted?
  • Ans. 

    Yes, let and const variables are hoisted but not initialized.

    • let and const variables are hoisted to the top of their block scope, but they are not initialized until the actual line of code is executed.

    • This means that you cannot access a let or const variable before it is declared in the code.

    • For example, trying to access a let variable before it is declared will result in a ReferenceError.

  • Answered by AI
  • Q6. What is global context
  • Ans. 

    Global context refers to the overall environment or setting in which something exists or operates.

    • Global context encompasses all variables, functions, and objects that are accessible throughout an entire program.

    • It can be thought of as the 'big picture' view of a program's execution.

    • In web development, global context includes the window object in JavaScript.

  • Answered by AI
  • Q7. What is temporal deadzone
  • Ans. 

    Temporal dead zone is a period during the variable creation process where accessing the variable results in a ReferenceError.

    • Occurs when trying to access a variable before it has been declared with let or const

    • Happens due to the variable being in the temporal dead zone until it is declared

    • Example: accessing a variable before its declaration will result in a ReferenceError

  • Answered by AI
  • Q8. What is modules? types of modules in nodejs
  • Ans. 

    Modules in Node.js are reusable blocks of code that encapsulate related functionality.

    • Modules in Node.js can be built-in modules like fs (file system) or third-party modules like express.

    • Modules help in organizing code into separate files for better maintainability and reusability.

    • Modules can be imported using the require() function in Node.js.

  • Answered by AI
  • Q9. Index in mongodb, why we need index, is index good or bad?
  • Ans. 

    Indexes in MongoDB improve query performance by allowing the database to quickly locate and retrieve specific documents.

    • Indexes help to speed up query performance by allowing the database to quickly locate specific documents based on the indexed fields.

    • Without indexes, MongoDB would have to perform a collection scan, which can be slow and resource-intensive.

    • Indexes can be created on single fields or compound fields to ...

  • Answered by AI
  • Q10. What are hooks , use of useRef
  • Ans. 

    Hooks are a feature in React that allow you to use state and other React features in functional components. useRef is a hook that allows you to create a mutable object that persists for the lifetime of the component.

    • Hooks are used to add state and lifecycle methods to functional components in React

    • useRef is used to create a mutable reference that persists between renders

    • useRef can be used to access DOM elements directl

  • Answered by AI
  • Q11. Fs module, http module, worker thread?
  • Q12. Why we use mongoose not mongodb driver?
  • Ans. 

    Mongoose is an Object Data Modeling (ODM) library for MongoDB that provides a higher level of abstraction and simplifies interactions with the database.

    • Mongoose provides schema validation which helps maintain data integrity.

    • Mongoose simplifies querying and data manipulation with built-in functions.

    • Mongoose supports middleware functions for pre and post processing of data operations.

  • Answered by AI

Skills evaluated in this interview

Software Technologies Interview Questions & Answers

Signzy Technologies user image Anonymous

posted on 3 Jan 2025

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. ACID Properties
  • Ans. 

    ACID properties are a set of properties that guarantee reliable and consistent transactions in a database system.

    • Atomicity ensures that either all operations in a transaction are completed successfully or none at all.

    • Consistency ensures that the database remains in a valid state before and after the transaction.

    • Isolation ensures that the concurrent execution of transactions results in a system state that would be obtai...

  • Answered by AI
  • Q2. What are Idempotent HTTP Requests?
  • Ans. 

    Idempotent HTTP requests are requests that can be repeated multiple times without changing the result beyond the initial request.

    • Idempotent requests have the same outcome no matter how many times they are executed.

    • GET, PUT, and DELETE HTTP methods are typically idempotent.

    • POST requests are not idempotent as they can create new resources with each execution.

  • Answered by AI
  • Q3. Questions regarding your project, and how did you learn from the projects and tasks assigned to you?
  • Q4. System Design

Interview Preparation Tips

Topics to prepare for Signzy Technologies Software Technologies interview:
  • System DEsign
  • DSa
  • Algo
  • DBMS
  • Operating System
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at Indian Institute of Technology (IIT), Jodhpur

Round 1 - One-on-one 

(2 Questions)

  • Q1. Introduction yourself in details covering each points
  • Ans. 

    Experienced cluster manager with a proven track record in team leadership and strategic planning.

    • Over 5 years of experience in managing multiple teams and projects simultaneously

    • Strong leadership skills with the ability to motivate and inspire team members

    • Expertise in strategic planning and execution to achieve organizational goals

    • Excellent communication and interpersonal skills for effective team collaboration

    • Proven t...

  • Answered by AI
  • Q2. Location can be for new hotels for max revenue
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Tell us about yourself
  • Q2. Showcase some of you projects
  • Ans. 

    I have worked on projects involving website redesign, mobile app design, and user research.

    • Redesigned company website to improve user experience and increase conversion rates

    • Designed mobile app interface for seamless navigation and intuitive user interactions

    • Conducted user research to gather feedback and make data-driven design decisions

  • Answered by AI
  • Q3. What are your favourite apps and why do you like them
  • Ans. 

    My favorite apps are Instagram for its user-friendly interface and engaging content, Spotify for its personalized music recommendations, and Google Maps for its accurate navigation features.

    • Instagram - user-friendly interface, engaging content

    • Spotify - personalized music recommendations

    • Google Maps - accurate navigation features

  • Answered by AI
  • Q4. What roles are you interested in?
  • Q5. Where do you see yourself in 5 years?
  • Ans. 

    In 5 years, I see myself as a seasoned UI/UX designer leading a team of designers, working on innovative projects, and continuously learning and growing in the field.

    • Leading a team of designers

    • Working on innovative projects

    • Continuously learning and growing in the field

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    Experienced Senior Product Manager with a background in tech industry and a passion for driving product innovation.

    • Over 8 years of experience in product management roles

    • Strong background in the tech industry, with a focus on software development

    • Proven track record of successfully launching and managing products from concept to market

    • Passionate about driving product innovation and improving user experiences

    • Skilled in cr...

  • Answered by AI
  • Q2. Aptitude Question
Round 2 - One-on-one 

(2 Questions)

  • Q1. Experience Questions
  • Q2. Hobbies and Passion
Round 3 - One-on-one 

(2 Questions)

  • Q1. Assignment Round with Review at the end
  • Q2. Pitch GoComet to the founder
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Government College of Engineering, Aurangabad and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Mostly questions on logical aptitude

Round 2 - Technical 

(3 Questions)

  • Q1. DSA questions. Reverse word of string, bubble sort, swap two variables without use of third variable
  • Q2. OOPs concepts also some questions on project
  • Q3. 1 puzzle (refer gfg)
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to work at our company?
  • Q2. What was the toughest challenge you have ever faced?

Basis Vectors Interview FAQs

How many rounds are there in Basis Vectors interview?
Basis Vectors interview process usually has 2 rounds. The most common rounds in the Basis Vectors interview process are Aptitude Test, Coding Test and One-on-one Round.
How to prepare for Basis Vectors interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Basis Vectors. The most common topics and skills that interviewers at Basis Vectors expect are Communication Skills, Material Science, Onboarding, PHP and Python.
What are the top questions asked in Basis Vectors interview?

Some of the top questions asked at the Basis Vectors interview -

  1. What is ductility, hardn...read more
  2. Stress strain cu...read more

Tell us how to improve this page.

Basis Vectors Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Mu Sigma Interview Questions
2.6
 • 226 Interviews
Tiger Analytics Interview Questions
3.7
 • 220 Interviews
Fractal Analytics Interview Questions
4.0
 • 205 Interviews
3 Minds Digital Interview Questions
4.4
 • 64 Interviews
AbsolutData Interview Questions
3.6
 • 9 Interviews
Algonomy Interview Questions
3.9
 • 9 Interviews
Crayon Data Interview Questions
3.6
 • 4 Interviews
View all

Fast track your campus placements

View all

Basis Vectors Reviews and Ratings

based on 16 reviews

2.5/5

Rating in categories

2.5

Skill development

2.6

Work-life balance

2.5

Salary

2.4

Job security

2.5

Company culture

2.5

Promotions

2.4

Work satisfaction

Explore 16 Reviews and Ratings
Technical Staff
3 salaries
unlock blur

₹3 L/yr - ₹4.5 L/yr

Digital Marketing Associate
3 salaries
unlock blur

₹7 L/yr - ₹7.5 L/yr

Head Enterprise Sales
3 salaries
unlock blur

₹22 L/yr - ₹24 L/yr

Explore more salaries
Compare Basis Vectors with

Mu Sigma

2.6
Compare

Fractal Analytics

4.0
Compare

LatentView Analytics

3.7
Compare

Tiger Analytics

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