Filter interviews by
I applied via Indeed and was interviewed in Jul 2022. There were 2 interview rounds.
Href Lang tag is an HTML attribute that tells search engines which language is used on a specific page.
Href Lang tag helps search engines understand the language and regional targeting of a webpage.
It is used to avoid duplicate content issues for pages with similar content in different languages.
It is important for international SEO and helps in improving search engine rankings.
Example:
Sitemap and robots.txt are important files for website optimization and search engine crawling.
Sitemap is an XML file that lists all the pages on a website and helps search engines to crawl and index them.
Robots.txt is a text file that tells search engine crawlers which pages or sections of a website should not be crawled or indexed.
Sitemap helps to improve website visibility and search engine rankings.
Robots.txt helps...
HTML sitemap is for users to navigate a website, while XML sitemap is for search engines to crawl and index the site.
HTML sitemap is designed for human users to easily navigate a website by providing a structured list of links.
XML sitemap is specifically created for search engines to crawl and index the website's pages, helping with SEO.
HTML sitemap is typically visible and accessible to website visitors, often linked ...
Yes, it is recommended to add sitemap in robots.txt for better crawling and indexing of website.
Sitemap helps search engines to understand the structure of website
Robots.txt file tells search engines which pages to crawl and which not to
Adding sitemap in robots.txt helps search engines to easily find and crawl all pages
Example: Sitemap: https://www.example.com/sitemap.xml
Example: User-agent: * Disallow: /admin/ Sitemap
DA, DR, Trust flow and Citation flow are metrics used to measure the authority and credibility of a website.
DA (Domain Authority) is a metric developed by Moz that predicts how well a website will rank on search engine result pages (SERPs).
DR (Domain Rating) is a metric developed by Ahrefs that measures the strength of a website's backlink profile.
Trust flow is a metric developed by Majestic that measures the quality o...
Sessions, pageviews, and bounce rate are important metrics in web analytics.
Sessions refer to the number of visits to a website within a specific time period.
Pageviews refer to the number of pages viewed by visitors during a session.
Bounce rate is the percentage of visitors who leave a website after viewing only one page.
A high bounce rate may indicate that the website is not engaging or relevant to the visitor.
These m...
LCP stands for Largest Contentful Paint. Main factors affecting website speed are server response time, render-blocking resources, and image optimization.
LCP is a metric that measures loading performance. It marks the point in the page load timeline when the main content has loaded.
Server response time is the time it takes for the server to respond to a request. A slow server can significantly affect website speed.
Rend...
I applied via Naukri.com and was interviewed before Nov 2022. There were 3 interview rounds.
Experienced sales executive with a proven track record of exceeding targets and building strong client relationships.
Proven track record of exceeding sales targets
Strong ability to build and maintain client relationships
Excellent communication and negotiation skills
Strategic thinker with the ability to identify and capitalize on market opportunities
Proficient in sales techniques and CRM software
Team player with the abi...
I was responsible for managing a team of sales representatives and achieving sales targets.
Managed a team of sales representatives
Set and achieved sales targets
Developed and implemented sales strategies
Built and maintained relationships with key clients
Analyzed market trends and competitor activities
Provided training and guidance to sales team members
Given an assignment to prepare presentation on company profile
Top trending discussions
posted on 22 Jan 2025
I was interviewed in Dec 2024.
I participated in a coding round on their platform, which consisted of three coding questions in 60 min. however, their editor and compiler were quite inadequate. The event was held onsite, with 500 candidates arriving on January 11, 2024, at 9 AM. Approximately 100 candidates cleared that round.
I solved all three questions, yet we still had to participate in the second round, which included one coding question to be completed in 20 minutes. The question was poorly framed, leading to the rejection of most students. However, I managed to solve all the test cases.
The coding round comprised one question and was conducted on paper for a duration of 10 minutes.
I applied via Referral and was interviewed in Dec 2024. There were 4 interview rounds.
I applied via Naukri.com and was interviewed in Dec 2024. There were 3 interview rounds.
You will be required to complete a machine test.
They will interrogate you about your resume.
I am a software engineer with a Bachelor's degree in Computer Science and experience in developing web applications.
Bachelor's degree in Computer Science
Experience in developing web applications
posted on 2 Jan 2025
I applied via Referral
Print a specific pattern using any programming language.
A class in OOP is a blueprint for creating objects, defining their properties and behaviors.
Classes are templates for creating objects in OOP
They define the properties (attributes) and behaviors (methods) of objects
Objects are instances of classes, each with its own unique data
Inheritance allows classes to inherit properties and behaviors from other classes
Encapsulation ensures that the data is hidden and can only be a...
Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.
Abstract class can have constructors, fields, and methods, while interface cannot have any implementation.
A class can only extend one abstract class, but can implement multiple interfaces.
Abstract classes are used to define common characteristics of subclasses, while interfaces are used to define contracts for...
Joining is combining data from two or more tables based on a related column, while an inner join query retrieves only the matching records.
Joining is used to combine data from multiple tables in a database.
Inner join query retrieves only the records that have matching values in both tables.
Syntax for inner join: SELECT columns FROM table1 INNER JOIN table2 ON table1.column = table2.column;
Example: SELECT orders.order_i...
I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.
Runtime polymorphism allows a subclass to provide a specific implementation of a method that is already provided by its parent class.
Runtime polymorphism is achieved through method overriding, where a subclass provides its own implementation of a method that is already defined in its superclass.
The method to be overridden must have the same name, return type, and parameters in both the superclass and subclass.
When an o...
Streams in Java provide a way to process collections of objects in a functional style.
Streams are sequences of elements that support various operations like filter, map, reduce, etc.
They can be created from collections, arrays, or generate elements dynamically.
Streams can be sequential or parallel, allowing for efficient processing of large datasets.
Example: List<String> names = Arrays.asList("Alice", "Bob", "Cha...
Threads in Java are created by extending the Thread class or implementing the Runnable interface, and invoked using the start() method.
Threads can be created by extending the Thread class and overriding the run() method.
Threads can also be created by implementing the Runnable interface and passing an instance of the class to a Thread object.
Threads are invoked by calling the start() method on the Thread object.
Rest Template is a class in Spring that simplifies making HTTP requests and handling responses.
Rest Template is part of the Spring framework in Java.
It can be used to make HTTP requests to RESTful web services.
It simplifies the process of making HTTP calls and handling responses.
Rest Template can handle GET, POST, PUT, DELETE, etc. requests.
Example: RestTemplate restTemplate = new RestTemplate();
I applied via LinkedIn and was interviewed in Sep 2024. There were 3 interview rounds.
CICD stands for Continuous Integration and Continuous Deployment. It is a software development practice where code changes are automatically built, tested, and deployed.
Automates the process of integrating code changes into a shared repository
Automatically builds and tests the code to ensure it is functional
Automatically deploys the code to production or staging environments
Helps in detecting and fixing integration err
To create an image out of a running container, you can use the 'docker commit' command.
Use 'docker commit' command to create an image from a running container
Syntax: docker commit [OPTIONS] CONTAINER [REPOSITORY[:TAG]]
Example: docker commit container_id repository_name:tag
Docker add command can fetch a file from a URL and add it to the image, while copy command copies files from the host machine to the image.
Docker add command can fetch files from URLs and add them to the image
Copy command copies files from the host machine to the image
Add command can also automatically extract compressed files during the build process
Copy command is more commonly used for copying local files
A freestyle project is a type of project in Jenkins that allows users to configure the build process in any way they want. A pipeline is a set of automated steps that define the process for building, testing, and deploying code.
Freestyle project in Jenkins allows users to configure build process manually
Pipeline in Jenkins is a set of automated steps for building, testing, and deploying code
Freestyle projects are more ...
Docker Swarm is used for orchestrating multiple Docker containers across multiple hosts, while Docker Compose is used for defining and running multi-container Docker applications.
Docker Swarm is a container orchestration tool that allows you to manage a cluster of Docker hosts.
Docker Compose is a tool for defining and running multi-container Docker applications.
Docker Swarm is used for scaling and managing a cluster of...
VPC stands for Virtual Private Cloud, a virtual network dedicated to a single organization's resources in the cloud.
Allows organizations to have control over their virtual network environment
Enables customization of network configuration
Provides security by allowing isolation of resources
Can connect to on-premises data centers or other VPCs using VPN or Direct Connect
CICD pipeline is a process that automates the building, testing, and deployment of software.
Continuous Integration (CI) - code changes are integrated into a shared repository multiple times a day.
Continuous Testing - automated tests are run to ensure code quality.
Continuous Deployment - code changes are automatically deployed to production.
Stages include: build, test, deploy, and monitor.
Tools like Jenkins, GitLab, and
VPC peering allows connecting two VPCs to communicate using private IP addresses.
VPC peering enables instances in different VPCs to communicate as if they are within the same network.
Traffic between peered VPCs stays within the private IP space and does not traverse the internet.
VPC peering does not involve a gateway, VPN, or direct connection.
Both VPCs must have non-overlapping IP ranges for successful peering.
Example...
VPC is a virtual private cloud that allows you to create isolated networks within the cloud environment. Subnets are subdivisions of a VPC, route tables define how traffic is directed within the VPC, and NAT gateway allows instances in a private subnet to access the internet.
VPC is a virtual private cloud that provides a logically isolated section of the AWS Cloud where you can launch resources.
Subnets are subdivisions...
I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.
based on 2 interviews
Interview experience
SAP Abap Consultant
8
salaries
| ₹3 L/yr - ₹9.5 L/yr |
Senior SAP Abap Consultant
8
salaries
| ₹12.3 L/yr - ₹20 L/yr |
SAP MM Consultant
8
salaries
| ₹3 L/yr - ₹10 L/yr |
SAP Basis Consultant
7
salaries
| ₹1.9 L/yr - ₹6.2 L/yr |
SAP SD Consultant
7
salaries
| ₹4 L/yr - ₹15.9 L/yr |
TCS
Infosys
Wipro
HCLTech