Filter interviews by
I was interviewed before Mar 2021.
Round duration - 60 minutes
Round difficulty - Medium
Online interview round with questions based on DSA and Devops.
You are given a string STR
which contains alphabets, numbers, and special characters. Your task is to reverse the string.
STR = "abcde"
"e...
Round duration - 60 minutes
Round difficulty - Medium
They have a zoom video call. And it's really lengthy.
Round duration - 60 minutes
Round difficulty - Medium
Technical interview round with questions around Devops
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
I applied via Company Website and was interviewed in Mar 2020. There was 1 interview round.
Terraform modules are reusable components that allow you to define and manage infrastructure as code.
Modules are collections of resources that can be used across multiple Terraform configurations
They can be shared and reused by other teams or projects
Modules can be published to the Terraform Registry for easy discovery and use
They help to reduce duplication of code and simplify infrastructure management
Debugging Apache Nginx issues involves checking logs, configuration files, and server status.
Check error logs for any relevant error messages
Verify the configuration files for syntax errors
Check server status and resource usage
Use tools like curl or telnet to test connectivity and response times
Check firewall rules and network settings
Consider load balancing and caching configurations
Prevent DDoS attack by implementing various measures
Implementing firewalls and intrusion detection systems
Using load balancers to distribute traffic
Blocking traffic from suspicious IP addresses
Using content delivery networks (CDNs)
Limiting the number of requests per IP address
Using anti-DDoS services provided by cloud providers
Regularly monitoring network traffic for unusual patterns
Yes, AWS provides various methods to blacklist IPs.
Use AWS WAF to create rules to block specific IP addresses
Configure security groups to deny traffic from specific IP addresses
Utilize AWS Network ACLs to block traffic from specific IP addresses
Average load in Linux refers to the amount of work being done by the system at a given time.
Average load is measured as a decimal number, with 1.00 representing a fully loaded system.
It takes into account both running processes and processes waiting for resources.
High average load can indicate a need for more resources or optimization of processes.
Command 'uptime' can be used to check the average load on a Linux system
Inodes are data structures that store information about files on a Unix/Linux file system. File descriptors are unique identifiers for open files. Swap is a space on a hard disk used as virtual memory.
Inodes contain metadata about files such as ownership, permissions, and timestamps.
File descriptors are used by the operating system to keep track of open files and to perform I/O operations on them.
Swap is used when the ...
Load balancer routes traffic to other healthy instances
Load balancer detects the unhealthy instance
Stops sending traffic to that instance
Routes traffic to other healthy instances
Maintains high availability and scalability of the application
To debug a progressively slowing down website, I would analyze the server logs, check for memory leaks, and optimize the code.
Analyze server logs to identify any errors or bottlenecks
Check for memory leaks in the code
Optimize the code by removing unnecessary scripts and optimizing images
Use tools like Chrome DevTools to identify performance issues
Consider implementing a content delivery network (CDN) to improve website
Docker save and Docker load commands can be used to transfer an image from one machine to another without using a Docker registry.
Use the 'docker save' command to save the image as a tar file on the source machine
Transfer the tar file to the destination machine using any file transfer method (e.g., scp)
On the destination machine, use the 'docker load' command to load the image from the tar file
A program to reverse a string in Python
Use the slicing technique to reverse the string
Start with the last character and move backwards
Store the reversed string in a new variable
Ansible playbook to install Apache
Create a playbook file with .yml extension
Define hosts and remote user
Add tasks to install Apache package
Start Apache service
Save and run the playbook using ansible-playbook command
Distributed Jenkins nodes are used to handle large-scale builds and improve performance.
Large-scale builds: When there are a large number of builds to be executed simultaneously, distributed Jenkins nodes can handle the load by distributing the builds across multiple nodes.
Improved performance: By distributing the workload, the overall build time can be reduced, resulting in improved performance.
Resource utilization: D...
VMware Software interview questions for popular designations
I applied via Company Website and was interviewed before Sep 2020. There were 3 interview rounds.
Get interview-ready with Top VMware Software Interview Questions
I applied via LinkedIn and was interviewed in Jul 2020. There were 4 interview rounds.
I applied via Company Website and was interviewed in Aug 2019. There were 4 interview rounds.
vROps, Log Insight, and vRA are components of VMware's vRealize Suite that provide functionality for monitoring, logging, and automation.
vROps (vRealize Operations) provides performance monitoring and capacity management for virtual and cloud environments.
Log Insight is a log management and analysis tool that helps identify and troubleshoot issues in the environment.
vRA (vRealize Automation) is an automation platform t...
I was interviewed before Mar 2021.
Round duration - 60 minutes
Round difficulty - Easy
Technical Interview round with questions based on DSA, OOPS and puzzles.
Given a Singly Linked List of integers, your task is to reverse the Linked List by altering the links between the nodes.
The first line of input is an intege...
Ninja is exploring new challenges and desires to reverse a given number. Your task is to assist Ninja in reversing the number provided.
If a number has trailing ze...
You are given a string STR
which contains alphabets, numbers, and special characters. Your task is to reverse the string.
STR = "abcde"
"e...
Round duration - 60 minutes
Round difficulty - Medium
Technical round with question based on Web Dev, Cloud Computing, Networking etc.
Given an array/list ARR
consisting of integers where each element is either 0, 1, or 2, your task is to sort this array in increasing order.
The input sta...
Round duration - 60 minutes
Round difficulty - Medium
Technical Interview round with questions based on DSA and OOPS. A detailed discussion on my projects was also carried out.
Given three sorted arrays A
, B
, and C
of lengths N
, M
, and K
respectively, your task is to find all elements that are present in all three arrays.
The first...
Round duration - 30 minutes
Round difficulty - Easy
HR round with typical behavioral problems.
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
I was interviewed before Mar 2021.
Round duration - 60 minutes
Round difficulty - Medium
Technical Interview round with questions based on DSA.
You are given a string STR
which contains alphabets, numbers, and special characters. Your task is to reverse the string.
STR = "abcde"
"e...
Given an array of integers ARR
of size N, consisting of 0s and 1s, you need to select a sub-array and flip its bits. Your task is to return the maximum count of 1s that can b...
Determine whether a given array ARR
of positive integers is a valid Preorder Traversal of a Binary Search Tree (BST).
A binary search tree (BST) is a tree structure w...
Given a sorted array/list ARR
consisting of ‘N’ elements, and an integer ‘K’, your task is to find the first and last occurrence of ‘K’ in ARR
.
Round duration - 60 minutes
Round difficulty - Medium
Technical round with questions based on DSA, OS, OOPS etc.
Given two arrays A
and B
with sizes N
and M
respectively, both sorted in non-decreasing order, determine their intersection.
The intersection of two arrays in...
You are provided with a linked list consisting of N nodes. Your task is to remove duplicate nodes such that each element occurs only once in t...
Round duration - 60 minutes
Round difficulty - Medium
Technical Interview round with questions on DSA, OOPS and Puzzles.
In a wedding ceremony at NinjaLand, attendees are blindfolded. People from the bride’s side hold odd numbers, while people from the groom’s side hold even numbers. For...
Given a sorted array of length N
, your task is to construct a balanced binary search tree (BST) from the array. If multiple balanced BSTs are possible, you ca...
Round duration - 30 minutes
Round difficulty - Easy
HR round with typical behavioral problems.
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
I was interviewed before Mar 2021.
Round duration - 60 minutes
Round difficulty - Easy
Technical interview round with questions based on DSA and OOPS.
Round duration - 60 minutes
Round difficulty - Easy
Technical interview round with questions based on OS/Networking etc.
Round duration - 60 minutes
Round difficulty - Easy
Technical interview round with questions based on Networking etc.
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
Top trending discussions
Some of the top questions asked at the VMware Software interview -
The duration of VMware Software interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 101 interviews
Interview experience
based on 1.1k reviews
Rating in categories
Member Technical Staff
566
salaries
| ₹12 L/yr - ₹43.4 L/yr |
Senior Member of Technical Staff
509
salaries
| ₹24 L/yr - ₹72.6 L/yr |
Technical Support Engineer
398
salaries
| ₹5.2 L/yr - ₹18.9 L/yr |
Business Analyst
255
salaries
| ₹4.8 L/yr - ₹17 L/yr |
Technical Staff Member 3
250
salaries
| ₹17 L/yr - ₹60 L/yr |
Microsoft Corporation
Oracle
IBM
SAP