i
Coforge
Filter interviews by
I applied via Naukri.com and was interviewed in Aug 2023. There were 4 interview rounds.
The sed command is used for text manipulation in Unix.
sed stands for stream editor
It can perform operations like search, replace, insert, and delete on text files
It uses regular expressions for pattern matching
Commonly used flags include -e (execute script), -i (in-place editing), and -n (suppress automatic printing)
Examples: sed 's/foo/bar/g' file.txt (replace all occurrences of 'foo' with 'bar' in file.txt)
sed '/patt...
Awk is a powerful text processing tool used for pattern scanning and processing data.
Awk is a scripting language primarily used for manipulating and analyzing text files.
It operates on a line-by-line basis, processing each line and performing actions based on patterns.
Awk is commonly used for tasks like data extraction, report generation, and text transformation.
It supports various built-in functions and operators for ...
Job scheduler is a tool used to automate and manage the scheduling of tasks and processes in a computer system.
Automates the execution of tasks at specified times or intervals
Helps in optimizing resource utilization by efficiently managing workload
Provides visibility into job status and performance metrics
Allows for dependencies between tasks to be defined and managed
Examples: Cron job scheduler in Unix/Linux, Task Sch
I handle application slowness by identifying the root cause through node classification and implementing performance optimizations.
Identify the specific node or component causing the slowness
Analyze the performance metrics of the node to pinpoint bottlenecks
Implement optimizations such as code refactoring, database tuning, or resource allocation adjustments
Monitor the application post-optimization to ensure improvement
posted on 4 Dec 2024
I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.
Azure Functions is a serverless compute service that lets you run event-triggered code without having to explicitly provision or manage infrastructure.
Azure Functions allows you to write small pieces of code that run in response to events.
It supports multiple programming languages like C#, JavaScript, Python, etc.
You can easily integrate Azure Functions with other Azure services like Azure Storage, Azure Cosmos DB, etc...
posted on 2 Jul 2024
An IP address is a unique numerical label assigned to each device connected to a computer network.
IP address stands for Internet Protocol address.
It is used to identify and locate devices on a network.
There are two types of IP addresses - IPv4 and IPv6.
Example of IPv4 address: 192.168.1.1
Example of IPv6 address: 2001:0db8:85a3:0000:0000:8a2e:0370:7334
The OSI model is a conceptual framework that standardizes the functions of a telecommunication or computing system into seven distinct layers.
The OSI model stands for Open Systems Interconnection model
It helps in understanding how different networking protocols work together
Each layer has specific functions and communicates with adjacent layers
Examples of layers include physical layer, data link layer, network layer, e
The daily routine of an IT Support Engineer involves troubleshooting technical issues, providing support to end users, and maintaining IT systems.
Responding to help desk tickets and resolving technical issues
Installing and configuring hardware and software
Providing technical support to end users via phone, email, or in person
Performing routine maintenance on IT systems
Documenting solutions and procedures for future ref
posted on 14 Jun 2023
I applied via Company Website and was interviewed in May 2023. There were 2 interview rounds.
posted on 5 Jan 2025
I applied via Naukri.com and was interviewed before Jan 2024. There was 1 interview round.
Program for bubble sort
posted on 11 Mar 2022
I was interviewed in Jul 2021.
Round duration - 50 Minutes
Round difficulty - Medium
In this round, the interviewer first asked me a preety basic coding question related to Backtracking. Then he switched to questions revolving around Java , Spring Boot and Kafka.
1. The input string may contain the same charac...
Approach :
We can find all the permutations by Backtracking.
1) Fix a character then swap all the rest of the remaining character with a fixed character.
2) Then find all permutations for all remaining characters by the recursive call.
3) The base case for the recursion will be when there is only one character left unprocessed.
TC : O(N*N!), where N = length of the String.
SC : O(N)
Explain the use of final keyword in variable, method and class.
In Java, the final keyword is used as defining something as constant /final and represents the non-access modifier.
1) final variable :
i) When a variable is declared as final in Java, the value can’t be modified once it has been assigned.
ii) If any value has not been assigned to that variable, then it can be assigned only by the constructor of the class.
2) final method :
i) A method declared as final cannot be overridden...
How would you differentiate between a String, StringBuffer, and a StringBuilder?
1) Storage area : In string, the String pool serves as the storage area. For StringBuilder and StringBuffer, heap
memory is the storage area.
2) Mutability : A String is immutable, whereas both the StringBuilder and StringBuffer are mutable.
3) Efficiency : It is quite slow to work with a String. However, StringBuilder is the fastest in performing operations. The
speed of a StringBuffer is more than a String and less than ...
What is dependency Injection?
The process of injecting dependent bean objects into target bean objects is called dependency injection.
1) Setter Injection : The IOC container will inject the dependent bean object into the target bean object by calling the
setter method.
2) Constructor Injection : The IOC container will inject the dependent bean object into the target bean object by
calling the target bean constructor.
3) Field Injection : The IOC contai...
What is the root application context in Spring MVC? How is it loaded?
In Spring MVC, the context loaded using ContextLoaderListener is called the "root" application context which belongs
to the whole application while the one initialized using DispatcherServlet is actually specific to that servlet.
Technically, Spring MVC allows multiple DispatcherServlet in a Spring MVC web application and so multiple such
contexts each specific for respective servlet but having the same root context may e
What are the four core API architectures that Kafka uses?
Following are the four core APIs that Kafka uses :
1) Producer API : In Apache Kafka, the Producer API allows an application to publish a stream of records to one or more Kafka topics.
2) Consumer API : In Apache Kafka, the consumer API allows an application to subscribe to one or more Kafka topics. It also enables the application to process streams of records generated about such topics.
3) Streams API : In Apache ...
What are the use cases of Kafka monitoring?
Following are the use cases of Apache Kafka monitoring :
1) Apache Kafka monitoring can keep track of system resources consumption such as memory, CPU, and disk utilization over time.
2) Apache Kafka monitoring is used to monitor threads and JVM usage. It relies on the Java garbage collector to free up memory, ensuring that it frequently runs, thereby guaranteeing that the Kafka cluster is more active.
3) It can be ...
Round duration - 60 Minutes
Round difficulty - Medium
This round primarily focused on questions related to Spring Boot and Hibernate. As I already had some projects in Java , I was familiar to both Spring and Hibernate - what are they used for , their basic understanding and all . So, this round also went preety well as I was able to answer most of the questions with little to no hints as far as possible.
How does Spring Boot works?
Spring Boot automatically configures your application based on the dependencies you have added to the project by using annotation. The entry point of the spring boot application is the class that contains @SpringBootApplication annotation and the main method.
Spring Boot automatically scans all the components included in the project by using @ComponentScan annotation.
What are the major differences between RequestMapping and GetMapping?
RequestMapping can be used with GET, POST, PUT, and many other request methods using the method attribute on the annotation. Whereas GetMapping is only an extension of RequestMapping, which helps you to improve clarity on requests.
Explain @RestController annotation in Sprint boot?
It is a combination of @Controller and @ResponseBody, used for creating a restful controller. It converts the response to JSON or XML. It ensures that data returned by each method will be written straight into the response body instead of returning a template.
What Are the Basic Annotations that Spring Boot Offers?
The primary annotations that Spring Boot offers reside in its "org.springframework.boot.autoconfigure" and its sub-packages. Here are a couple of basic ones:
@EnableAutoConfiguration – to make Spring Boot look for auto-configuration beans on its classpath and automatically apply them.
@SpringBootApplication – used to denote the main class of a Boot Application. This annotation combines @Configuration, @EnableAutoConfigur...
How do you create an immutable class in hibernate?
Immutable class in hibernate creation could be in the following way. If we are using the XML form of configuration,
then a class can be made immutable by markingmutable=false. The default value is true there which indicating that
the class was not created by default.
In the case of using annotations, immutable classes in hibernate can also be created by using @Immutable
annotation.
What is hibernate caching?
Hibernate caching is the strategy for improving the application performance by pooling objects in the cache so that
the queries are executed faster. Hibernate caching is particularly useful when fetching the same data that is executed
multiple times. Rather than hitting the database, we can just access the data from the cache. This results in reduced
throughput time of the application.
Types of Hibernate Caching
First Level...
Explain Query Cache
Hibernate framework provides an optional feature called cache region for the queries’ resultset. Additional configurations have to be done in code in order to enable this. The query cache is useful for those queries which are most frequently called with the same parameters. This increases the speed of the data retrieval and greatly improves performance for commonly repetitive queries.
This does not cache the state of ac...
Round duration - 30 Minutes
Round difficulty - Easy
This is a cultural fitment testing round. HR was very frank and asked standard questions. Then we discussed about my
role.
Why should we hire you ?
Tip 1 : The cross questioning can go intense some time, think before you speak.
Tip 2 : Be open minded and answer whatever you are thinking, in these rounds I feel it is important to have opinion.
Tip 3 : Context of questions can be switched, pay attention to the details. It is okay to ask questions in these round,
like what are the projects currently the company is investing, which team you are mentoring. How all is the ...
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.
posted on 1 Sep 2021
I applied via Naukri.com and was interviewed in Aug 2021. There were 3 interview rounds.
based on 10 reviews
Rating in categories
Senior Software Engineer
4.8k
salaries
| ₹6.3 L/yr - ₹25.2 L/yr |
Technical Analyst
2.5k
salaries
| ₹9.3 L/yr - ₹38.4 L/yr |
Software Engineer
2k
salaries
| ₹2.2 L/yr - ₹9.5 L/yr |
Senior Test Engineer
1.8k
salaries
| ₹4.6 L/yr - ₹19.3 L/yr |
Technology Specialist
1.2k
salaries
| ₹11.8 L/yr - ₹42 L/yr |
Capgemini
Cognizant
Accenture
Infosys