i
Seneca Global IT Services
Filter interviews by
I applied via Approached by Company and was interviewed in Feb 2024. There was 1 interview round.
I applied via Approached by Company and was interviewed in May 2023. There were 2 interview rounds.
I applied via Naukri.com and was interviewed in Sep 2022. There were 3 interview rounds.
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...
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
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
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.
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...
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.
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
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' } })
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...
I applied via Naukri.com and was interviewed before Sep 2023. There were 4 interview rounds.
Online assesment having python mcq questions on topic like oop, basic python datatypes etc.
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
Seneca Global IT Services interview questions for popular designations
I applied via Naukri.com and was interviewed before May 2023. There was 1 interview round.
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...
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,...
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.
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.
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 ...
Get interview-ready with Top Seneca Global IT Services Interview Questions
I applied via campus placement at CMR Institute of Technology, Ranga Reddy and was interviewed before Mar 2021. There were 3 interview rounds.
The GD was good.
Top trending discussions
I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.
posted on 17 Dec 2024
I applied via Instahyre and was interviewed in Nov 2024. There was 1 interview round.
Use SQL query to count number of reportees for each manager and filter out those with atleast 5 reportees.
Write a SQL query to count number of reportees for each manager using GROUP BY clause
Add HAVING clause to filter out managers with atleast 5 reportees
Example: SELECT managerId, COUNT(id) AS num_reportees FROM table_name GROUP BY managerId HAVING num_reportees >= 5
Use libraries like pandas and dask to efficiently manage large datasets in Python.
Use pandas library for data manipulation and analysis.
Use dask library for parallel computing and out-of-core processing.
Optimize memory usage by loading data in chunks or using data types efficiently.
Consider using cloud services like AWS S3 or Google BigQuery for storing and processing large datasets.
Some commonly used Python libraries for Data Analysts are Pandas, NumPy, Matplotlib, and Scikit-learn.
Pandas - used for data manipulation and analysis
NumPy - used for numerical computing and working with arrays
Matplotlib - used for data visualization
Scikit-learn - used for machine learning and data mining
I applied via Naukri.com and was interviewed in Sep 2024. There were 2 interview rounds.
Agile values include individuals and interactions over processes and tools, while Scrum values include commitment, courage, focus, openness, and respect.
Agile values prioritize individuals and interactions over processes and tools
Scrum values include commitment, courage, focus, openness, and respect
Scrum ceremonies include Sprint Planning, Daily Standup, Sprint Review, and Sprint Retrospective
Story points are a unit of...
As a project manager, I prepare various documents such as project plans, schedules, budgets, risk assessments, and progress reports. I contribute by leading the team, managing resources, and ensuring project success.
Prepare project plans outlining scope, objectives, deliverables, and timelines
Create schedules to allocate tasks and track progress
Develop budgets to manage project costs effectively
Conduct risk assessments...
Provide clear expectations, offer support and training, provide feedback and recognition, set goals and milestones.
Clearly communicate expectations and goals to the resource.
Offer support and training to help the resource improve their skills and knowledge.
Provide regular feedback and recognition for progress made.
Set specific goals and milestones to track improvement.
Create a development plan with the resource to addr...
Scrum of Scrums is a scaled agile framework where multiple Scrum teams coordinate their work. PI planning is a key event in SAFe where teams plan their work for the upcoming Program Increment.
Scrum of Scrums involves representatives from each Scrum team meeting regularly to discuss dependencies and progress.
PI planning is a two-day event where teams align on their objectives, dependencies, and priorities for the upcomi...
I applied via Campus Placement and was interviewed in Sep 2024. There were 4 interview rounds.
Pretty standard GD on topics around working remotely and country's macroeconomic
Derivative and alternative investments involve complex financial instruments and strategies beyond traditional stocks and bonds.
Derivatives are financial contracts whose value is derived from an underlying asset, index, or rate. Examples include options, futures, and swaps.
Alternative investments are non-traditional assets such as private equity, hedge funds, real estate, and commodities.
Both derivative and alternative...
Interview experience
based on 92 reviews
Rating in categories
Software Engineer
87
salaries
| ₹3.8 L/yr - ₹9.8 L/yr |
Senior Software Engineer
83
salaries
| ₹7.8 L/yr - ₹27 L/yr |
Technical Analyst
45
salaries
| ₹12 L/yr - ₹30 L/yr |
Information Technology Support Engineer
37
salaries
| ₹3.2 L/yr - ₹6 L/yr |
Senior Technical Analyst
31
salaries
| ₹17.6 L/yr - ₹38.2 L/yr |
TCS
Infosys
Wipro
HCLTech