Upload Button Icon Add office photos

Filter interviews by

BigIOTA Analytics LLP Senior Software Development Engineer Interview Questions and Answers

Updated 25 Nov 2024

BigIOTA Analytics LLP Senior Software Development Engineer Interview Experiences

1 interview 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 before Nov 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic opps questions

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

An online coding test at coderByte. Medium level question.

Round 2 - Technical 

(2 Questions)

  • Q1. Find sum of distinct elements from two given array.
  • Ans. 

    Sum of distinct elements from two arrays

    • Create a set to store distinct elements from both arrays

    • Iterate through each array and add elements to the set

    • Calculate the sum of elements in the set

  • Answered by AI
  • Q2. Discussion around Java,Spring-boot.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Basics of python and Networking

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy to crack technicals as they don't have enough skill set in senior level
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Javascript based coding question
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 Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Duration 1 hr general aptitude topics

Round 2 - Coding Test 

Duration 1hr subject related coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - good freshers can give a try
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

30 mins Aptitude Question

Round 2 - Coding Test 

30 mins - 3 Coding Question

Round 3 - Technical 

(2 Questions)

  • Q1. Describe Rest API
  • Ans. 

    Rest API is a set of rules and conventions for building and interacting with web services using HTTP methods.

    • Rest API stands for Representational State Transfer Application Programming Interface.

    • It uses standard HTTP methods like GET, POST, PUT, DELETE to perform CRUD operations.

    • RESTful APIs use URLs to access resources, and return data in JSON or XML format.

    • Stateless communication allows for scalability and flexibilit...

  • Answered by AI
  • Q2. What is various Response code. Diffenrence b/w 200 & 201, 400 & 403
  • Ans. 

    Response codes indicate the status of a HTTP request. 200 & 201 are success codes, while 400 & 403 are client error codes.

    • 200 - OK: Request was successful

    • 201 - Created: Request was successful and a new resource was created

    • 400 - Bad Request: The server cannot process the request due to a client error

    • 403 - Forbidden: The server understood the request, but refuses to authorize it

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(15 Questions)

  • Q1. Oops Concept in c#
  • Ans. 

    Oops concept in C# refers to Object-Oriented Programming principles like inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation hides the internal state of an object and only exposes necessary information.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • Abstraction focuses on...

  • Answered by AI
  • Q2. Manage and unmanaged code
  • Q3. Dependency injection
  • Q4. Filter and its type
  • Ans. 

    A filter is a tool used to select specific data from a larger set based on certain criteria.

    • Filters can be used in various programming languages and databases to narrow down results.

    • Types of filters include text filters, numeric filters, date filters, and custom filters.

    • Examples of filters include WHERE clause in SQL, filter() function in Python, and filter() method in JavaScript.

  • Answered by AI
  • Q5. View in sql server
  • Ans. 

    A view in SQL Server is a virtual table that contains the result set of a SELECT statement.

    • Views are used to simplify complex queries by storing them as a virtual table.

    • Views can be used to restrict access to specific columns or rows of a table.

    • Views can be created using the CREATE VIEW statement.

    • Example: CREATE VIEW vwEmployee AS SELECT FirstName, LastName FROM Employees;

  • Answered by AI
  • Q6. Primary key vs unique key
  • Ans. 

    Primary key uniquely identifies a record in a table, while unique key ensures uniqueness but allows null values.

    • Primary key enforces uniqueness and not null constraint on a column

    • Primary key can consist of multiple columns

    • Unique key enforces uniqueness but allows null values

    • Unique key can be applied to multiple columns as well

  • Answered by AI
  • Q7. Procedure vs function
  • Ans. 

    Procedures are a set of instructions that perform a specific task, while functions return a value after performing a task.

    • Procedures do not return a value, while functions do.

    • Functions can be called within expressions, while procedures cannot.

    • Functions are more versatile and reusable compared to procedures.

  • Answered by AI
  • Q8. Trigger in sql server
  • Ans. 

    A trigger in SQL Server is a special type of stored procedure that automatically executes when certain events occur in a database.

    • Triggers can be used to enforce business rules, audit changes, or replicate data.

    • There are two main types of triggers in SQL Server: DML triggers and DDL triggers.

    • DML triggers fire in response to data manipulation language (DML) events like INSERT, UPDATE, and DELETE.

    • DDL triggers fire in res...

  • Answered by AI
  • Q9. Interface in c#
  • Ans. 

    Interface in C# is a reference type that defines a contract for classes to implement certain methods and properties.

    • Interfaces cannot have implementation, only method signatures and properties.

    • Classes can implement multiple interfaces in C#.

    • Interfaces are used to achieve abstraction and multiple inheritance in C#.

    • Example: public interface IShape { void Draw(); }

    • Example: public class Circle : IShape { public void Draw()

  • Answered by AI
  • Q10. Abstract class vs interface
  • Ans. 

    Abstract class is a class that can have both abstract and non-abstract methods, while interface is a contract that defines methods that must be implemented by a class.

    • Abstract class can have constructor, fields, and methods, while interface cannot have any implementation.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Abstract classes are used when some common functionality needs ...

  • Answered by AI
  • Q11. Partial view in.det
  • Ans. 

    Partial view in ASP.NET MVC allows reusing common UI elements across multiple views.

    • Partial views are like reusable components that can be included in multiple views

    • They help in reducing code duplication and improving maintainability

    • Partial views are rendered using Html.Partial or Html.RenderPartial methods

  • Answered by AI
  • Q12. Method overloading vs overriding
  • Ans. 

    Method overloading is having multiple methods in the same class with the same name but different parameters. Method overriding is redefining a method in a subclass with the same name and parameters as in the superclass.

    • Method overloading involves multiple methods with the same name but different parameters.

    • Method overriding involves redefining a method in a subclass with the same name and parameters as in the superclas...

  • Answered by AI
  • Q13. Union vs union all
  • Ans. 

    Union combines and removes duplicates, while union all combines all rows including duplicates.

    • Union removes duplicates, while union all includes duplicates.

    • Union is slower as it has to remove duplicates, while union all is faster.

    • Use union when you want to remove duplicates, use union all when duplicates are acceptable.

  • Answered by AI
  • Q14. Foreign key In sql
  • Ans. 

    Foreign key in SQL is a field in a table that links to a primary key in another table, enforcing referential integrity.

    • Foreign key constraints ensure data consistency between related tables

    • Foreign key values must exist in the referenced table's primary key column

    • Foreign key can be used to establish relationships between tables

  • Answered by AI
  • Q15. Constructor in c#
  • Ans. 

    Constructor in C# is a special type of method that is automatically called when an instance of a class is created.

    • Constructors have the same name as the class and do not have a return type.

    • They can be used to initialize the data members of the class.

    • Constructors can be overloaded to have multiple versions with different parameters.

    • Example: public class Person { public Person(string name) { this.Name = name; } }

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about your project
  • Q2. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Create a good resume and practice common interview questions and improve your logic using pattern printing and continuous learning.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. SQL queries like search last element
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I was interviewed in Nov 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. PowerApps question
  • Q2. Name of client, what is
  • Ans. 

    The name of the client is the entity or organization that is receiving the software engineering services.

    • Client name is typically a company or individual who has requested the development of a software product.

    • It is important to maintain confidentiality and professionalism when discussing client names.

    • Examples of client names could be Google, Microsoft, Apple, etc.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Job based on project, If they have no project then no job.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Only one written test consists of aptitude questions and one coding question. coding question is easy-moderate

Round 2 - Technical 

(1 Question)

  • Q1. There are 2 technical rounds .In first round they have covered Java theory concepts and oops basic questions and asked me to write any sorting code and a SQL query that is print who's salary lies between 1...
Round 3 - HR 

(1 Question)

  • Q1. About yourself, Where you are after 5 years,Are you ready to relocate,about company and some basic hr questions.

BigIOTA Analytics LLP Interview FAQs

How many rounds are there in BigIOTA Analytics LLP Senior Software Development Engineer interview?
BigIOTA Analytics LLP interview process usually has 1 rounds. The most common rounds in the BigIOTA Analytics LLP interview process are Technical.

Tell us how to improve this page.

Interview Questions from Similar Companies

Mu Sigma Interview Questions
2.6
 • 226 Interviews
Tiger Analytics Interview Questions
3.7
 • 218 Interviews
Fractal Analytics Interview Questions
4.0
 • 204 Interviews
AbsolutData Interview Questions
3.6
 • 9 Interviews
Algonomy Interview Questions
3.9
 • 9 Interviews
View all
RPA Developer
21 salaries
unlock blur

₹1.8 L/yr - ₹8.4 L/yr

Software Engineer
7 salaries
unlock blur

₹3 L/yr - ₹8.5 L/yr

Software Developer
4 salaries
unlock blur

₹2.2 L/yr - ₹5 L/yr

Information Technology Recruiter
4 salaries
unlock blur

₹3 L/yr - ₹3.5 L/yr

Senior RPA Developer
3 salaries
unlock blur

₹4 L/yr - ₹9.6 L/yr

Explore more salaries
Compare BigIOTA Analytics LLP with

Fractal Analytics

4.0
Compare

Mu Sigma

2.6
Compare

Tiger Analytics

3.7
Compare

LatentView Analytics

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