Upload Button Icon Add office photos

Filter interviews by

PINscale Technologies BDA Interview Questions and Answers

Updated 11 Sep 2023

PINscale Technologies BDA Interview Experiences

1 interview found

BDA Interview Questions & Answers

user image Anonymous

posted on 11 Sep 2023

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 in Mar 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 - HR 

(4 Questions)

  • Q1. Self introduction
  • Q2. Experience of previous company And salary package
  • Q3. Job role about BDA
  • Q4. And he explained about job process

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

I am selected in this round

Round 2 - Assignment 

You have answer the question given by them by making videos of yours

Round 3 - HR 

(4 Questions)

  • Q1. In this round i am not selected
  • Q2. Tell me about ur self
  • Q3. Strength and weakness
  • Q4. Why uh go for sales

I applied via Company Website and was interviewed in Jan 2022. There were 3 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 - Assignment 

They give 5 questions and you have to make a video of those ques and submit that. Those 5 basic questions were very easy and you can search them also.

Round 3 - One-on-one 

(1 Question)

  • Q1. Basic questions like Intro, why do you want to join sale profile ect.

Interview Preparation Tips

Topics to prepare for Planet Spark BDA interview:
  • basics topic as per the profile.
Interview preparation tips for other job seekers - if you want to join ed-tech co. you can try this one. If i talked about salary as a fresher it was very good and this time it is WFH.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
-

I applied via Approached by Company and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What is bridge? What is the new architecture?
  • Ans. 

    Bridge is a structural design pattern that decouples an abstraction from its implementation. The new architecture refers to modern design patterns and technologies used in software development.

    • Bridge pattern allows the client code to work with different implementations of an interface independently.

    • The new architecture in front end development may include concepts like component-based architecture, state management lib...

  • Answered by AI
  • Q2. How will you optimize a react native app
  • Ans. 

    Optimizing a React Native app involves reducing bundle size, improving performance, and enhancing user experience.

    • Use code splitting to reduce initial load time

    • Optimize images and assets for smaller file sizes

    • Implement lazy loading for components that are not immediately visible

    • Minimize the use of third-party libraries and only include necessary dependencies

    • Utilize performance monitoring tools like React Native Perform

  • Answered by AI
  • Q3. What is context API
  • Ans. 

    Context API is a feature in React that allows sharing data between components without having to pass props through every level of the component tree.

    • Context API provides a way to pass data through the component tree without having to pass props down manually at every level.

    • It is useful for sharing global data such as themes, user authentication, or language preferences.

    • Context API consists of three main parts: Provider...

  • Answered by AI
  • Q4. What is hoisting
  • Ans. 

    Hoisting is a JavaScript mechanism where variable and function declarations are moved to the top of their containing scope during compilation.

    • Variable declarations are hoisted to the top of their scope, but not their initializations.

    • Function declarations are fully hoisted, including their definitions.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Question are very tough and faad

Round 2 - Coding Test 

Question like trees linked list and graphs

Interview Preparation Tips

Interview preparation tips for other job seekers - Best of luck for your future
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Prepare of python basics topics and oops concepts

Round 2 - Aptitude Test 

Good prepare all topics of appituted

Round 3 - HR 

(1 Question)

  • Q1. Good basic question
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I was interviewed before Jun 2023.

Round 1 - Assignment 

Create 1 webpage using html, css, js, scss - xd provided

Round 2 - Technical 

(7 Questions)

  • Q1. Doctype in html
  • Ans. 

    Doctype in HTML specifies the version of HTML being used in the document.

    • Doctype declaration is placed at the very beginning of an HTML document before the tag.

    • It helps the browser to render the web page correctly by specifying the version of HTML being used.

    • Common doctype declaration for HTML5 is .

Answered by AI
  • Q2. What is Flexbox in css
  • Ans. 

    Flexbox is a layout model in CSS that allows you to design complex layouts with a more efficient and predictable way.

    • Flexbox is used for creating flexible and responsive layouts.

    • It allows you to align and distribute space among items in a container.

    • Flexbox properties include display: flex, flex-direction, justify-content, align-items, and more.

    • Example: display: flex; justify-content: center; align-items: center;

  • Answered by AI
  • Q3. Document.ready and window.onload difference
  • Ans. 

    Document.ready is a jQuery function that fires when the DOM is ready, while window.onload is a vanilla JavaScript event that fires when all resources have loaded.

    • Document.ready is specific to jQuery, while window.onload is a standard JavaScript event.

    • Document.ready fires when the DOM is ready, even if images are still loading, while window.onload waits for all resources to finish loading.

    • Document.ready is faster than w...

  • Answered by AI
  • Q4. Position properties in css
  • Ans. 

    Position properties in CSS control the positioning of elements on a webpage.

    • The 'position' property specifies the type of positioning method used for an element (static, relative, absolute, fixed, or sticky).

    • The 'top', 'right', 'bottom', and 'left' properties can be used to adjust the position of an element relative to its containing element.

    • Examples: position: relative; top: 10px; left: 20px;

  • Answered by AI
  • Q5. Box model in css
  • Ans. 

    Box model in CSS refers to the way elements are rendered on a webpage, including content, padding, border, and margin.

    • The box model consists of content, padding, border, and margin.

    • Content is the actual content of the element.

    • Padding is the space between the content and the border.

    • Border is the line that surrounds the padding.

    • Margin is the space outside the border.

    • You can adjust the size of each part of the box model u...

  • Answered by AI
  • Q6. Semantic tags in html
  • Ans. 

    Semantic tags in HTML are used to give meaning to the content of a webpage for better accessibility and SEO.

    • Semantic tags help search engines understand the structure of a webpage.

    • Examples of semantic tags include

      ,
      ,
    • Using semantic tags improves accessibility for screen readers and other assistive technologies.

  • Answered by AI
  • Q7. Display properties
  • Ans. 

    Display properties are used in CSS to control the layout and appearance of elements on a webpage.

    • Display property determines how an element is displayed on the page

    • Common values include 'block', 'inline', 'inline-block', 'flex', 'grid', 'none'

    • Example: display: block; will make the element a block-level element

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

    (3 Questions)

    • Q1. What is Flexbox in css
    • Ans. 

      Flexbox is a layout model in CSS that allows for the design of complex responsive layouts with a more efficient and predictable way.

      • Flexbox is used to create flexible and responsive layouts.

      • It allows for easy alignment and distribution of space among items in a container.

      • Flexbox properties include display: flex, flex-direction, justify-content, align-items, and more.

      • Example: display: flex; justify-content: center; alig...

    • Answered by AI
    • Q2. Box sizing difference and scenario
    • Ans. 

      Box sizing property in CSS determines how the total width and height of an element is calculated.

      • Content-box: width and height only include the content, padding and border are added on top.

      • Border-box: width and height include content, padding, and border.

      • Use content-box when you want to specify the width and height of the content area only.

      • Use border-box when you want to specify the width and height of the entire box i

    • Answered by AI
    • Q3. Bootstrap grid and flex

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be prepared well, all the best👍

    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 Sep 2023. There were 2 interview rounds.

    Round 1 - Technical 

    (1 Question)

    • Q1. Dependency injection
    Round 2 - Technical 

    (1 Question)

    • Q1. Directive in angular
    • Ans. 

      Directives in Angular are markers on a DOM element that tell Angular to attach a specified behavior to that DOM element or even transform the DOM element and its children.

      • Directives are used to create reusable components or add behavior to existing components

      • There are three types of directives in Angular: Component, Structural, and Attribute

      • Examples of directives include ngIf, ngFor, and ngStyle

    • Answered by AI

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

    Round 1 - Resume Shortlist 
    Pro Tip by AmbitionBox:
    Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
    View all tips
    Round 2 - Coding Test 

    HTML, CSS, JavaScript, React js

    Interview Preparation Tips

    Interview preparation tips for other job seekers - It is good for freshers company

    I applied via Company Website and was interviewed in Feb 2021. There was 1 interview round.

    Interview Questionnaire 

    3 Questions

    • Q1. Questions like CSS box model, semantic html, javascript closure
    • Q2. Questions about bootstrap framework, Have you done any project's on these technologies?
    • Q3. What is pseudo classes and element?
    • Ans. 

      Pseudo classes and elements are used in CSS to style elements based on their state or position in the document.

      • Pseudo classes are used to style elements based on their state, such as :hover, :active, and :focus.

      • Pseudo elements are used to style specific parts of an element, such as ::before and ::after.

      • Pseudo classes and elements are denoted by a colon or double colon before the name.

      • They can be used to add special eff...

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Don't panic and brush up your technical skills before each round. doesn't matter if there are 3-4 panels for technical interview they'll just check your confidence and communication skills how you answer properly as interviews are happening virtually and through phone calls. Don't forget to thank the interviewer after each round.Dont take it lightly because these interviews are happening virtually face it like you are giving the interview in person.All the best.

    Skills evaluated in this interview

    PINscale Technologies Interview FAQs

    How many rounds are there in PINscale Technologies BDA interview?
    PINscale Technologies interview process usually has 2 rounds. The most common rounds in the PINscale Technologies interview process are Resume Shortlist and HR.

    Tell us how to improve this page.

    PINscale Technologies BDA Interview Process

    based on 1 interview

    Interview experience

    4
      
    Good
    View more

    Interview Questions from Similar Companies

    TCS Interview Questions
    3.7
     • 10.3k Interviews
    Infosys Interview Questions
    3.7
     • 7.6k Interviews
    Wipro Interview Questions
    3.7
     • 5.6k Interviews
    Tech Mahindra Interview Questions
    3.5
     • 3.8k Interviews
    HCLTech Interview Questions
    3.5
     • 3.8k Interviews
    LTIMindtree Interview Questions
    3.8
     • 3k Interviews
    Mphasis Interview Questions
    3.4
     • 793 Interviews
    L&T Construction Interview Questions
    4.0
     • 703 Interviews
    View all

    PINscale Technologies BDA Reviews and Ratings

    based on 1 review

    4.0/5

    Rating in categories

    4.0

    Skill development

    4.0

    Work-life balance

    3.0

    Salary

    3.0

    Job security

    5.0

    Company culture

    2.0

    Promotions

    4.0

    Work satisfaction

    Explore 1 Review and Rating
    Software Development Engineer 1
    6 salaries
    unlock blur

    ₹8.4 L/yr - ₹18 L/yr

    UI/UX Designer
    5 salaries
    unlock blur

    ₹7.2 L/yr - ₹11.2 L/yr

    Business Development Associate
    3 salaries
    unlock blur

    ₹2.4 L/yr - ₹5.7 L/yr

    Business Development Manager
    3 salaries
    unlock blur

    ₹18 L/yr - ₹18 L/yr

    Software Development Engineer II
    3 salaries
    unlock blur

    ₹18 L/yr - ₹21 L/yr

    Explore more salaries
    Compare PINscale Technologies with

    TCS

    3.7
    Compare

    Infosys

    3.6
    Compare

    Wipro

    3.7
    Compare

    HCLTech

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