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

I applied via LinkedIn and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Experience with recruiting.
  • Ans. 

    I have 5 years of experience in recruiting for various industries.

    • Managed end-to-end recruitment process, including sourcing, screening, interviewing, and onboarding.

    • Developed and implemented recruitment strategies to attract top talent.

    • Utilized various recruitment channels such as job boards, social media, and professional networks.

    • Built and maintained relationships with hiring managers to understand their hiring need...

  • Answered by AI
  • Q2. Experience using different job boards.
  • Ans. 

    I have extensive experience using various job boards to source and recruit top talent.

    • I have used popular job boards such as LinkedIn, Indeed, and Glassdoor.

    • I am familiar with industry-specific job boards like Dice for IT positions.

    • I have utilized niche job boards like Behance for creative roles.

    • I have experience posting job ads and managing candidate applications on job boards.

    • I have used advanced search filters and B...

  • Answered by AI
  • Q3. Recruitment funnel and pipeline building strategy.
  • Q4. Team management experience.
  • Ans. 

    I have 5 years of team management experience in talent acquisition.

    • Managed a team of 10 recruiters and achieved a 20% increase in hiring efficiency.

    • Implemented performance metrics and conducted regular performance evaluations.

    • Developed and executed recruitment strategies to attract top talent.

    • Provided training and mentorship to team members to enhance their skills.

    • Collaborated with hiring managers to understand their n...

  • Answered by AI
  • Q5. Career progression.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be sure and thorough about your previous work experience while appearing for the interview.
Research well about BigStep technologies.

Manager Talent Acquisition Interview Questions asked at other Companies

Q1. How do you address employees who are dissatisfied with their appraisals?
View answer (1)

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. What is list?
  • Ans. 

    List is a collection of ordered and changeable elements.

    • Lists are created using square brackets []

    • Elements in a list can be of different data types

    • Lists can be sliced and concatenated

    • Example: my_list = [1, 'apple', True, 3.14]

  • Answered by AI
  • Q2. Difference between list and tuple?
  • Ans. 

    Lists are mutable and can be modified, while tuples are immutable and cannot be modified.

    • Lists are enclosed in square brackets [], while tuples are enclosed in parentheses ().

    • Lists can have elements of different data types, while tuples can have elements of the same or different data types.

    • Lists have more built-in methods for manipulation, such as append(), remove(), and sort().

    • Tuples are generally used for heterogeneo...

  • Answered by AI
  • Q3. What is dictionary?
  • Ans. 

    A dictionary is a collection of key-value pairs, where each key is unique and used to access its corresponding value.

    • Keys must be immutable objects like strings, numbers, or tuples.

    • Values can be any type of object, including other dictionaries.

    • Dictionaries are unordered, meaning the order of items is not guaranteed.

    • Accessing a value using a key is fast and efficient.

    • Example: {'name': 'John', 'age': 30, 'city': 'New Yor

  • Answered by AI
  • Q4. How will you get the value for a key from dictionary?
  • Ans. 

    To get the value for a key from a dictionary in Python, use the square bracket notation or the get() method.

    • Use square brackets and the key name to access the value directly: dictionary[key]

    • Alternatively, use the get() method to retrieve the value: dictionary.get(key)

    • If the key is not present in the dictionary, using square brackets will raise a KeyError, while get() will return None or a default value if specified

  • Answered by AI
  • Q5. Explain about the memory management
  • Ans. 

    Memory management is the process of allocating and deallocating memory in a computer system.

    • Memory is allocated dynamically using malloc() or new() functions.

    • Memory leaks occur when memory is not deallocated after use.

    • Garbage collection is used in languages like Python to automatically deallocate memory.

    • Memory fragmentation can occur when memory is allocated and deallocated frequently.

    • Memory management is important for

  • Answered by AI
  • Q6. What is RestAPI?
  • Ans. 

    RestAPI is a web service that uses HTTP requests to access and manipulate data.

    • RestAPI stands for Representational State Transfer Application Programming Interface.

    • It is a standard protocol used for creating web services.

    • It uses HTTP methods like GET, POST, PUT, DELETE to perform operations on data.

    • It returns data in various formats like JSON, XML, etc.

    • Examples of RestAPIs include Twitter API, Facebook API, etc.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong on the basics of Python and any of the associated technologies

Skills evaluated in this interview

Top BigStep Technologies Python Developer Interview Questions and Answers

Q1. How will you get the value for a key from dictionary?
View answer (2)

Python Developer Interview Questions asked at other Companies

Q1. Tell me the logic of program to reverse a given string word by word without using any built in function.
View answer (9)
BigStep Technologies Interview Questions and Answers for Freshers
illustration image

Software Engineer Interview Questions & Answers

user image Mayank Gupta

posted on 14 Sep 2021

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

Interview Questionnaire 

3 Questions

  • Q1. What are Joins in SQL? Briefly explain difference between all types of joins
  • Ans. 

    Joins in SQL are used to combine data from two or more tables based on a related column.

    • Inner join returns only the matching rows from both tables

    • Left join returns all rows from the left table and matching rows from the right table

    • Right join returns all rows from the right table and matching rows from the left table

    • Full outer join returns all rows from both tables, with NULL values for non-matching rows

    • Cross join retur

  • Answered by AI
  • Q2. Find a sub array with a given sum
  • Ans. 

    Given an array of integers, find a contiguous subarray with a given sum.

    • Use a sliding window approach to iterate through the array and keep track of the current sum.

    • If the current sum exceeds the given sum, move the window's left endpoint forward.

    • If the current sum is less than the given sum, move the window's right endpoint forward.

    • If the current sum equals the given sum, return the subarray.

    • Time complexity: O(n), Spa

  • Answered by AI
  • Q3. Questions related to Projects mentioned in CV

Interview Preparation Tips

Interview preparation tips for other job seekers - My interview advice would be to remain honest throughout the interview. The interviewer checks the problem solving abilities by your approach of solving it. Ask if there are any doubts.

Skills evaluated in this interview

Top BigStep Technologies Software Engineer Interview Questions and Answers

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 contiguous portion of an array and c... read more
View answer (1)

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 (197)

I applied via Naukri.com and was interviewed in Jul 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Mostly related to my profile of testing and work which I was doing in my current company.

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Please make your hiring process fast.

Senior QA Engineer Interview Questions asked at other Companies

Q1. Combination Sum Problem Statement Given an array of distinct positive integers ARR and a non-negative integer 'B', find all unique combinations in the array where the sum is equal to 'B'. Numbers can be chosen multiple times from ARR. Ensur... read more
View answer (1)

BigStep Technologies interview questions for popular designations

 Software Engineer

 (6)

 Software Developer

 (3)

 Project Coordinator

 (2)

 HR Executive

 (2)

 Senior QA Engineer

 (2)

 Senior Technical Writer

 (2)

 Project Manager

 (1)

 Product Manager

 (1)

I applied via Naukri.com and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Questions Regarding Education
  • Q2. Questions Regarding my internship and previous work experience
  • Q3. Technical Questions regarding the profile

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and confident, the team is great and recruitment process is really smooth

HR Executive Interview Questions asked at other Companies

Q1. What do you know about Labor Law
View answer (6)

Get interview-ready with Top BigStep Technologies Interview Questions

Interview Questionnaire 

1 Question

  • Q1. Questions regards node js and java script concept, event loop, why node is single threaded, how event loop works in node js, database queries and previous work experience.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview experience was absolutely amazing and fantastic.
Advice:
Answer question with confidence.
Feel comfortable with interviewer.

Top BigStep Technologies Software Engineer Interview Questions and Answers

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 contiguous portion of an array and c... read more
View answer (1)

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 (197)

I applied via Company Website and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Customer success, USPs,
  • Q2. What is your USP
  • Q3. What you understand by customer support
  • Ans. 

    Customer support is the assistance provided to customers before, during, and after a purchase.

    • Providing timely and effective solutions to customer queries and issues

    • Ensuring customer satisfaction by addressing their concerns and feedback

    • Maintaining a positive and professional attitude towards customers

    • Building strong relationships with customers to promote loyalty and repeat business

    • Collaborating with other teams to re...

  • Answered by AI
  • Q4. What are the key features for good support
  • Ans. 

    Good support features include responsiveness, expertise, empathy, and clear communication.

    • Prompt response to customer inquiries

    • Expertise in the product or service being supported

    • Empathy towards the customer's issue

    • Clear and concise communication

    • Ability to troubleshoot and solve problems efficiently

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Get the basic knowledge of your field. Thoroughly take a look of what you have learnt and experience taught you.

Software Support Engineer Interview Questions asked at other Companies

Q1. How can technical support effectively address issues faced by numerous users and identify queries related to software?
View answer (1)

I applied via Campus Placement and was interviewed in Feb 2021. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Concepts of networking.
  • Q2. Concepts of Linux
  • Q3. Concepts of AWS
  • Q4. Oops Concepts and basic coding understanding

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview process was Smooth and Hr team helped a lot.

Cloud Devops Engineer Interview Questions asked at other Companies

Q1. What are the different types of EC2 instances based on their costs?
View answer (2)

I applied via Naukri.com and was interviewed in Oct 2021. There were 3 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare kotlin, java basics

Senior Android Developer Interview Questions asked at other Companies

Q1. Binary Array Sorting Problem Statement You are provided with a binary array, i.e., an array containing only 0s and 1s. Your task is to sort this binary array and return it after sorting. Input: The first line contains an integer ‘T’ denoti... read more
View answer (1)

I applied via Naukri.com and was interviewed in May 2021. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About Technical writing and technologies.

Interview Preparation Tips

Interview preparation tips for other job seekers - We should be always positive and learning attitude.

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)
Contribute & help others!
anonymous
You can choose to be anonymous

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, Coding Test and One-on-one Round.
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

Recently Viewed

INTERVIEWS

MosChip Technologies

No Interviews

JOBS

MosChip Technologies

No Jobs

JOBS

MosChip Technologies

No Jobs

JOBS

MosChip Technologies

No Jobs

INTERVIEWS

MosChip Technologies

No Interviews

LIST OF COMPANIES

SoCtronics Technologies

Overview

SALARIES

L&T Power

DESIGNATION

SALARIES

BigStep Technologies

LIST OF COMPANIES

L&T Power

Overview

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.4k Interviews
Infosys Interview Questions
3.6
 • 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
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
View all

BigStep Technologies Reviews and Ratings

based on 144 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 144 Reviews and Ratings
Software Engineer
60 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
40 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
25 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
18 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Support Engineer
9 salaries
unlock blur

₹0 L/yr - ₹0 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