Add office photos
Engaged Employer

Contus

4.4
based on 89 Reviews
Filter interviews by

20+ Vertiv Interview Questions and Answers

Updated 14 Nov 2024

Q1. what is === and == ,and wher use === is real time projects

Ans.

=== is strict equality operator, while == is loose equality operator. === is commonly used in real-time projects for accurate comparisons.

  • === is a strict equality operator that checks both value and type of operands

  • == is a loose equality operator that only checks the value of operands

  • === is commonly used in real-time projects to ensure accurate comparisons and prevent unexpected type coercion issues

Add your answer

Q2. what is components in angular,how share data to component

Ans.

Components in Angular are building blocks of an application. Data can be shared between components using input properties and output events.

  • Components in Angular are reusable, self-contained units of code that define a part of the user interface.

  • Data can be shared to a component using input properties, where data is passed from the parent component to the child component.

  • Data can also be shared from a child component to a parent component using output events.

  • Services can be u...read more

Add your answer

Q3. what is difference between arrow function and anonymous function

Ans.

Arrow functions are concise syntax for writing function expressions, while anonymous functions do not have a name.

  • Arrow functions have a shorter syntax compared to anonymous functions.

  • Arrow functions do not have their own 'this' keyword, while anonymous functions do.

  • Arrow functions do not have 'arguments' object, while anonymous functions do.

  • Arrow functions are not hoisted, while anonymous functions are hoisted.

Add your answer

Q4. Layouts used in your project & Advantage of Constraint layout

Ans.

Used ConstraintLayout for flexible UI design

  • ConstraintLayout allows for flexible UI design and reduces nested layouts

  • It supports complex layouts with multiple views and constraints

  • It improves performance by reducing the number of layout hierarchies

  • Other layouts used include LinearLayout and RelativeLayout

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

Q5. UX Methodology and laws using for various evalutions on design process

Ans.

UX methodology involves various evaluations in the design process to ensure user satisfaction and usability.

  • User research to understand user needs and behaviors

  • Wireframing and prototyping to visualize design concepts

  • Usability testing to gather feedback and make improvements

  • Accessibility considerations for inclusive design

  • Following design principles and laws such as Gestalt principles, Hick's Law, and Fitts's Law

Add your answer

Q6. Design patterns you used so far. MVP, MVVM etc

Ans.

I have used MVP and MVVM design patterns in my Android development projects.

  • MVP (Model-View-Presenter) separates the presentation layer from the business logic and data access layers.

  • MVVM (Model-View-ViewModel) separates the view from the business logic and data access layers, and uses data binding to update the view automatically.

  • MVP is better suited for smaller projects, while MVVM is better for larger projects with complex data models.

  • Both patterns improve code maintainabi...read more

Add your answer
Are these interview questions helpful?

Q7. Onpage & offpage SEO procedures

Ans.

Onpage SEO involves optimizing website content and structure, while offpage SEO involves building backlinks and social signals.

  • Onpage SEO includes optimizing title tags, meta descriptions, header tags, and content

  • Offpage SEO includes building high-quality backlinks from reputable websites

  • Social media marketing is also an important offpage SEO strategy

  • Both onpage and offpage SEO are important for improving search engine rankings

Add your answer

Q8. Paid marketing methods & techniques

Ans.

Paid marketing methods include PPC, social media ads, influencer marketing, and affiliate marketing.

  • PPC (pay-per-click) advertising involves paying for each click on your ad, commonly used on search engines like Google and Bing.

  • Social media ads can be targeted to specific demographics and interests, and can be run on platforms like Facebook, Instagram, and LinkedIn.

  • Influencer marketing involves partnering with social media influencers to promote your product or service to the...read more

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

Q9. Tell about Typography?

Ans.

Typography is the art and technique of arranging type to make written language legible, readable, and appealing when displayed.

  • Typography involves selecting typefaces, point sizes, line lengths, line-spacing, and letter-spacing.

  • It is important to consider the hierarchy of information and the mood or tone that the typography conveys.

  • Good typography enhances the readability and legibility of the text, making it easier for the reader to understand and engage with the content.

  • Exa...read more

Add your answer

Q10. what is package.json

Ans.

package.json is a file used in Node.js projects to manage dependencies, scripts, and metadata.

  • It is a JSON file that contains information about the project, such as name, version, dependencies, and scripts.

  • It is used to manage project dependencies by listing them in the 'dependencies' and 'devDependencies' fields.

  • It allows developers to define scripts for tasks like building, testing, and running the project.

  • Example: { 'name': 'my-project', 'version': '1.0.0', 'dependencies':...read more

Add your answer

Q11. how many transformation are there in sap bods

Ans.

There are 4 main transformations in SAP BODS.

  • There are 4 main transformations in SAP BODS: Query transform, Case transform, Map operation transform, and Validation transform.

  • Query transform is used to extract data from a source and apply filters, joins, and other operations.

  • Case transform is used for conditional processing and data manipulation.

  • Map operation transform is used for data mapping and transformation.

  • Validation transform is used to validate data based on predefined...read more

Add your answer

Q12. write arrow function syntax

Ans.

Arrow function syntax in JavaScript

  • Arrow functions are concise syntax for writing function expressions in JavaScript

  • They have a shorter syntax compared to traditional function expressions

  • They do not have their own 'this', 'arguments', 'super', or 'new.target' keywords

Add your answer

Q13. what is java ?

Ans.

Java is a high-level programming language known for its portability, security, and object-oriented features.

  • Java is platform-independent, meaning it can run on any device with a Java Virtual Machine (JVM).

  • It is object-oriented, allowing for modular and reusable code.

  • Java is known for its security features, such as sandboxing and encryption.

  • Popular frameworks and libraries like Spring and Hibernate are commonly used in Java development.

Add your answer

Q14. what is an OTT and the features of OTT

Ans.

OTT stands for Over-The-Top and refers to the delivery of video, audio, and other media content over the internet.

  • OTT delivers content directly to users via the internet, bypassing traditional distribution channels.

  • OTT platforms include streaming services like Netflix, Hulu, and Amazon Prime Video.

  • Features of OTT include on-demand access, personalized recommendations, and multi-device compatibility.

  • OTT allows users to consume content anytime, anywhere, and on any device with ...read more

Add your answer

Q15. Tell me about NodeJS Event Loop

Ans.

NodeJS Event Loop is a mechanism that allows NodeJS to perform non-blocking I/O operations by offloading tasks to the system kernel.

  • Event Loop is responsible for handling asynchronous operations in NodeJS.

  • It allows NodeJS to perform multiple operations concurrently without blocking the execution.

  • Event Loop continuously checks the event queue for any pending tasks and executes them in a non-blocking manner.

  • NodeJS uses libuv library to implement the Event Loop.

  • Example: When rea...read more

Add your answer

Q16. Rem em used for, position,

Ans.

rem em is used for defining font size relative to the root element. It helps in creating responsive designs.

  • rem em is used to define font size relative to the root element

  • It helps in creating responsive designs as the font size adjusts according to the screen size

  • For example, if the root element font size is 16px, 1rem is equal to 16px

  • rem em is also used for defining position and spacing in CSS

Add your answer

Q17. Design the APIs for uber/ola kind of use-case.

Ans.

Designing APIs for a ride-sharing service like Uber/Ola.

  • Create endpoints for user registration, login, booking a ride, cancelling a ride, viewing ride history, and rating drivers.

  • Include authentication and authorization mechanisms to ensure secure access to the APIs.

  • Implement endpoints for driver registration, accepting/rejecting ride requests, updating location, and viewing earnings.

  • Utilize geolocation services for tracking user and driver locations in real-time.

  • Consider imp...read more

Add your answer

Q18. Explain ux methods ?

Ans.

UX methods are techniques used to design and improve user experience.

  • UX research methods include user interviews, surveys, and usability testing.

  • Design methods include wireframing, prototyping, and user testing.

  • Iterative design is a key aspect of UX methods, allowing for continuous improvement.

  • UX methods prioritize user needs and goals to create effective and enjoyable experiences.

  • Examples of UX methods in action include creating personas, user journey mapping, and A/B testin...read more

Add your answer

Q19. Business analysis tools and techniques

Ans.

Business analysis tools and techniques are essential for gathering, analyzing, and documenting business requirements.

  • Use tools like Microsoft Excel, Visio, and Jira for data analysis and visualization

  • Techniques such as SWOT analysis, PESTLE analysis, and stakeholder interviews help in understanding business needs

  • Utilize tools like BPMN, UML, and user stories for process modeling and requirement documentation

Add your answer

Q20. Conceptual work flow of concepts

Ans.

Conceptual work flow of concepts involves understanding the flow of ideas and processes in a systematic manner.

  • Identify key concepts and their relationships

  • Map out the sequence of events or steps

  • Consider dependencies and interactions between concepts

  • Visualize the flow using diagrams or charts

Add your answer

Q21. Redesign Netflix Platform

Ans.

Redesigning Netflix platform to enhance user experience and improve usability.

  • Simplify the navigation menu to make it more intuitive

  • Improve search functionality to provide more accurate results

  • Enhance personalization by recommending content based on user preferences

  • Optimize video player for seamless streaming experience

  • Introduce a dark mode option for better viewing in low-light environments

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

Interview Process at Vertiv

based on 20 interviews
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
 • 2k Interview Questions
3.5
 • 1.8k Interview Questions
3.1
 • 685 Interview Questions
4.0
 • 233 Interview Questions
3.9
 • 208 Interview Questions
3.9
 • 138 Interview Questions
View all
Top Contus 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

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