i
Chetu
Filter interviews by
I appeared for an interview in Mar 2023.
There is an online test where many kind of question like aptitude, reasoning and in last some technical questions.
I shared my screen and interviews give me some problems for solve.
I appeared for an interview before Feb 2024.
Different types of relationships in Salesforce include Lookup, Master-Detail, and External Lookup.
Lookup relationship allows linking two objects together without affecting the deletion of records.
Master-Detail relationship is a parent-child relationship where the child record inherits security and ownership from the parent.
External Lookup relationship links a Salesforce object with an external object in an external sys...
Triggers are used to perform custom actions before or after specific events, while Process Builders are used to automate business processes.
Triggers are written in Apex code, while Process Builders are point-and-click tools in Salesforce.
Triggers can handle complex logic and multiple objects, while Process Builders are more declarative and easier to use.
Triggers execute at the database level, while Process Builders run...
I applied via Campus Placement and was interviewed in May 2023. There were 4 interview rounds.
This was having aptitude reasoning and pseudo codes.
Chatgpt vs Google bard
I applied via Naukri.com and was interviewed before May 2023. There were 3 interview rounds.
Multiple question math GK reasoning etc
String is mutable which mean one values assign then it can not change It create new object every execute String builder is immutable its values is changes dynamically means it can not create new object
Select *from table1,table and execute result Join queres
JavaScript anonymous functions in jQuery are used to create functions without a name, while JavaScript functions are named functions.
JavaScript functions are named and can be reused multiple times.
jQuery anonymous functions are used for event handling and callbacks.
JavaScript functions can be defined using the function keyword, while jQuery anonymous functions are created using the $ symbol.
Constructor type casting involves converting one data type to another in a constructor.
Constructor type casting is used to convert one data type to another in a constructor.
It can be done implicitly or explicitly depending on the languages.
For example, in Java, you can explicitly cast a data type in a constructor like this: int num = (int) doubleNum;
Reverse a string in C# without using built-in features
Create a character array from the input string
Use two pointers to swap characters at the beginning and end of the array
Continue swapping until the pointers meet in the middle
Sql queries and c# coding
Chetu interview questions for designations
I applied via Naukri.com and was interviewed before Jun 2023. There was 1 interview round.
Mixin is a way to reuse code in multiple classes by including the code in another class.
Mixin allows for code reuse by combining methods and attributes from multiple classes into a single class.
It helps in avoiding code duplication and promotes modular design.
An example of mixin is a class 'Logger' that contains logging methods and can be included in other classes to enable logging functionality.
Assets pipeline in Rails is a feature that helps manage and compile assets like CSS, JavaScript, and images for a Rails application.
The assets pipeline in Rails combines and minifies assets to improve performance.
It allows for easy organization and management of assets in a Rails project.
By default, Rails uses Sprockets as the assets pipeline to handle asset compilation and management.
You can customize the assets pipel...
Get interview-ready with Top Chetu Interview Questions
Just you have need to clear on assessment
Here interviewer asked to you for some technical and coding questions according to your profile
I applied via Approached by Company and was interviewed before Feb 2023. There were 2 interview rounds.
Angular lifecycle hooks are methods that allow you to tap into specific moments in the lifecycle of a component or directive.
ngOnInit() - called after the component is initialized
ngOnChanges() - called when the component's input properties change
ngDoCheck() - called during every change detection run
ngAfterContentInit() - called after content is projected into the component
ngAfterContentChecked() - called after every ch...
Directives are instructions given to a computer program to perform specific tasks or actions.
Directives are used in programming languages to control the behavior of the program.
They provide instructions to the compiler or interpreter on how to process the code.
Directives can define variables, include libraries, enable or disable certain features, etc.
Examples of directives include #include in C/C++, import in Python, o...
Pure pipe and impure pipe are concepts in Angular framework for data transformation.
Pure pipe is a pipe that is stateless and doesn't modify the input data.
Impure pipe is a pipe that can have side effects and modify the input data.
Pure pipes are more efficient as they are only executed when the input data changes.
Impure pipes are executed on every change detection cycle, even if the input data remains the same.
Pure pip...
Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.
Inheritance allows code reusability and promotes code organization.
The existing class is called the parent or superclass, and the new class is called the child or subclass.
The child class inherits all the properties and methods of the parent class and can also add new properties and metho...
The question is unclear and lacks context.
Please provide more information or rephrase the question.
Without context, it is difficult to understand what is being asked.
It is important to communicate clearly in technical interviews.
Routing is used to direct network traffic efficiently and securely.
Routing helps to find the best path for data packets to travel.
It enables load balancing and fault tolerance.
Routing protocols like OSPF, BGP, and EIGRP are used to manage routing tables.
Routing can be static or dynamic depending on the network requirements.
Thunk and saga are middleware libraries used in Redux for handling asynchronous actions.
Thunk is a function that wraps an expression to delay its evaluation.
Saga is a generator function that allows for complex control flow and error handling.
Thunk is simpler and easier to use, while Saga is more powerful and flexible.
Example: Thunk can be used to dispatch an action after an API call is complete.
Example: Saga can be use...
Life cycle methods are functions that are called at different stages of a component's life cycle in React.
There are three categories of life cycle methods: mounting, updating, and unmounting.
Mounting methods are called when a component is being created and inserted into the DOM.
Updating methods are called when a component's state or props change.
Unmounting methods are called when a component is being removed from the D...
foreach is used to iterate over an array and perform an action on each element, while map creates a new array by applying a function to each element of an existing array.
foreach does not return a new array, while map does
foreach can only perform an action on each element, while map can transform each element
foreach is useful for performing side effects, while map is useful for creating a new array with transformed elem
I appeared for an interview in Sep 2021.
Round duration - 60 Minutes
Round difficulty - Medium
This round had 2 coding questions where in I was first asked to explain my approach and then code the solution . After that , I was asked some more questions on OOPS and Java.
Given an array of integers ARR
of length N
and an integer Target
, your task is to return all pairs of elements such that they add up to the Target
.
The first line ...
The task is to find all pairs of elements in an array that add up to a given target.
Iterate through the array and for each element, check if the complement (target - current element) exists in a hash set.
If the complement exists, add the pair to the result. If not, add the current element to the hash set.
Handle edge cases like duplicates and ensuring each pair is unique.
Return (-1, -1) if no pair is found for a test ca
You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked list.
Your task is to determine t...
Find the node where two linked lists merge, return -1 if no merging occurs.
Traverse both lists to find the lengths and the difference in lengths
Adjust the starting point of the longer list to match the length of the shorter list
Traverse both lists in parallel until the nodes match, return the data of the matching node
The 'super' keyword is used in object-oriented programming to access and call methods or constructors of a parent class.
Used to call a method from the parent class that has been overridden in the child class
Used to call the constructor of the parent class from the child class constructor
Helps in achieving method overriding and constructor chaining
Data encapsulation is the concept of bundling data and methods that operate on the data into a single unit or class.
Data encapsulation helps in hiding the internal state of an object and restricting access to it.
It allows for better control over the data by preventing outside interference.
Encapsulation also helps in achieving data abstraction, where the internal details of an object are hidden and only the necessary in...
JIT compiler stands for Just-In-Time compiler, which compiles code during runtime instead of ahead of time.
JIT compiler improves performance by compiling code on-the-fly as it is needed
It can optimize code based on runtime conditions
Examples include Java HotSpot VM's JIT compiler and .NET's JIT compiler
Round duration - 60 Minutes
Round difficulty - Medium
This round had 1 coding question related to Backtracking followed by some more questions from DBMS and SQL.
You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...
Find all possible paths for a rat in a maze from source to destination.
Use backtracking to explore all possible paths in the maze.
Keep track of visited cells to avoid revisiting them.
Recursively try moving in all directions (up, down, left, right) until reaching the destination.
Return a list of strings representing valid paths sorted in alphabetical order.
ACID properties in DBMS ensure data integrity and consistency in transactions.
ACID stands for Atomicity, Consistency, Isolation, and Durability.
Atomicity ensures that either all operations in a transaction are completed or none are.
Consistency ensures that the database remains in a valid state before and after the transaction.
Isolation ensures that multiple transactions can occur concurrently without affecting each oth...
Different types of joins in SQL include inner join, outer join, left join, right join, and full join.
Inner join: Returns rows when there is a match in both tables
Outer join: Returns all rows when there is a match in one of the tables
Left join: Returns all rows from the left table and the matched rows from the right table
Right join: Returns all rows from the right table and the matched rows from the left table
Full join:...
Constraints in SQL are rules and restrictions applied to columns in a table to enforce data integrity.
Constraints ensure data accuracy and consistency in a database.
Common constraints include NOT NULL, UNIQUE, PRIMARY KEY, FOREIGN KEY, and CHECK constraints.
NOT NULL constraint ensures a column cannot have a NULL value.
UNIQUE constraint ensures all values in a column are unique.
PRIMARY KEY constraint uniquely identifies...
Round duration - 30 Minutes
Round difficulty - Easy
This was a typical HR round with some standard Behavioral questions.
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 LinkedIn and was interviewed before Apr 2023. There were 2 interview rounds.
2 Javascript program from Array
Top trending discussions
Some of the top questions asked at the Chetu Software Engineer interview -
The duration of Chetu Software Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 26 interviews
3 Interview rounds
based on 209 reviews
Rating in categories
Software Engineer
1.2k
salaries
| ₹2.5 L/yr - ₹11 L/yr |
Software Developer
1k
salaries
| ₹2 L/yr - ₹9 L/yr |
Senior Software Engineer
644
salaries
| ₹4.4 L/yr - ₹10.5 L/yr |
Team Lead
282
salaries
| ₹4.2 L/yr - ₹13.5 L/yr |
Senior Software Developer
220
salaries
| ₹4.6 L/yr - ₹11 L/yr |
Thomson Reuters
Oracle Cerner
R Systems International
EbixCash Limited