Filter interviews by
Top trending discussions
posted on 28 Feb 2022
I applied via Company Website and was interviewed in Aug 2021. There was 1 interview round.
posted on 10 Feb 2022
I applied via Campus Placement and was interviewed before Feb 2021. There were 2 interview rounds.
Aptitude test based on core knowledge and general aptitude
posted on 17 May 2022
I applied via Campus Placement and was interviewed before May 2021. There were 4 interview rounds.
I am willing to join the company and have plans for further education.
I am highly interested in joining the company and contributing to its success.
I believe that working for this company will provide me with valuable experience and opportunities for growth.
I have plans to pursue further education in order to enhance my skills and knowledge.
I am committed to continuous learning and staying updated with the latest advan...
posted on 1 Dec 2022
I applied via Campus Placement and was interviewed in Jun 2022. There were 5 interview rounds.
The aptitude test was online. The English, quantitative and qualitative analysis was tested.
2 coding questions were asked. 40 minutes time was given.
posted on 4 Apr 2022
I appeared for an interview in Apr 2021.
Round duration - 45 minutes
Round difficulty - Easy
This was a technical round with questions on core computer engineering subjects.
SDLC is a process used by software development teams to design, develop, and test high-quality software efficiently.
SDLC consists of several phases including planning, analysis, design, implementation, testing, and maintenance.
Each phase has specific goals and deliverables to ensure the software meets requirements and is of high quality.
Examples of SDLC models include Waterfall, Agile, and DevOps.
SDLC helps in managing...
A bandpass filter is a type of electronic filter that allows signals within a certain frequency range to pass through while attenuating signals outside of that range.
Bandpass filters are used to selectively filter out unwanted frequencies in electronic circuits.
They have a lower cutoff frequency and an upper cutoff frequency that define the range of frequencies that can pass through.
Examples of bandpass filters include...
Cutoff frequency is the frequency at which the output power is half of the maximum power.
Cutoff frequency is commonly used in signal processing and filter design.
It is the frequency at which the output power drops to half (-3 dB) of the maximum power.
In low-pass filters, cutoff frequency is the frequency at which the output signal is attenuated by 3 dB.
In high-pass filters, cutoff frequency is the frequency at which th
32-bit operating systems can only utilize up to 4GB of RAM, while 64-bit operating systems can handle much larger amounts of RAM.
32-bit operating systems can only address up to 4GB of RAM, limiting the amount of memory that can be used by the system and applications.
64-bit operating systems can handle larger amounts of RAM, allowing for better performance and the ability to run more demanding applications.
64-bit operat...
Tip 1 : First of all, you must prepare everything whatever you wrote in your resume.
Tip 2 : If you are a CSE student, must have knowledge about SQL, DBMS , and oops concept and programming which you wrote in your resume.
Tip 3 : For non-CS/IT : should know about your basic core questions, as well as programming, SQL , DBMS etc.
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 Jun 2021. There were 3 interview rounds.
Polymorphism is the ability of an object to take on many forms. It allows objects of different classes to be treated as if they were of the same class.
Polymorphism allows objects to be used in a flexible and dynamic way
It enables the use of a single interface to represent multiple types of objects
Examples include method overloading, method overriding, and interfaces
For example, a shape class can have multiple subclasse...
Inheritance is a mechanism in OOP where a new class is derived from an existing class.
Inheritance allows the new class to inherit the properties and methods of the existing class.
The existing class is called the base class or parent class, while the new class is called the derived class or child class.
Syntax in Java: class ChildClass extends ParentClass { //class body }
Reverse a string using built-in function or loop through the string.
Use built-in function like reverse() in Python or loop through the string and swap characters.
In C++, use swap() function to swap characters in the string.
In Java, use StringBuilder class to reverse the string.
In JavaScript, use split(), reverse() and join() functions to reverse the string.
Exception handling is the process of handling errors that occur during program execution. Garbage collector is a program that automatically frees up memory space.
Exception handling is used to prevent program crashes due to errors.
It involves catching and handling errors using try-catch blocks.
Garbage collector is used to automatically free up memory space that is no longer being used by the program.
It helps prevent mem...
Data structures are ways of organizing and storing data in a computer so that it can be accessed and used efficiently.
Data structures are used to manage large amounts of data efficiently.
They provide a way to store and organize data in a way that makes it easy to access and manipulate.
Examples of data structures include arrays, linked lists, stacks, queues, trees, and graphs.
Algorithms are a set of instructions that ar...
Tree traversal is the process of visiting each node in a tree data structure exactly once.
There are three types of tree traversal: Inorder, Preorder, and Postorder.
Inorder traversal visits the left subtree, then the root, then the right subtree.
Preorder traversal visits the root, then the left subtree, then the right subtree.
Postorder traversal visits the left subtree, then the right subtree, then the root.
Examples: In...
posted on 28 Aug 2021
I applied via Campus Placement and was interviewed in Feb 2021. There were 4 interview rounds.
posted on 4 Apr 2022
I appeared for an interview in Jun 2021.
Round duration - 60 minutes
Round difficulty - Easy
This was a technical round with questions on DSA, OOPS and DBMS.
Given a string STR
containing characters from [a-z], [A-Z], [0-9], and special characters, determine the reverse of the string.
The input starts with a single i...
The task is to reverse a given string containing characters from [a-z], [A-Z], [0-9], and special characters.
Iterate through the characters of the string from the end to the beginning and append them to a new string to get the reversed string.
Use built-in functions like reverse() or StringBuilder in languages like Java for efficient reversal.
Ensure to handle special characters and numbers along with alphabets while rev...
Types of polymorphism in OOP include compile-time polymorphism (method overloading) and runtime polymorphism (method overriding).
Compile-time polymorphism is achieved through method overloading, where multiple methods have the same name but different parameters.
Runtime polymorphism is achieved through method overriding, where a subclass provides a specific implementation of a method that is already defined in its super...
Inheritance is a concept in object-oriented programming where a class inherits attributes and methods from another class.
Allows a class to inherit properties and behaviors from another class
Promotes code reusability and reduces redundancy
Types of inheritance include single, multiple, multilevel, and hierarchical
Example: Class 'Car' can inherit from class 'Vehicle' to access common attributes like 'color' and methods li
Garbage collection in Java automatically manages memory by reclaiming unused objects.
Garbage collection identifies and removes objects that are no longer reachable by the program.
It helps prevent memory leaks and allows developers to focus on writing code rather than managing memory.
Java uses different garbage collection algorithms like Serial, Parallel, CMS, and G1.
Developers can also manually trigger garbage collecti
Checked exceptions are checked at compile time, while unchecked exceptions are not.
Checked exceptions must be either caught or declared in the method signature using 'throws' keyword.
Unchecked exceptions do not need to be caught or declared.
Examples of checked exceptions include IOException, ClassNotFoundException. Examples of unchecked exceptions include NullPointerException, ArrayIndexOutOfBoundsException.
Round duration - 30 minutes
Round difficulty - Easy
This was a typical managerial round.
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 19 Jul 2023
I applied via Naukri.com and was interviewed before Jul 2022. There were 4 interview rounds.
1hr aptitude test
easily solvable
To excel in a domain, one must know where to focus their learning and what specific knowledge is required.
Research the current trends and advancements in the domain
Understand the key concepts and principles of the domain
Identify the important tools and technologies used in the domain
Learn from experts and professionals in the field
Stay updated with industry news and developments
Software Engineer
3.4k
salaries
| ₹2.7 L/yr - ₹12.8 L/yr |
Senior Software Engineer
2k
salaries
| ₹6 L/yr - ₹19.8 L/yr |
QA Engineer
1k
salaries
| ₹3 L/yr - ₹11 L/yr |
Senior QA Engineer
776
salaries
| ₹6.2 L/yr - ₹15 L/yr |
System Analyst
746
salaries
| ₹10 L/yr - ₹25 L/yr |
Mphasis
eClerx
L&T Technology Services
Coforge