Upload Button Icon Add office photos

Filter interviews by

Charitism Interview Questions and Answers

Updated 30 Jun 2024

Charitism Interview Experiences

Popular Designations

3 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Asked to build Blog managment system it's like todo list

Round 2 - Technical 

(2 Questions)

  • Q1. What is virtual dom
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM used for efficient updates in web development.

    • Virtual DOM is a concept used in frameworks like React to improve performance by minimizing actual DOM updates.

    • Changes are first made to the virtual DOM, then compared with the actual DOM to only update what has changed.

    • This process reduces the number of manipulations needed on the real DOM, resulting in faster rendering.

    • V...

  • Answered by AI
  • Q2. React hooks and usages
Round 3 - HR 

(2 Questions)

  • Q1. Techinal and HR
  • Q2. Simple hr questions about, hobbies

Interview Preparation Tips

Interview preparation tips for other job seekers - practice react hooks

Skills evaluated in this interview

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Do you have any past experience?
  • Q2. What's your education qualification?
Round 2 - One-on-one 

(3 Questions)

  • Q1. Did you go through the company's website?
  • Q2. What changes would you make in the website and why?
  • Q3. What's your expectation from the company?

Interview Preparation Tips

Interview preparation tips for other job seekers - The first advice would be to go through the company's website and know about all the current running campaigns and what the company is focused upon.
Secondly, you can practice more of the basic HR questions for further processes.

Customer Support Executive Interview Questions asked at other Companies

Q1. Understanding customer problems,whT i know about BPO nd how they work,how i will handle a difficult nd angry customer,i can satisfied my client.
View answer (21)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Internshala and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Assignment 

Reactjs Assisgnment with 2 days dead line

Round 2 - Technical 

(4 Questions)

  • Q1. Technial interview , asked question on session storeage, cookies , reactjs concepts , life cycle
  • Q2. React js life cycle methods
  • Q3. Difference between cookies storage and session storage
  • Ans. 

    Cookies are stored on the client side and have expiration dates, while session storage is temporary and stored on the client side.

    • Cookies are stored on the client side and can be set to expire at a specific time.

    • Session storage is temporary and is cleared when the browser is closed.

    • Cookies have a limit of 4KB of data, while session storage can store larger amounts of data.

    • Cookies are sent with every HTTP request, while

  • Answered by AI
  • Q4. Dom Vs Virtual Dom difference
  • Ans. 

    DOM is the actual representation of the HTML document, while Virtual DOM is a lightweight copy of the DOM used for efficient updates.

    • DOM represents the actual HTML document structure that is rendered on the screen.

    • Virtual DOM is a lightweight copy of the DOM kept in memory by frameworks like React for efficient updates.

    • Changes made to the Virtual DOM are compared with the actual DOM, and only the differences are update...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Questions on Assignemnt and Html, css concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare well the basic concepts of react and general web develoment basic

Skills evaluated in this interview

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

Interview questions from similar companies

Interview Preparation Tips

Skills: Coding Skills, Speaking Skills, Confidence, Hardwork, Intelligence, Time Management, How Well You Can Handle Stress
College Name: IIT Patna

I was interviewed before Sep 2016.

Interview Preparation Tips

Round: Test
Experience: This was a group test. We were asked to answer and complete all questions from both sections. Test was conducted in TCS campus in Pune
Tips: Learning basic level Maths and English will help clear this test
Duration: 2 hours
Total Questions: 45

Round: Test Selection
Experience: This was a direct shortlist from all who cleared the test

College Name: Sinhgad Academy of Engineering

I was interviewed in Nov 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

Part 1. 7 Bug fixes 
Part 2. 2 DSA Medium Hard Questions
Part 3: Behavioral Questions MCQ

  • Q1. 

    Container with Most Water Problem Statement

    Given a sequence of 'N' space-separated non-negative integers A[1], A[2], ..., A[i], ..., A[n], where each number in the sequence represents the height of a lin...

  • Ans. 

    Given a sequence of non-negative integers representing the height of lines on a cartesian plane, find two lines that form a container with the maximum area of water.

    • Use two pointers approach to find the maximum area

    • Start with the widest container and gradually move the pointers towards each other

    • Calculate the area at each step and update the maximum area

    • The area is calculated as the minimum height of the two lines mult

  • Answered by AI
  • Q2. 

    Minimum Travel Cost Problem

    You are given a country called 'Ninjaland' with 'N' states, numbered from 1 to 'N'. These states are connected by 'M' bidirectional roads, each with a specified travel cost. Th...

  • Ans. 

    The task is to select 'N' - 1 roads in a country with 'N' states, such that the tourist bus can travel to every state at least once at minimum cost.

    • The problem can be solved using a minimum spanning tree algorithm, such as Kruskal's algorithm or Prim's algorithm.

    • Create a graph representation of the country using the given roads and their costs.

    • Apply the minimum spanning tree algorithm to find the minimum cost roads tha...

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 80 minutes
Round difficulty - Medium

Face to Face DSA online round conducted on Amazon Chime platform.

  • Q1. 

    First Missing Positive Problem Statement

    You are provided with an integer array ARR of length 'N'. Your objective is to determine the first missing positive integer using linear time and constant space. T...

  • Ans. 

    The task is to find the lowest positive integer that does not exist in the given array of integers.

    • Iterate through the array and mark the positive integers as visited using the array indices.

    • Iterate through the marked array and return the index of the first unmarked element.

    • If all positive integers are marked, return the length of the array + 1 as the missing positive integer.

  • Answered by AI
  • Q2. 

    Simplify Directory Path Problem Statement

    You are provided with a directory path in Unix-style notation, and your task is to simplify it according to given rules.

    In a Unix-style file system:

    • A dot (...
  • Ans. 

    The task is to simplify a given Unix-style directory path and determine the final destination.

    • Replace multiple slashes with a single slash

    • Handle dot (.) by ignoring it

    • Handle double dot (..) by removing the previous directory from the path

    • Ensure the simplified path starts with a slash and does not have a trailing slash

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Face to Face DSA Round where I was asked 2 coding questions

  • Q1. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    Given an array and a target sum, find all pairs of elements in the array that add up to the target sum.

    • Create an empty list to store the pairs

    • Iterate through the array and for each element, check if there is a complement (target sum minus the current element) in the array

    • If a complement is found, add the pair (current element, complement) to the list

    • Sort the list of pairs in non-decreasing order of their first value

    • If ...

  • Answered by AI
  • Q2. 

    Frequency in a Sorted Array Problem Statement

    Given a sorted array ARR and a number X, your task is to determine the count of occurrences of X within ARR.

    Note:

    • If X is not found in the array, return...
  • Ans. 

    The task is to count the number of occurrences of a given number in a sorted array.

    • Use binary search to find the first and last occurrence of the given number in the array.

    • Subtract the indices of the first and last occurrence to get the count.

    • Handle the case when the number is not found in the array.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Heritage Institute of Technology. Eligibility criteriaNo eligibility criteriaAmazon interview preparation:Topics to prepare for the interview - Arrays, Linked List, Binary Search, Stack, Queue, DFS, BFS, String, RecursionTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Solve Leetcode/SDE sheet provided by Striver most problems came from the Sheet itself 
Tip 2 : Try to solve the 1st of the 2 questions as fast as possible as the time limit is 1 hour 
Tip 3 : Make sure you have projects and have done some internship's so that they can actually ask questions from the resume.

Application resume tips for other job seekers

Tip 1 : Have some projects on your resume
Tip 2 : It helps if you had even some small internship experience in the past

Final outcome of the interviewRejected

Skills evaluated in this interview

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 180 minutes
Round difficulty - Medium

  • Q1. 

    LRU Cache Task Description

    Design and implement a data structure for a Least Recently Used (LRU) cache to support two operations:

    1. get(key) - Returns the value for the given key if it exists in the cac...
  • Ans. 

    Design and implement a Least Recently Used (LRU) cache data structure supporting get and put operations with specified constraints.

    • Implement a data structure for LRU cache with get and put operations

    • Maintain a capacity limit and remove least recently used item when exceeding capacity

    • Handle get operation by returning value for given key or -1 if key does not exist

    • Handle put operation by inserting or updating key-value p...

  • Answered by AI
Round 2 - Video Call 

Round duration - 30 minutes
Round difficulty - Hard

Round 3 - HR 

(1 Question)

Round duration - 15-20 minutes
Round difficulty - Easy

  • Q1. Can you tell me about yourself and describe some condition-based questions you were asked?

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in PuneEligibility criteriaNo criteriaCognizant interview preparation:Topics to prepare for the interview - Computer network, C++, Oops, Data structure, DBMS, SQL, cloud computingTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : First of all you have to clear first round so make sure you practice aptitude questions daily
Tip 2 : Learn each and every topic of Oops with real life examples
Tip 3 : Write limited thing in your resume and make sure everything you write in your resume you must have a great knowledge of them.

Application resume tips for other job seekers

Tip 1: mention atleast two projects
Tip 2:if you have a patent then it is plus point for you.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Coding Test 

It was a question on heaps

Round 2 - One-on-one 

(2 Questions)

  • Q1. Stack based(related to nearest larger element to right)
  • Q2. Heap based( where if two rocks have same weight, eliminate both, otherwise keep the difference)

Interview Preparation Tips

Topics to prepare for Amazon Software Developer Intern interview:
  • Stacks
  • Heaps
  • Trees
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Coding Test 

2 OA questions the difficulty like LC medium hard

Round 2 - Technical 

(2 Questions)

  • Q1. 2 data structures and algorithms questions
  • Q2. Longest substring without repeating characters
  • Ans. 

    Find the longest substring without repeating characters in a given string.

    • Use a sliding window approach to keep track of the current substring without repeating characters.

    • Use a hash set to store the characters in the current substring and check for duplicates.

    • Update the start index of the window when a duplicate character is found to maintain the longest substring without repeating characters.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Basic aptitude and data structures along with some personality based questions

Round 2 - Technical 

(2 Questions)

  • Q1. Coding question on sliding window algorithm
  • Q2. Standard leetcode medium problem on binary search

Interview Preparation Tips

Interview preparation tips for other job seekers - practise well before the interviews

Charitism Interview FAQs

How many rounds are there in Charitism interview?
Charitism interview process usually has 2-3 rounds. The most common rounds in the Charitism interview process are Technical, HR and Assignment.
What are the top questions asked in Charitism interview?

Some of the top questions asked at the Charitism interview -

  1. Difference between cookies storage and session stor...read more
  2. Dom Vs Virtual Dom differe...read more
  3. what is virtual ...read more

Tell us how to improve this page.

Charitism Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.7
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
View all

Charitism Reviews and Ratings

based on 15 reviews

4.5/5

Rating in categories

4.5

Skill development

4.4

Work-life balance

4.2

Salary

4.4

Job security

4.5

Company culture

4.3

Promotions

4.5

Work satisfaction

Explore 15 Reviews and Ratings
Compare Charitism with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview