Add office photos
Employer?
Claim Account for FREE

Nous Infosystems

3.9
based on 346 Reviews
Video summary
Filter interviews by

20+ Rupa Interview Questions and Answers

Updated 24 Mar 2025

Q1. Write code snippet to find 3rd largest salary

Ans.

Code snippet to find 3rd largest salary

  • Sort the salaries in descending order

  • Skip duplicates while iterating through the sorted salaries

  • Return the third unique salary

Add your answer

Q2. HSBTM and has many though difference

Add your answer

Q3. What are OOPs concepts

Ans.

OOPs concepts refer to Object-Oriented Programming principles such as inheritance, encapsulation, polymorphism, and abstraction.

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

  • Encapsulation: Bundling data and methods that operate on the data into a single unit.

  • Polymorphism: Ability to present the same interface for different data types.

  • Abstraction: Hiding the complex implementation details and showing only the necessary features.

Add your answer

Q4. What types of threads

Ans.

Types of threads include user threads and kernel threads.

  • User threads are managed by user-level threads library and are created by the application.

  • Kernel threads are managed by the operating system and are created and managed by the kernel.

  • Examples include POSIX threads (pthread) for user threads and Windows threads for kernel threads.

Add your answer
Discover Rupa interview dos and don'ts from real experiences

Q5. What is Garbage Collection and how does it works?

Ans.

Garbage Collection is an automatic memory management process that reclaims memory occupied by objects no longer in use.

  • Garbage Collection identifies and frees memory that is no longer referenced by the program.

  • It helps prevent memory leaks, which occur when memory is allocated but not released.

  • Common algorithms include Mark-and-Sweep, Reference Counting, and Generational Collection.

  • For example, in Java, the JVM automatically handles garbage collection, allowing developers to ...read more

Add your answer

Q6. What is a lambda function, write a lambda function

Ans.

A lambda function is an anonymous function that can have any number of parameters but can only have one expression.

  • Lambda functions are used for creating small, one-time use functions without the need to define a formal function.

  • Lambda functions are written using the lambda keyword followed by parameters and an expression.

  • Example: lambda x: x*2 defines a lambda function that takes a parameter x and returns x multiplied by 2.

Add your answer
Are these interview questions helpful?

Q7. Difference between in-memory and distributed caching in Asp.Net Core?

Add your answer

Q8. 1.Appium architecture . 2.Appium 1x to 2x differences. 3. Android and IOS difference.

Ans.

Appium is an open-source tool for automating mobile applications, with architecture supporting both Android and iOS platforms.

  • Appium architecture includes client libraries, Appium server, and mobile devices/emulators.

  • Appium 1x to 2x differences include improved stability, new commands, and enhanced support for iOS simulators.

  • Android and iOS differences in Appium testing involve different locator strategies, capabilities, and automation frameworks.

Add your answer
Share interview questions and help millions of jobseekers 🌟

Q9. tell me about your self and testing concepts

Ans.

I am a dedicated Test Engineer with a strong understanding of testing concepts and methodologies.

  • I have experience in creating test plans, test cases, and executing tests to ensure software quality.

  • I am proficient in using testing tools such as Selenium, JIRA, and TestRail.

  • I have a solid understanding of different types of testing like functional, regression, and performance testing.

  • I am skilled in identifying and reporting bugs, and working closely with developers to resolve...read more

Add your answer

Q10. Estimation and proposal for large deal

Ans.

Estimation and proposal for large deal

  • Understand client requirements and scope of work

  • Analyze resources required and estimate costs

  • Prepare a detailed proposal with timelines and deliverables

  • Present proposal to client and negotiate terms

  • Ensure project team is aligned with proposal and deliverables

Add your answer

Q11. Projects in Power BI Description

Ans.

Power BI is a business analytics service by Microsoft that provides interactive visualizations and business intelligence capabilities.

  • Power BI allows users to connect to a wide range of data sources

  • Users can create custom visualizations and reports

  • Power BI offers a variety of features such as data modeling, data transformation, and data analysis

  • Projects in Power BI can range from simple dashboards to complex data models

  • Examples of Power BI projects include sales dashboards, f...read more

Add your answer

Q12. Time Intelligence functions of DAX

Ans.

Time Intelligence functions in DAX are used to analyze data over time periods.

  • DAX provides functions like TOTALYTD, SAMEPERIODLASTYEAR, DATESYTD, etc.

  • These functions help in calculating values for a specific time period or comparing values with the same period in the previous year.

  • Time Intelligence functions are commonly used in financial and sales analysis.

  • For example, TOTALYTD can be used to calculate the total sales for a year up to a specific date.

Add your answer

Q13. Coding samples to predict the outcome

Ans.

Using coding samples to predict outcomes is a common practice in software testing.

  • Utilize machine learning algorithms to analyze historical data and predict future outcomes

  • Implement regression analysis to identify patterns and trends in the data

  • Use decision trees or neural networks to classify data and make predictions

  • Evaluate the accuracy of the predictions using metrics like precision, recall, and F1 score

Add your answer

Q14. Mobile architecture for Android and ios

Ans.

Mobile architecture for Android and iOS involves designing and implementing the software and hardware components of the mobile devices.

  • The architecture should be scalable and flexible to accommodate future updates and changes.

  • It should also prioritize security and privacy of user data.

  • For Android, the architecture should follow the Model-View-Controller (MVC) pattern, while for iOS, it should follow the Model-View-ViewModel (MVVM) pattern.

  • The architecture should also consider...read more

Add your answer

Q15. Filtering in Power Bi

Ans.

Filtering in Power BI allows users to refine data displayed in visuals and reports.

  • Filters can be applied to individual visuals or to the entire report.

  • Filters can be based on specific values, ranges, or conditions.

  • Filters can be created using various types of visuals, such as slicers, dropdowns, or checkboxes.

  • Filters can also be created using DAX expressions.

  • Filters can be saved and reused in other reports or visuals.

Add your answer

Q16. Bookmarking in Power BI

Ans.

Bookmarking in Power BI allows users to save and share specific views of their data.

  • Bookmarks capture the current state of a report, including filters, slicers, and visuals.

  • Users can create, edit, and delete bookmarks to save and share specific views of their data.

  • Bookmarks can be used to create interactive presentations or to provide a guided experience for users.

  • Bookmarks can also be used to create drill-through experiences, allowing users to navigate from a summary view to...read more

Add your answer

Q17. Difference between setTimeout , setInterval , setImmediate ?

Ans.

setTimeout executes a function once after a specified time, setInterval executes a function repeatedly at specified intervals, setImmediate executes a function immediately after the current event loop.

  • setTimeout executes a function once after a specified delay.

  • setInterval executes a function repeatedly at specified intervals.

  • setImmediate executes a function immediately after the current event loop.

  • Example: setTimeout(() => { console.log('Hello'); }, 1000);

  • Example: setInterval...read more

Add your answer

Q18. What isIDisposable method

Ans.

IDisposable method is used to release unmanaged resources in .NET applications.

  • IDisposable interface is used to release unmanaged resources like file handles, database connections, etc.

  • It contains a single method Dispose() which should be implemented to release resources.

  • It is recommended to use IDisposable along with using statement for proper resource management.

  • Example: FileStream class in C# implements IDisposable interface to release file handles.

Add your answer

Q19. Angular flow of execution

Ans.

Angular follows a single-threaded, event-driven model for executing code.

  • Angular uses Zones to manage the flow of execution and handle asynchronous tasks.

  • The change detection mechanism in Angular triggers the flow of execution by checking for changes in the application state.

  • Angular's dependency injection system controls the flow of execution by providing services and components when needed.

Add your answer

Q20. SUMX function in DAX

Ans.

SUMX is a DAX function that returns the sum of an expression evaluated for each row in a table.

  • Used to calculate the sum of a column or expression for each row in a table

  • Syntax: SUMX(table, expression)

  • Example: SUMX(Sales, Sales[Quantity] * Sales[Price]) returns the total sales amount

  • Can be used with filters to calculate conditional sums

Add your answer

Q21. Describe IOC in Asp.Net Core?

Add your answer

Q22. Interface vs abstractclass

Ans.

Interface defines a contract for classes to implement, while abstract class provides partial implementation.

  • Interface can have only abstract methods, while abstract class can have both abstract and concrete methods.

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

  • Interfaces are used for achieving multiple inheritance in Java.

  • Abstract classes are used when some common functionality needs to be shared among multiple classes.

Add your answer

Q23. Difference between map and filter?

Ans.

Map is used to transform each element of an array, while filter is used to select elements based on a condition.

  • Map applies a function to each element of an array and returns a new array with the results.

  • Filter creates a new array with only the elements that pass a certain condition.

  • Example: map - [1, 2, 3].map(x => x * 2) returns [2, 4, 6].

  • Example: filter - [1, 2, 3].filter(x => x > 1) returns [2, 3].

Add your answer
Contribute & help others!
Write a review
Share interview
Contribute salary
Add office photos

Interview Process at Rupa

based on 39 interviews
Interview experience
3.9
Good
View more
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top Interview Questions from Similar Companies

4.0
 • 705 Interview Questions
3.7
 • 419 Interview Questions
3.3
 • 327 Interview Questions
3.6
 • 264 Interview Questions
3.9
 • 221 Interview Questions
4.0
 • 169 Interview Questions
View all
Top Nous Infosystems Interview Questions And Answers
Share an Interview
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
75 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter