Upload Button Icon Add office photos
Premium Employer

i

This company page is being actively managed by Seneca Global IT Services Team. If you also belong to the team, you can get access from here

Seneca Global IT Services Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Seneca Global IT Services Interview Questions and Answers

Updated 20 Jan 2025

Seneca Global IT Services Interview Experiences

Popular Designations

7 interviews found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Approached by Company and was interviewed in May 2023. 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 - Technical 

(1 Question)

  • Q1. Questions on python, it's internal workings and programming
Round 3 - Technical 

(1 Question)

  • Q1. Indepth on python again

Interview Preparation Tips

Interview preparation tips for other job seekers - Waste of time.

The HR gave heads up on the questions that were generally asked in the interview rounds in some detail. This was surprising and intriguing as no HR does that.

There were two rounds on python-indepth plus programming. Both of which I aced and had really good discussions with the interviewers.

Based on the discussions and my performance it was obvious that I had cracked it.

But to my dismay, got a message from the HR at a unusual time that they are not going forward with my profile as my performance was not upto the mark which made no sense.

And on seeing online interview reviews it was apparent that, this has been the pattern with most of them candidates.

Overall a weird interview experience.

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. About the current role
  • Q2. About the salary

Admin Executive Interview Questions asked at other Companies

Q1. Are you nearest to the Xpressbees? If yes, you are selected.
View answer (3)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Python OOPS concept and other libraries and framework
  • Q2. Sqlalchemy queries and db optimization

Technology Analyst Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (1)

I applied via Naukri.com and was interviewed in Sep 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 - One-on-one 

(3 Questions)

  • Q1. React how to reduce unnecessary re-renders
  • Ans. 

    Use React.memo, useCallback, and shouldComponentUpdate to reduce unnecessary re-renders.

    • Use React.memo to memoize functional components and prevent re-renders when props don't change.

    • Use useCallback to memoize functions and prevent re-creation on every render.

    • Use shouldComponentUpdate to prevent class components from re-rendering unnecessarily.

    • Avoid using inline functions in render methods as they create new function i...

  • Answered by AI
  • Q2. What is Polyfill and write polyfill for Array methods
  • Ans. 

    Polyfill is a code that provides modern functionality on older browsers.

    • Polyfills are used to fill the gap between modern and older browsers.

    • They are written in JavaScript and provide functionality that is not natively supported by the browser.

    • Polyfills can be used for Array methods like forEach, map, filter, reduce, etc.

    • Here's an example of a polyfill for the Array.prototype.forEach method: Array.prototype.forEach = f

  • Answered by AI
  • Q3. Write a program to remove all the duplicates an array
  • Ans. 

    Program to remove duplicates from an array

    • Create a new empty array

    • Loop through the original array and check if the element already exists in the new array

    • If not, add it to the new array

    • Return the new array

  • Answered by AI
Round 3 - Client Interview 

(6 Questions)

  • Q1. What is Prototype Inheritance
  • Ans. 

    Prototype Inheritance is a way of creating objects based on existing objects.

    • It allows objects to inherit properties and methods from other objects.

    • It is a feature of object-oriented programming in JavaScript.

    • It helps in creating efficient and reusable code.

    • Example: A 'Car' object can inherit properties and methods from a 'Vehicle' object.

  • Answered by AI
  • Q2. What is different web storages and Does Session storage available in other tab and new window?
  • Ans. 

    Web storages include local storage, session storage, and cookies. Session storage is not available in other tabs or windows.

    • Local storage persists even after the browser is closed, while session storage is cleared when the session ends.

    • Cookies are used for storing small amounts of data that can be accessed by both the server and client.

    • Session storage is only available within the same tab or window where it was created...

  • Answered by AI
  • Q3. What is IndexDB and how to work with it?
  • Ans. 

    IndexDB is a client-side storage system for web applications.

    • It allows storing data in key-value pairs.

    • It is an alternative to cookies and local storage.

    • It supports transactions for atomic operations.

    • It can store large amounts of structured data.

    • It can be accessed using JavaScript APIs.

  • Answered by AI
  • Q4. What are web sockets and how it works
  • Ans. 

    Web sockets are a communication protocol that allows real-time bidirectional communication between a client and a server.

    • Web sockets use a persistent connection between the client and server

    • They allow for real-time data transfer without the need for constant HTTP requests

    • Web sockets are commonly used in chat applications, online gaming, and stock trading platforms

  • Answered by AI
  • Q5. How to add a custom headers to an Axios calls
  • Ans. 

    To add custom headers to an Axios call, use the headers property in the config object.

    • Create a config object with the headers property

    • Pass the config object as the second argument to the Axios call

    • Example: axios.get(url, { headers: { 'Authorization': 'Bearer token' } })

  • Answered by AI
  • Q6. What is Event Bubbling and Event Capturing
  • Ans. 

    Event bubbling and capturing are two ways of propagating events in the DOM tree.

    • Event bubbling is the process of an event propagating from the innermost element to the outermost element in the DOM tree.

    • Event capturing is the opposite of event bubbling, where the event is captured at the outermost element and propagated to the innermost element.

    • Event listeners can be added to either the capturing or bubbling phase using...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Seneca Global IT Services UI UX Architect interview:
  • Inheritance
Interview preparation tips for other job seekers - Prepare on the core concepts of JavaScript and React JS.

Skills evaluated in this interview

Top Seneca Global IT Services UI UX Architect Interview Questions and Answers

Q1. What is different web storages and Does Session storage available in other tab and new window?
View answer (1)

UI UX Architect Interview Questions asked at other Companies

Q1. What is different web storages and Does Session storage available in other tab and new window?
View answer (1)

Seneca Global IT Services interview questions for popular designations

 Software Engineer

 (2)

 HR Consultant

 (1)

 Technology Analyst

 (1)

 Senior Software Engineer

 (1)

 UI UX Architect

 (1)

 Admin Executive

 (1)

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

Round 1 - Assignment 

Online assesment having python mcq questions on topic like oop, basic python datatypes etc.

Round 2 - Technical 

(1 Question)

  • Q1. Write a python code to identify and arrange non zero and negative integers in a list
  • Ans. 

    Python code to arrange non zero and negative integers in a list

    • Iterate through the list and separate non zero and negative integers

    • Sort the non zero and negative integers separately

    • Combine the sorted lists to get the final result

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Python, Flask, Database technical discussion
Round 4 - HR 

(1 Question)

  • Q1. Salary negotiation, company fit etc

Skills evaluated in this interview

Top Seneca Global IT Services Software Engineer Interview Questions and Answers

Q1. Write a python code to identify and arrange non zero and negative integers in a list
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 (218)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2023. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Explain about memory management
  • Ans. 

    Memory management is the process of controlling and coordinating computer memory, assigning portions called blocks to various programs.

    • Memory management involves allocating memory to programs when needed and freeing up memory when no longer needed.

    • It helps prevent memory leaks and optimize memory usage.

    • Common memory management techniques include garbage collection, manual memory management, and automatic memory managem...

  • Answered by AI
  • Q2. Explain about UITableViews
  • Ans. 

    UITableViews are a type of view in iOS development used to display data in a scrollable list format.

    • UITableViews are commonly used in iOS apps to display lists of data, such as contacts, messages, or settings.

    • They consist of rows and sections, with each row representing an item of data.

    • UITableViews can be customized with different cell types, styles, and layouts.

    • They support features like scrolling, selection, editing,...

  • Answered by AI
  • Q3. Explain Lazy variable
  • Ans. 

    Lazy variable is a variable that is not evaluated until it is needed.

    • Lazy variables are used to defer the initialization of a variable until it is actually accessed or needed.

    • They can help improve performance by avoiding unnecessary computations.

    • Lazy variables are commonly used in functional programming languages like Swift and Kotlin.

  • Answered by AI
  • Q4. Explain about cocoa pods
  • Ans. 

    CocoaPods is a dependency manager for Swift and Objective-C projects.

    • CocoaPods is used to easily manage and install third-party libraries in iOS projects.

    • It uses a Podfile to specify project dependencies and automatically downloads and integrates them.

    • CocoaPods simplifies the process of adding and updating libraries in Xcode projects.

    • Example: 'pod 'Alamofire'' adds the Alamofire networking library to a project.

  • Answered by AI
  • Q5. Explain about XCTest
  • Ans. 

    XCTest is a testing framework provided by Apple for writing unit tests for Swift and Objective-C code.

    • XCTest is integrated into Xcode and allows for writing test methods within test classes.

    • Test methods are prefixed with the word 'test' and can be used to verify the behavior of code.

    • XCTest provides assertions like XCTAssert, XCTAssertTrue, XCTAssertFalse, XCTAssertEqual, etc. for validating test results.

    • Test cases can ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Seneca Global IT Services Software Engineer interview:
  • Swift
  • coredata

Skills evaluated in this interview

Top Seneca Global IT Services Software Engineer Interview Questions and Answers

Q1. Write a python code to identify and arrange non zero and negative integers in a list
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 (218)

Jobs at Seneca Global IT Services

View all

I applied via Campus Placement and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Group Discussion 

The GD was good.

Round 2 - One-on-one 

(1 Question)

  • Q1. Hr challenges in 2020.
Round 3 - HR 

(4 Questions)

  • Q1. What is your family background?
  • Q2. Why should we hire you?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Well, Very bad experience with the people over there. Highly recommend not to join such organisation where your job has no security. One day you will wake and see that you are out of the company. Biggest regret about my life is to accept the offer.

HR Consultant Interview Questions asked at other Companies

Q1. How would you use linked in and naukri to source
View answer (2)

Interview questions from similar companies

I applied via Referral and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Coding Test 

If you are a fresher , then this is for you else almost no coding test for experienced candidates.

Round 2 - One-on-one 

(1 Question)

  • Q1. Javascript basics, Angular react general questions depends upon profile.
Round 3 - Behavioral 

(1 Question)

  • Q1. They asked general questions related to some hectic situation faced in previous company / project..

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm . Clear your basics . That's it.

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 70 Minutes
Round difficulty - Hard

  • Q1. 

    Candies Distribution Problem Statement

    Prateek is a kindergarten teacher with a mission to distribute candies to students based on their performance. Each student must get at least one candy, and if two s...

  • Ans. 

    The task is to distribute candies to students based on their performance while minimizing the total candies distributed.

    • Create an array to store the minimum candies required for each student.

    • Iterate through the students' ratings array to determine the minimum candies needed based on the adjacent ratings.

    • Consider both left-to-right and right-to-left passes to ensure fair distribution.

    • Keep track of the total candies dist

  • Answered by AI
  • Q2. 

    Merge Sort Problem Statement

    You are given a sequence of numbers, ARR. Your task is to return a sorted sequence of ARR in non-descending order using the Merge Sort algorithm.

    Explanation:

    The Merge Sort...

  • Ans. 

    Implement Merge Sort algorithm to sort a sequence of numbers in non-descending order.

    • Use Divide and Conquer approach to recursively divide the input array into two halves.

    • Merge the sorted halves to produce a completely sorted array.

    • Ensure the implementation handles the constraints specified in the problem statement.

    • Example: For input [3, 1, 4, 1, 5], the output should be [1, 1, 3, 4, 5].

  • Answered by AI

Interview Preparation Tips

Eligibility criteria8CGPAThink Future Technologies interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming, apti , programming language , SETime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Practice Atleast 250 Questions
Tip 2 : Do atleast 2 projects

Application resume tips for other job seekers

Tip 1 : Do not put false things on resume.
Tip 2 : Have some projects on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

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

I appeared for an interview before Jan 2024.

Round 1 - Aptitude Test 

Logical reasoning questions (1-1.5 hours)

Round 2 - Coding Test 

DSA Questions(2 hours)

Round 3 - HR 

(2 Questions)

  • Q1. How soon I can start?
  • Q2. I am flexible with work timings?

Seneca Global IT Services Interview FAQs

How many rounds are there in Seneca Global IT Services interview?
Seneca Global IT Services interview process usually has 2-3 rounds. The most common rounds in the Seneca Global IT Services interview process are Technical, One-on-one Round and HR.
How to prepare for Seneca Global IT Services 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 Seneca Global IT Services. The most common topics and skills that interviewers at Seneca Global IT Services expect are Python, AWS, Javascript, Java and SQL.
What are the top questions asked in Seneca Global IT Services interview?

Some of the top questions asked at the Seneca Global IT Services interview -

  1. What is different web storages and Does Session storage available in other tab ...read more
  2. What is Polyfill and write polyfill for Array meth...read more
  3. React how to reduce unnecessary re-rend...read more

Tell us how to improve this page.

Seneca Global IT Services Interview Process

based on 5 interviews

Interview experience

3.2
  
Average
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 49 Interviews
IT By Design Interview Questions
3.6
 • 40 Interviews
ConsultAdd Interview Questions
3.5
 • 36 Interviews
Junglee Games Interview Questions
3.1
 • 32 Interviews
View all

Seneca Global IT Services Reviews and Ratings

based on 100 reviews

4.1/5

Rating in categories

4.1

Skill development

4.2

Work-life balance

3.9

Salary

4.0

Job security

4.1

Company culture

3.7

Promotions

4.2

Work satisfaction

Explore 100 Reviews and Ratings
IBM I Support Analyst

Hyderabad / Secunderabad

2-5 Yrs

Not Disclosed

Python Senior Software Engineer

Hyderabad / Secunderabad

5-8 Yrs

₹ 8-21 LPA

Explore more jobs
Software Engineer
82 salaries
unlock blur

₹3.8 L/yr - ₹11.5 L/yr

Senior Software Engineer
82 salaries
unlock blur

₹7.8 L/yr - ₹27 L/yr

Technical Analyst
48 salaries
unlock blur

₹14.2 L/yr - ₹35 L/yr

Information Technology Support Engineer
37 salaries
unlock blur

₹3.2 L/yr - ₹6 L/yr

Senior Technical Analyst
32 salaries
unlock blur

₹17.6 L/yr - ₹38.2 L/yr

Explore more salaries
Compare Seneca Global IT Services with

Maxgen Technologies

4.5
Compare

Value Point Systems

3.7
Compare

JoulestoWatts Business Solutions

2.9
Compare

F1 Info Solutions and Services

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