Add office photos
Engaged Employer

Orion Innovation

3.6
based on 304 Reviews
Filter interviews by

20+ Interview Questions and Answers

Updated 16 Oct 2024

Q1. If a customer call you and say ,he don't want to talk to me and spent his time ,he only want to speak with my senior officer. How will I manage that customer

Ans.

Assure the customer that you are capable of handling their issue and offer to escalate if necessary.

  • Listen to the customer's concerns

  • Empathize with their frustration

  • Assure them that you are capable of handling their issue

  • Offer to escalate to a senior officer if necessary

  • Provide contact information for the senior officer

View 1 answer

Q2. Explain Login page security of your current project

Ans.

Login page security includes encryption, password policies, and session management.

  • Encryption of passwords using hashing algorithms like bcrypt or scrypt

  • Implementation of password policies like minimum length, complexity, and expiration

  • Session management with secure cookies and timeout mechanisms

  • Prevention of brute force attacks with rate limiting and CAPTCHA

  • Protection against SQL injection and cross-site scripting (XSS) attacks

Add your answer

Q3. What are the applications of abstract class?

Ans.

Abstract classes are used to provide a common interface for its subclasses.

  • Abstract classes cannot be instantiated, but can be subclassed

  • Abstract classes can have abstract and non-abstract methods

  • Abstract classes can be used to implement template method pattern

  • Abstract classes can be used to provide default implementation of methods

  • Abstract classes can be used to enforce design constraints on its subclasses

Add your answer

Q4. What is exploratory testing, what is regression and retesting, what bug life cycle

Ans.

Exploratory testing involves simultaneous learning, test design, and execution. Regression testing ensures new code changes do not adversely affect existing functionality. Retesting is done to verify that a fixed bug is resolved.

  • Exploratory testing is a hands-on approach where testers explore the application without predefined test cases. They learn the application while testing and design test cases simultaneously.

  • Regression testing is performed to ensure that new code chang...read more

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

Q5. What is Randome Forest Why it is so named Simply describe its function

Add your answer

Q6. diff btw view and indexed view, pipeline design process, where to monitor pipelibe failures and how to fix

Ans.

View vs indexed view, pipeline design process, monitoring pipeline failures and fixing

  • View is a virtual table based on a SELECT query, while indexed view is a view with a clustered index for faster retrieval

  • Pipeline design process involves defining data sources, transformations, and destinations

  • Monitor pipeline failures using logging tools like Apache NiFi or Airflow

  • Fix pipeline failures by identifying the root cause, adjusting configurations, or updating dependencies

Add your answer
Are these interview questions helpful?

Q7. State how 3 financial statements are interlinked to each other?

Ans.

The three financial statements - income statement, balance sheet, and cash flow statement - are interlinked through the flow of information and transactions.

  • Income statement shows the company's revenues and expenses, which affect the net income reported on the statement.

  • Net income from the income statement flows into the balance sheet as retained earnings, affecting the equity section of the balance sheet.

  • Cash flow statement shows how changes in balance sheet accounts and inc...read more

Add your answer

Q8. What is retesting, smoke sanity, Exploratory

Ans.

Retesting, smoke sanity, and exploratory are different types of testing techniques used in quality assurance.

  • Retesting is the process of running tests again to verify that a specific bug or issue has been fixed.

  • Smoke testing, also known as sanity testing, is a preliminary testing to check if the software build is stable enough for further testing.

  • Exploratory testing is a testing approach where testers explore the software to find defects without predefined test cases.

  • Each typ...read more

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

Q9. joins in sql , where clause , like

Ans.

SQL joins are used to combine rows from two or more tables based on a related column between them. WHERE clause is used to filter rows based on a specified condition. LIKE operator is used for pattern matching in SQL queries.

  • Joins in SQL are used to retrieve data from multiple tables based on a related column

  • WHERE clause is used to filter rows based on a specified condition

  • LIKE operator is used for pattern matching in SQL queries

Add your answer

Q10. SQL queries using inner join ,outer join

Ans.

SQL joins are used to combine data from two or more tables based on a related column between them.

  • Inner join returns only the matching rows from both tables

  • Left outer join returns all rows from the left table and matching rows from the right table

  • Right outer join returns all rows from the right table and matching rows from the left table

  • Full outer join returns all rows from both tables

  • Syntax: SELECT * FROM table1 INNER/LEFT/RIGHT/FULL OUTER JOIN table2 ON table1.column = tabl...read more

Add your answer

Q11. Row level security in PBI package level information in SSIS

Ans.

Row level security in Power BI allows restricting access to specific rows of data based on user roles. Package level information in SSIS refers to metadata about the SSIS package itself.

  • Row level security in Power BI can be implemented using roles and filters to control access to specific rows of data.

  • Package level information in SSIS includes details like package name, version, description, and connection managers used.

  • Row level security in Power BI is crucial for ensuring d...read more

Add your answer

Q12. What is K means Clustering Where it is being used

Add your answer

Q13. Why k refers to K in KNN and Kmeans Clustering

Add your answer

Q14. Do you done any projects in K means Clustering

Add your answer

Q15. Find error in a code and guess output

Ans.

Answering a code error and output guess question for Technical Support Engineer position.

  • Identify the error message or line number in the code

  • Check for syntax errors, missing or extra characters

  • Debug the code by running it and checking the output

  • Guess the output based on the input and code logic

  • Provide a detailed explanation of the error and output

Add your answer

Q16. What is networking? Which types networks? What is DNS? What is DHCP? Explain router and switch?

Ans.

Networking is the practice of connecting devices to share resources. There are different types of networks such as LAN, WAN, MAN, etc.

  • Networking involves connecting devices to share resources such as files, printers, and internet access.

  • Local Area Network (LAN) is a network that connects devices within a small geographical area.

  • Wide Area Network (WAN) is a network that connects devices over a large geographical area.

  • Metropolitan Area Network (MAN) is a network that connects d...read more

Add your answer

Q17. What does financial analyst does?

Ans.

Financial analysts analyze financial data to help businesses make informed decisions about investments, budgets, and overall financial health.

  • Analyze financial statements to assess performance and make recommendations

  • Evaluate economic trends to forecast future financial conditions

  • Conduct industry research to understand market dynamics

  • Create financial models to support decision-making

  • Communicate findings and recommendations to stakeholders

  • Examples: Performing ratio analysis, c...read more

Add your answer

Q18. What is corelation and Regression

Add your answer

Q19. How to reduce dimensional Reduction

Add your answer

Q20. Different between abstract class vs interface

Ans.

Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

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

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

  • Abstract class is used to provide a common base for multiple derived classes, while interface is used to define a contract for classes to implement.

  • Example: Abstract class 'Shape' wit...read more

Add your answer

Q21. What is regression

Ans.

Regression is the process of retesting a software application after changes have been made to ensure that the existing functionalities are not affected.

  • Regression testing is done to make sure that new code changes do not adversely impact the existing functionality of the software.

  • It involves running test cases that cover the affected areas of the application to verify that everything still works as expected.

  • Regression testing can be automated to save time and effort in retest...read more

Add your answer

Q22. Project and tables in detail

Ans.

Project and tables are essential components of a database system.

  • A project is a collection of related tables that store data.

  • Tables are used to organize and store data in a structured manner.

  • Projects and tables are created using SQL commands.

  • Projects can have multiple tables that are related to each other through keys.

  • Tables can have columns that define the type of data that can be stored in them.

Add your answer

Q23. Tell basics of oops

Ans.

OOPs stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects.

  • OOPs focuses on creating objects that contain data and methods to manipulate that data.

  • Encapsulation is the concept of bundling data and methods that operate on the data into a single unit.

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

  • Polymorphism allows objects to be treated as instances of their parent class.

  • Abstraction hides the compl...read more

Add your answer

Q24. Explain agile process

Ans.

Agile process is a iterative approach to software development that focuses on collaboration, flexibility, and customer feedback.

  • Iterative development with short cycles called sprints

  • Cross-functional teams work together closely

  • Customer feedback is incorporated throughout the process

  • Adaptability to changing requirements

  • Regular meetings like daily stand-ups and sprint reviews

Add your answer

Q25. Xpath find with siblings

Ans.

Xpath find with siblings is used to locate an element based on its relationship with other elements.

  • Use the following syntax to find an element with its sibling: 'element1/following-sibling::element2'

  • For example, to find a paragraph element following a heading element: 'h1/following-sibling::p'

Add your answer

Q26. Explain about.net core

Ans.

ASP.NET Core is a cross-platform, high-performance framework for building modern, cloud-based, internet-connected applications.

  • Cross-platform framework for building web applications

  • High-performance and scalable

  • Supports cloud-based and internet-connected applications

  • Open-source and actively maintained by Microsoft

  • Modular design allows for flexibility and customization

Add your answer

Q27. Explain about design pattern

Ans.

Design patterns are reusable solutions to common problems in software design.

  • Design patterns help in creating maintainable, scalable, and flexible software.

  • They provide a common language for developers to communicate about solutions.

  • Examples include Singleton, Factory, Observer, and MVC.

Add your answer

Q28. Explain some ratios?

Ans.

Ratios are used to evaluate a company's financial performance by comparing different financial metrics.

  • Ratios can be categorized into liquidity ratios, profitability ratios, solvency ratios, and efficiency ratios.

  • Examples of ratios include current ratio, return on equity, debt-to-equity ratio, and inventory turnover ratio.

  • These ratios help analysts assess a company's financial health, operational efficiency, and overall performance.

Add your answer

Q29. Oops concepts in.net

Ans.

OOPs concepts in .NET refer to the principles of Object-Oriented Programming used in .NET development.

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

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

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

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

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

Interview Process at null

based on 14 interviews in the last 1 year
Interview experience
4.3
Good
View more
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top Interview Questions from Similar Companies

3.8
 • 331 Interview Questions
4.0
 • 255 Interview Questions
4.0
 • 227 Interview Questions
3.8
 • 208 Interview Questions
4.2
 • 203 Interview Questions
4.2
 • 135 Interview Questions
View all
Top Orion Innovation 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
70 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions
Get AmbitionBox app

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