Filter interviews by
I applied via Instahyre and was interviewed in Jun 2024. There were 2 interview rounds.
I am a dedicated IT Support Technician with a passion for troubleshooting and problem-solving.
Experienced in providing technical support to end-users
Proficient in diagnosing and resolving hardware and software issues
Skilled in setting up and configuring computer systems and networks
My salary expectation is based on my experience, skills, and the market rate for IT Support Technicians.
Consider my experience and skills in the IT field
Research the market rate for IT Support Technicians in the area
Be open to negotiation based on the overall compensation package
I have over 5 years of experience providing IT support in various industries.
Managed help desk tickets and resolved technical issues for end users
Installed and configured software and hardware for employees
Performed regular maintenance and updates on systems and networks
Trained staff on IT best practices and security protocols
Seeking new opportunities for growth and development.
Looking for new challenges and opportunities to learn and grow
Desire for career advancement
Company restructuring led to changes in job responsibilities
My hobby is photography, where I enjoy capturing moments and exploring different perspectives through my camera lens.
I love experimenting with different lighting techniques and compositions
I enjoy editing and enhancing photos to create unique visual effects
I often participate in photography contests and exhibitions
Some of my favorite subjects to photograph include landscapes, portraits, and street scenes
I have extensive knowledge and experience in IT support, including troubleshooting hardware and software issues, setting up networks, and providing technical assistance to users.
Proficient in diagnosing and resolving hardware and software issues
Skilled in setting up and maintaining networks
Experience providing technical support to end users
Knowledge of various operating systems and software applications
Familiarity with
DNS is a system that translates domain names to IP addresses, while DHCP is a protocol that assigns IP addresses to devices on a network.
DNS stands for Domain Name System and is used to translate domain names into IP addresses.
DHCP stands for Dynamic Host Configuration Protocol and is used to assign IP addresses to devices on a network.
DNS is like a phone book that maps domain names to IP addresses, while DHCP is like ...
SharePoint is a web-based collaborative platform used for document management, content management, and workflow automation in organizations.
SharePoint allows users to create, manage, and share information and documents in a secure way
It helps in improving collaboration and communication within teams
SharePoint can be used for creating intranet portals, document libraries, and project management sites
It integrates with M...
A distribution list is a group of email addresses that can be used to send messages to multiple recipients at once.
Distribution lists are commonly used in email clients to easily send messages to a group of people.
They can be created and managed by users or administrators.
Examples of distribution lists include 'sales-team@example.com' or 'all-employees@example.com'.
Yes, I have experience working with ServiceNow for managing IT support tickets.
Managed and resolved IT support tickets using ServiceNow
Assigned tickets to appropriate IT technicians based on priority and expertise
Monitored ticket statuses and ensured timely resolution
Generated reports on ticket trends and resolutions for analysis
BIOS stands for Basic Input/Output System. It is a firmware used to perform hardware initialization during the booting process.
BIOS is a firmware that is stored on a chip on the computer's motherboard.
It is responsible for initializing and testing hardware components during the boot process.
BIOS provides the basic instructions for the operating system to communicate with hardware components.
Users can access BIOS settin...
BSOD stands for Blue Screen of Death, a Windows operating system error screen displayed when a system encounters a critical error.
BSOD is a stop error screen that appears when the Windows operating system encounters a critical error and cannot recover.
It usually includes an error code and a message indicating the cause of the error.
Common causes of BSOD errors include hardware failures, driver issues, and software conf...
We use a combination of antivirus software in our organization to ensure comprehensive protection.
We primarily use Symantec Endpoint Protection for our antivirus needs
In addition, we also utilize Malwarebytes for additional security measures
Regular updates and scans are conducted to ensure all systems are protected
I applied via Naukri.com and was interviewed in Dec 2023. There was 1 interview round.
Java Question about OOPS ,Interface,etc.You have to write them on paper in their office.10 MCQ java questions.
5.6 programming question.pattern,array,string,List.
Top trending discussions
Calculate the number of children and grandchildren
Count the number of direct children of a person
Count the number of grandchildren of a person
Use recursion to count all descendants
Consider only living descendants
Exclude step-children and adopted children
I applied via Campus Placement and was interviewed in Jun 2021. There was 1 interview round.
Partition even and odd numbers in an array
Iterate through the array and check if each number is even or odd
Create two separate arrays for even and odd numbers
Combine the two arrays to get the final partitioned array
Find leaders in an array of strings
Leaders are elements that are greater than all elements to their right
Traverse array from right to left and keep track of maximum element
Add maximum element to result if it is a leader
I appeared for an interview before May 2021.
Round duration - 90 minutes
Round difficulty - Medium
Given 'N' students standing in a row with specific heights, your task is to find the length of the longest strictly increasing subsequence of their heights...
Find the length of the longest strictly increasing subsequence of heights of students in a row.
Iterate through the heights array and for each element, find the length of the longest increasing subsequence ending at that element.
Use dynamic programming to keep track of the longest increasing subsequence length for each element.
Return the maximum length found as the result.
You are given the start and end times of 'N' intervals. Write a function to determine if any two intervals overlap.
If an interval ends at time T and anothe...
Given start and end times of intervals, determine if any two intervals overlap.
Iterate through intervals and check if any two intervals overlap by comparing their start and end times
Sort intervals based on start times for efficient comparison
Consider edge cases where intervals end and start at the same time
Various SQL queries related to data manipulation and retrieval were asked during the interview.
Basic SELECT queries to retrieve data from a single table
JOIN queries to retrieve data from multiple tables based on a common column
Aggregate functions like COUNT, SUM, AVG, etc. to perform calculations on data
Subqueries to retrieve data based on the result of another query
UPDATE queries to modify existing data in a table
DELE...
Round duration - 60 Minutes
Round difficulty - Medium
Given a string STR
of size N
and an integer M
representing the number of rows in the zig-zag pattern, return the string formed by concatenating all rows when the string ST...
Arrange a string in zig-zag pattern with given number of rows and concatenate the rows.
Iterate through the string and distribute characters to rows based on zig-zag pattern
Concatenate the characters in each row to get the final result
Handle edge cases like when number of rows is 1 or equal to the length of the string
You are given a permutation of 'N' integers. A sequence of 'N' integers is considered a permutation if it includes all integers from 1 to 'N' exactly once. Your task is ...
The task is to rearrange a given permutation of 'N' integers to form the lexicographically next greater permutation.
Iterate from right to left to find the first element that is smaller than the element to its right.
Swap this element with the smallest element to its right that is greater than it.
Reverse the elements to the right of the swapped element to get the lexicographically next greater permutation.
Round duration - 60 Minutes
Round difficulty - Medium
Given a string S, your task is to recursively remove all consecutive duplicate characters from the string.
String S
Output string
Recursively remove consecutive duplicate characters from a string.
Use recursion to check if the current character is the same as the next character, if so skip the next character
Base case: if the string is empty or has only one character, return the string
Example: Input: 'aaabcc', Output: 'abc'
Given an input string 'S', you are tasked with finding and returning all possible permutations of the input string.
The first and only line of input ...
Return all possible permutations of a given input string.
Use recursion to generate all possible permutations of the input string.
Swap characters at different positions to generate permutations.
Handle duplicate characters in the input string by using a set to store unique permutations.
Round duration - 60 Minutes
Round difficulty - Medium
Design an e-commerce website similar to Flipkart or Amazon.
Implement user-friendly interface for easy navigation
Include search functionality with filters for products
Incorporate secure payment gateway for transactions
Provide personalized recommendations based on user behavior
Include customer reviews and ratings for products
Implement order tracking and delivery status updates
Offer various payment options like credit/deb
Tip 1 : Prepare DSA well. Standard Leetcode-type questions will be asked.
Tip 2 : You should be crystal clear about your project/s as any question would be asked and you should be able to answer it.
Tip 3 : Prepare CS fundaments like OS, OOPs, DBMS, etc.
Tip 1 : Clearly mention the tech. stack you have worked on in the project/s
Tip 2 : As a fresher, you should add your coding profiles on CodeChef, Codeforces, etc. so as to make the resume shortlisting easy
C++ program to reverse a string
Use a loop to iterate through the string
Swap the characters at the beginning and end of the string
Continue swapping until the middle of the string is reached
I applied via Naukri.com and was interviewed in Apr 2021. There was 1 interview round.
Filter in MVC is used to retrieve a subset of data from a larger dataset based on certain criteria.
Filters can be applied to data in the model or in the view.
Filters can be used to sort, group, or limit the data returned.
Filters can be implemented using LINQ or other query languages.
Examples of filters include date range filters, category filters, and search filters.
I appeared for an interview in Jan 2021.
based on 3 interviews
Interview experience
4-6 Yrs
Not Disclosed
4-6 Yrs
Not Disclosed
4-5 Yrs
Not Disclosed
Software Engineer
5
salaries
| ₹3 L/yr - ₹11.9 L/yr |
Associate Software Engineer
5
salaries
| ₹3 L/yr - ₹4 L/yr |
HR Executive
4
salaries
| ₹2 L/yr - ₹3 L/yr |
Senior Software Engineer
4
salaries
| ₹4 L/yr - ₹10 L/yr |
Software Developer
3
salaries
| ₹2.1 L/yr - ₹5 L/yr |
Microsoft Corporation
SAP
24/7 Customer