Upload Button Icon Add office photos
Engaged Employer

i

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

BigStep Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

BigStep Technologies Interview Questions, Process, and Tips

Updated 21 Jan 2025

Top BigStep Technologies Interview Questions and Answers

View all 28 questions

BigStep Technologies Interview Experiences

Popular Designations

32 interviews found

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

I applied via Approached by Company and was interviewed before Oct 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 - Technical 

(1 Question)

  • Q1. Find the duplicate items in the array.
  • Ans. 

    Find duplicate items in array of strings.

    • Iterate through array and store each item in a hash set.

    • If item already exists in hash set, it is a duplicate.

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

(1 Question)

  • Q1. Javascript basics questions

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (1)

Software Enginner - Level 3 Interview Questions & Answers

user image Rishik Raj

posted on 9 Feb 2022

I applied via Campus Placement and was interviewed in Jul 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Coding Test 
Round 3 - One-on-one 

(3 Questions)

  • Q1. 2 coding questions from array;
  • Q2. Some theory questions from os and dbms
  • Q3. Some sql query questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up on basics, focus on problem solving than syntax

Interview Questionnaire 

4 Questions

  • Q1. Describe the document development life cycle.
  • Ans. 

    The document development life cycle is the process of creating, reviewing, revising, and publishing documents.

    • Planning and research

    • Writing and editing

    • Review and feedback

    • Revision and finalization

    • Publishing and distribution

  • Answered by AI
  • Q2. Narrate a difficult situation in any of your projects and how did you overcome it.
  • Ans. 

    Overcoming a difficult situation in a project

    • Identified a major flaw in the project plan

    • Collaborated with team members to find a solution

    • Implemented a revised plan to address the issue

    • Communicated the changes effectively to stakeholders

    • Successfully completed the project on time

  • Answered by AI
  • Q3. How would you gather information about the product you are writing?
  • Ans. 

    I would gather information through research, interviews, product demos, and testing.

    • Research the product and its features

    • Interview subject matter experts and stakeholders

    • Attend product demos and take notes

    • Test the product to gain hands-on experience

    • Review existing documentation and user feedback

  • Answered by AI
  • Q4. What tools have you used?
  • Ans. 

    I have used a variety of tools including MadCap Flare, Adobe FrameMaker, Microsoft Word, and Confluence.

    • MadCap Flare

    • Adobe FrameMaker

    • Microsoft Word

    • Confluence

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview went smoothly and the interviewers were amazing people.

Skills evaluated in this interview

Senior Technical Writer Interview Questions asked at other Companies

Q1. What do you know about DITA XML, which tags have you used in your documents, what are keywords, and what is DITA mapping, have you ever created graphics or illustrations, types of DITA topics, benefits of DITA, chunking, have you worked in ... read more
View answer (1)

I applied via Recruitment Consulltant and was interviewed before May 2021. There were 5 interview rounds.

Round 1 - Coding Test 

Hackerrank Test

Round 2 - Technical 

(1 Question)

  • Q1. Questions related to NodeJS and Javascript Basics
Round 3 - Technical 

(1 Question)

  • Q1. Technical questions based on past experience
Round 4 - HR 

(1 Question)

  • Q1. Company Culture related
Round 5 - Behavioral 

(1 Question)

  • Q1. Expectations and Processes

Interview Preparation Tips

Interview preparation tips for other job seekers - Read the basics. Medium level interview questions. All the best.

Top BigStep Technologies Software Engineer Interview Questions and Answers

Q1. Maximum Sum SubarrayYou are given an array (ARR) of length N, consisting of integers. You have to find the sum of the subarray (including empty subarray) having maximum sum among all subarrays. A subarray is a contiguous segment of an array... read more
View answer (6)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (170)

BigStep Technologies interview questions for popular designations

 Software Engineer

 (6)

 Software Developer

 (3)

 HR Executive

 (2)

 Project Coordinator

 (2)

 Senior QA Engineer

 (2)

 Senior Technical Writer

 (2)

 Android Developer

 (1)

 Angular Frontend Developer

 (1)

I was interviewed before Apr 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical interview round with questions on DSA and DBMS mainly.

  • Q1. 

    Maximum Sum Subarray Problem Statement

    Given an array ARR consisting of N integers, determine the sum of the subarray with the maximum sum, including the possibility of an empty subarray.

    A subarray is a...

  • Ans. 

    The direct approach to solve this problem is to run two for loops and for every subarray check if it is the maximum sum possible. 
    Time complexity : O(N^2), Where N is the size of the array.
    Space complexity : O(1)
    The efficient approach is to use Kadane's algorithm. It calculates the maximum sum subarray ending at a particular index by using the maximum sum subarray ending at the previous position. 


    Steps : ...

  • Answered Anonymously
  • Q2. 

    Prime Numbers Identification

    Given a positive integer N, your task is to identify all prime numbers less than or equal to N.

    Explanation:

    A prime number is a natural number greater than 1 that has no po...

  • Ans. 

    The naïve approach for this question is to run a loop from the start to the end number. And for each number, check if it is prime or not. If the number is prime, we print it otherwise skip it.
    One optimization to this approach would be to skip all even numbers (except 2 if present in interval) since even numbers are not prime.
    Function to check if a number is prime or not :

    
    isPrime(n){
    	if (n <= 1) 
    		return false
    ...

  • Answered Anonymously
  • Q3. What are Joins in the context of databases?
  • Ans. 

    A SQL Join statement is used to combine data or rows from two or more tables based on a common field between them. Different types of Joins are:

    INNER JOIN : The INNER JOIN keyword selects all rows from both the tables as long as the condition satisfies. This keyword will create the result-set by combining all rows from both the tables where the condition satisfies i.e value of the common field will be same.


    Syntax:
    SELEC...

  • Answered Anonymously
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Typical HR round with behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPABigStep Technologies interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, DBMS, SQL, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top BigStep Technologies Software Engineer Interview Questions and Answers

Q1. Maximum Sum SubarrayYou are given an array (ARR) of length N, consisting of integers. You have to find the sum of the subarray (including empty subarray) having maximum sum among all subarrays. A subarray is a contiguous segment of an array... read more
View answer (6)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (170)

Get interview-ready with Top BigStep Technologies Interview Questions

QA Manager Interview Questions & Answers

user image Anonymous

posted on 14 Sep 2021

I applied via LinkedIn and was interviewed in Mar 2021. There were 5 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. My first Technical Round was related to my profile, my role and responsibilities, what type of technology I am working on? how many projects and team member I am leading, my daily work schedule, etc.
  • Q2. What QA methodology I am working on?
  • Ans. 

    I am currently working on Agile QA methodology.

    • I follow Agile principles and practices for software testing and quality assurance.

    • I work in sprints and prioritize testing based on user stories.

    • I collaborate closely with developers and stakeholders to ensure quality throughout the development process.

    • I use tools like JIRA and Confluence to manage testing tasks and documentation.

    • I continuously improve our testing process

  • Answered by AI
  • Q3. What testing tools I am using?
  • Ans. 

    I am using a variety of testing tools depending on the project requirements.

    • For functional testing, I use tools like Selenium and Appium.

    • For performance testing, I use JMeter and LoadRunner.

    • For security testing, I use tools like OWASP ZAP and Burp Suite.

    • For API testing, I use tools like Postman and SoapUI.

    • For test management, I use tools like JIRA and TestRail.

  • Answered by AI
  • Q4. How do I stablish and maintain quality of product?
  • Ans. 

    Establish and maintain quality of product by implementing quality control measures and continuous improvement processes.

    • Define quality standards and specifications

    • Implement quality control measures at every stage of production

    • Conduct regular inspections and audits

    • Train employees on quality control procedures

    • Implement continuous improvement processes

    • Collect and analyze data to identify areas for improvement

    • Address custo...

  • Answered by AI
  • Q5. Which automation tool I am using in my project and about framework?
  • Ans. 

    We are using Selenium as our automation tool and have implemented a hybrid framework.

    • We use Selenium for automating our web application testing.

    • Our framework is a hybrid framework that combines data-driven and keyword-driven approaches.

    • We have developed custom libraries and utilities to enhance automation capabilities.

    • We follow the Page Object Model design pattern for better maintainability and reusability.

    • Our framewor...

  • Answered by AI
  • Q6. In VP round, all professional question related to my work routine, client handling, release management and handling escalation, etc..
  • Q7. Client round, question related to problem solving scenario based, question on Agile methodology, how I am managing a team and resolving their queries.
  • Q8. The last round was HR Round and it went fabulous, my personals introduction, CTC part and discussion about organization and also the benefits provided by organization. HR cleared all my doubt and queries.

Interview Preparation Tips

Interview preparation tips for other job seekers - I will say all rounds went well, BigStep is so professional in taking terms of interview and their interview process is so professionalize. I fell satisfied during my all rounds.

Skills evaluated in this interview

QA Manager Interview Questions asked at other Companies

Q1. List of the essential documents which are must be submitted for a successful 3rd party inspection ?
View answer (2)

I applied via Campus Placement and was interviewed in Aug 2021. There were 4 interview rounds.

Round 1 - Coding Test 

1st test was aptitude and a easy coding test

Round 2 - Coding Test 

The 2nd test was pure coding based test on hacker rank platform and contains 2 easy and 2 medium question

Round 3 - Technical 

(1 Question)

  • Q1. Round 3 was technical interview and asked from basics of computer programming and architecture
Round 4 - HR 

(4 Questions)

  • Q1. What is your family background?
  • Q2. Why are you looking for a change?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Advice is just improve basics of programming and DSA with a database management and basicsa of os and networks

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (39)

I applied via Naukri.com and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. To find if a number is Prime or not and optimise your written code.
  • Ans. 

    Check if a number is prime and optimize the code.

    • Start by checking if the number is less than 2, in which case it is not prime.

    • Iterate from 2 to the square root of the number and check if any of them divide the number evenly.

    • If a divisor is found, the number is not prime. Otherwise, it is prime.

  • Answered by AI
  • Q2. Css question related to flex box, Grid and cross browser compatibility
  • Q3. To call an API in react and optimise your written code.
  • Ans. 

    To optimise API calls in React, use asynchronous functions and caching techniques.

    • Use async/await to handle API calls

    • Implement caching to reduce network requests

    • Use memoization to avoid unnecessary re-renders

    • Consider using a state management library like Redux

    • Use performance profiling tools like React DevTools

  • Answered by AI
  • Q4. Questions on JS concepts like Objects and Prototype Inheritance.

Interview Preparation Tips

Interview preparation tips for other job seekers - Know your basic concepts and prepare well for the interview.

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

I applied via Campus Placement and was interviewed in Jul 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Linux Concept, basic networking concepts, cloud computing.
  • Q2. AWS concepts, shell scripting, OOP's concept

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview process were very smooth.

Cloud Developer Interview Questions asked at other Companies

Q1. what is friend function, what is function overloading and overriding. difference between run time polymorphism and compile time polymorphism.
View answer (1)

I applied via Campus Placement and was interviewed in Aug 2021. There was 1 interview round.

Round 1 - Aptitude Test 

(2 Questions)

  • Q1. Question were on Linked List
  • Q2. Question were on Arrays, Trees

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear your Coding concept and focus on datastructures.

Mean Stack Developer Interview Questions asked at other Companies

Q1. In market so many language but why we are using only Angular..??
View answer (1)

BigStep Technologies Interview FAQs

How many rounds are there in BigStep Technologies interview?
BigStep Technologies interview process usually has 3-4 rounds. The most common rounds in the BigStep Technologies interview process are Technical, One-on-one Round and HR.
How to prepare for BigStep Technologies 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 BigStep Technologies. The most common topics and skills that interviewers at BigStep Technologies expect are MongoDB, Mobile Application Development, Node.Js, Web Development and Mean Stack.
What are the top questions asked in BigStep Technologies interview?

Some of the top questions asked at the BigStep Technologies interview -

  1. How will you get the value for a key from dictiona...read more
  2. To find if a number is Prime or not and optimise your written co...read more
  3. How would you gather information about the product you are writi...read more

Tell us how to improve this page.

BigStep Technologies Interview Process

based on 6 interviews

Interview experience

4.8
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
Webdew Interview Questions
4.5
 • 106 Interviews
View all

BigStep Technologies Reviews and Ratings

based on 143 reviews

4.4/5

Rating in categories

4.2

Skill development

4.4

Work-life balance

4.3

Salary

4.4

Job security

4.4

Company culture

4.2

Promotions

4.3

Work satisfaction

Explore 143 Reviews and Ratings
Software Engineer
60 salaries
unlock blur

₹4.8 L/yr - ₹18 L/yr

Senior Software Engineer
40 salaries
unlock blur

₹12 L/yr - ₹46.2 L/yr

Software Developer
25 salaries
unlock blur

₹4.5 L/yr - ₹11.1 L/yr

Technical Lead
18 salaries
unlock blur

₹17.1 L/yr - ₹50.8 L/yr

Software Support Engineer
9 salaries
unlock blur

₹3.5 L/yr - ₹4.8 L/yr

Explore more salaries
Compare BigStep 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