Upload Button Icon Add office photos
Engaged Employer

i

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

Bigscal Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Bigscal Technologies Interview Questions and Answers

Updated 23 Sep 2024

Bigscal Technologies Interview Experiences

Popular Designations

2 interviews found

I applied via Campus Placement and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Introduction?
  • Q2. Oops concepts
  • Q3. SQL questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Yes ...This is important question all type interviews

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 (43)
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Program give on the topic like intervals overlapping
  • Q2. Input Aaabbcc. Output abc. Input programs output progams strings print karo index value is given

Interview Preparation Tips

Interview preparation tips for other job seekers - Tr question any language
Hr

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

Jobs at Bigscal Technologies

View all

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Python file handling, input,output, in a file, Sql joins, list sort in python, basics of GIS, Web service how to test

Interview Preparation Tips

Interview preparation tips for other job seekers - This is hust basics not deep dive, strog ur basics to crack

I applied via Campus Placement and was interviewed before Feb 2021. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Define marker interface
  • Ans. 

    A marker interface is an interface with no methods used to mark a class as having a particular property or behavior.

    • Marker interfaces are used to provide metadata about a class.

    • They are often used in frameworks and libraries to indicate that a class should be treated in a special way.

    • Examples include Serializable, Cloneable, and Remote interfaces in Java.

    • Marker interfaces can also be used to enforce design patterns, su

  • Answered by AI
  • Q2. Define thread concurrency
  • Ans. 

    Thread concurrency refers to multiple threads executing simultaneously in a program.

    • Concurrency allows for efficient use of resources and can improve performance.

    • However, it can also lead to race conditions and other synchronization issues.

    • Synchronization mechanisms like locks and semaphores can be used to manage concurrency.

    • Examples of concurrent programming languages include Java and Python's threading module.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up with your basics on JAVA

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Apr 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 - Aptitude Test 

25 MCQ questions online with time limit

Round 3 - Assignment 

Create webapp . Frontend, Backend , data encryption

I applied via Referral and was interviewed before Jan 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Which technology are you using, is this latest?
  • Ans. 

    We are using a variety of technologies, including some of the latest ones.

    • We are using React for our front-end development.

    • We are also using Node.js for our back-end development.

    • We are using Docker for containerization.

    • We are using Kubernetes for orchestration.

    • We are using AWS for cloud hosting.

    • We are constantly evaluating new technologies to see if they can improve our development process.

  • Answered by AI
  • Q2. If not then which technology can we use instead of this?
  • Ans. 

    It depends on the specific requirements and constraints of the project.

    • Consider the project's goals and objectives

    • Evaluate the available technologies and their capabilities

    • Assess the project's budget and timeline

    • Consult with stakeholders and experts in the field

    • Examples: React vs Angular, MySQL vs MongoDB, Java vs Python

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi,
Listen carefully and speak fluently.

I applied via Recruitment Consulltant and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. MCQ on SQL Queries and Core Java
Round 2 - One-on-one 

(1 Question)

  • Q1. Basics of SQL and Java

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare more on Database Side and Focus more on explaining the details rather than the speed of answering
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Puzzles, speed, logical questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Self introduction
  • Q2. Background and coding knowledge
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 before Jun 2022. There were 3 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 

C java angular data coding test

Round 3 - HR 

(1 Question)

  • Q1. Back ground check and certificate verification
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. List and tuple differences
  • Ans. 

    List is mutable, tuple is immutable in Python.

    • Lists are mutable, meaning their elements can be changed after creation.

    • Tuples are immutable, meaning their elements cannot be changed after creation.

    • Lists are defined using square brackets [], tuples using parentheses ().

    • Lists are typically used for collections of similar items, tuples for fixed collections of dissimilar items.

  • Answered by AI
  • Q2. Generators in python
  • Ans. 

    Generators in Python are functions that allow you to iterate over a sequence of items without storing them all in memory at once.

    • Generators are created using a function with 'yield' instead of 'return'.

    • They are used to generate a sequence of values lazily, one at a time.

    • Generators are memory efficient as they do not store all values in memory at once.

    • Example: def my_generator(): for i in range(5): yield i

    • Example: ...

  • Answered by AI

Skills evaluated in this interview

Bigscal Technologies Interview FAQs

How many rounds are there in Bigscal Technologies interview?
Bigscal Technologies interview process usually has 1 rounds. The most common rounds in the Bigscal Technologies interview process are Technical.
How to prepare for Bigscal 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 Bigscal Technologies. The most common topics and skills that interviewers at Bigscal Technologies expect are Javascript, Google Maps, HTML, Front End and Ajax.
What are the top questions asked in Bigscal Technologies interview?

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

  1. Input Aaabbcc. Output abc. Input programs output progams strings print kar...read more
  2. Program give on the topic like intervals overlapp...read more
  3. Oops conce...read more

Tell us how to improve this page.

Bigscal Technologies Interview Process

based on 3 interviews

Interview experience

3.3
  
Average
View more

Interview Questions from Similar Companies

HyScaler Interview Questions
4.5
 • 92 Interviews
Pitney Bowes Interview Questions
3.7
 • 21 Interviews
DynPro Interview Questions
3.9
 • 20 Interviews
VHS Consulting Interview Questions
3.7
 • 14 Interviews
Apex CoVantage Interview Questions
3.1
 • 9 Interviews
View all

Bigscal Technologies Reviews and Ratings

based on 26 reviews

3.1/5

Rating in categories

3.5

Skill development

3.1

Work-life balance

3.2

Salary

2.8

Job security

3.0

Company culture

2.7

Promotions

3.2

Work satisfaction

Explore 26 Reviews and Ratings
React Native Developer

Surat

1-2 Yrs

₹ 2.52-4 LPA

Asp.Net Developer

Surat

2-4 Yrs

Not Disclosed

Flutter Developer

Surat

1-3 Yrs

Not Disclosed

Explore more jobs
Software Developer
12 salaries
unlock blur

₹3 L/yr - ₹5.4 L/yr

Software Engineer
6 salaries
unlock blur

₹2.4 L/yr - ₹7 L/yr

Node Js Backend Developer
6 salaries
unlock blur

₹3.6 L/yr - ₹8 L/yr

Reactjs Developer
5 salaries
unlock blur

₹1 L/yr - ₹4.8 L/yr

Node JS Developer
5 salaries
unlock blur

₹3 L/yr - ₹5 L/yr

Explore more salaries
Compare Bigscal Technologies with

Accel Frontline

4.0
Compare

Northcorp Software

4.3
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.7
Compare

HyScaler

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