Upload Button Icon Add office photos

Tk20

Compare button icon Compare button icon Compare
4.0

based on 14 Reviews

Filter interviews by

Tk20 Interview Questions and Answers

Updated 4 Aug 2023

Tk20 Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Walk-in and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - One-on-one 

(5 Questions)

  • Q1. What's your questions?
  • Q2. What's you Work experience?
  • Q3. What is tax invoice ?
  • Ans. 

    A tax invoice is a document issued by a seller to a buyer, detailing the goods or services provided and the amount due including taxes.

    • Contains details of the seller and buyer

    • Includes a breakdown of goods or services provided

    • Lists the amount due including taxes

    • Used for tax purposes and as a proof of purchase

  • Answered by AI
  • Q4. What's you father work ?
  • Q5. Whats about sisters?

Interview Preparation Tips

Interview preparation tips for other job seekers - Hiii

Linux System Administrator Interview Questions asked at other Companies

Q1. What are the causes of user not able to login application
View answer (9)

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed before Jul 2019. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Explain about yourself
  • Q2. Explain something
  • Ans. 

    Explaining something involves breaking down a concept or process into simpler terms for better understanding.

    • Start by providing an overview of the topic

    • Break down the key components or steps involved

    • Use examples or analogies to clarify complex ideas

    • Conclude by summarizing the main points

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Flexible and good management

I applied via Referral and was interviewed in Sep 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. There were asked about the company and basic knowledge about the company?
  • Ans. I started giving them info about the company. Razorpay is a company which helps in money management for online business and by providing clean and hassel free platform. It is a fast affordable and secured way of sending and receiving online payment. Which is highly helpful for merchant, E-commerce and other company.
  • Answered Anonymously
  • Q2. And they asked about the basic info of KYC and AML?
  • Ans. AML and KYC is interlinked process. KYC is a path of Due Diligence process. Accurate info about the customer. By perform will be aware of any unusual activities. During KYC process it includes DOB, Name, Photo ID of the customer should be recoverd and verified. When you need to established an organisation or where an individual act on behalf of other person. We need to identify the beneficial owner. AML : Ant...
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - We need to be bold at the time of interview. We want speak up boldly in front them. Your answers should be short and sweet. Accept as is and don’t manipulate any answers. Ask for the feedback at the end of interview.

I applied via Other and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Core java questions like inheritance, encapsulation collection framework. Then I was asked to write a code (logic) for reversing the integers (i.e. 1 2 3 4 5 is given your code should execute and display 5...
  • Q2. Automation questions- selenium, testng, page object model
  • Q3. Testing scenario based question.

Interview Preparation Tips

Interview preparation tips for other job seekers - First things is not to fear . Secondly keep the track of the questions asked in all interview and prepare answer well for those as it's difficult to clear in the interview at the first. I have attended 5 interview and noted all the questions asked and prepared well for the same.

Next imp thing prepare well for "Tell me about you're self" here u will talk about your project experience . So tell on which part you're confident because next question is coming from that which you tell in "Tell me about you're self"

Hope this helps!

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

7 Questions

  • Q1. How do you connect a component to Redux store? Which function in Redux is used to connect to store? What are the parameters in connect?
  • Ans. 

    To connect a component to Redux store, we use the connect function from the react-redux library.

    • Import the connect function from react-redux.

    • Use the connect function to wrap the component and connect it to the Redux store.

    • The connect function takes two parameters: mapStateToProps and mapDispatchToProps.

    • mapStateToProps is a function that maps the state from the Redux store to the component's props.

    • mapDispatchToProps is ...

  • Answered by AI
  • Q2. What is Context API in React? Is there a need to have an initial state in Context API?
  • Ans. 

    Context API is a way to share data between components without passing props down manually.

    • Context API provides a way to pass data through the component tree without having to pass props down manually at every level.

    • It is useful for sharing data that needs to be accessed by many components at different levels of the tree.

    • Initial state can be set in Context API using the createContext() function.

    • There is no need to have ...

  • Answered by AI
  • Q3. Do Reducer need to have an initial state compulsorily?
  • Ans. 

    Yes, it is mandatory for Reducer to have an initial state.

    • Initial state defines the starting point of the state tree.

    • It helps in defining the shape of the state tree.

    • It is used to set default values for the state properties.

    • It is also used to reset the state to its initial values.

    • Example: const initialState = { count: 0 };

    • Example: const initialState = { name: '', age: 0 };

  • Answered by AI
  • Q4. What is the minimum coverage for an app? How much code do you push to production/master branch while deployment?
  • Ans. 

    Minimum coverage for an app and code pushed to production/master branch while deployment.

    • Minimum coverage for an app depends on the project requirements and complexity.

    • Generally, a coverage of 80% or higher is considered good.

    • Code pushed to production/master branch should be thoroughly tested and reviewed.

    • Continuous integration and deployment can help automate this process.

    • Examples of tools for code coverage include Je

  • Answered by AI
  • Q5. Will React re-render whole page or just a part of it?
  • Ans. 

    React re-renders just the part of the page that has changed, thanks to its virtual DOM.

    • React uses a virtual DOM to track changes in the UI.

    • When a component's state or props change, React compares the virtual DOM with the real DOM and updates only the necessary parts.

    • This approach improves performance by minimizing the number of DOM manipulations.

    • React's diffing algorithm efficiently determines the minimal set of change

  • Answered by AI
  • Q6. What are the use cases of Service Workers?
  • Ans. 

    Service Workers are scripts that run in the background and can intercept network requests, cache or modify responses.

    • Offline support for web applications

    • Push notifications

    • Background synchronization

    • Reduced network usage and faster page loads

    • Progressive Web Apps (PWA)

  • Answered by AI
  • Q7. Explain Redux-Saga middleware. How do you Dispatch actions from components in Redux?
  • Ans. 

    Redux-Saga is a middleware for Redux that handles side effects. Actions can be dispatched from components using mapDispatchToProps.

    • Redux-Saga is used to handle side effects like API calls and asynchronous actions.

    • It uses generator functions to make asynchronous code look synchronous.

    • Sagas listen for specific actions and perform tasks based on those actions.

    • To dispatch actions from components, use mapDispatchToProps to ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Appeared for the First Round Technical Interview. Video call. Interviewer was a nice person. You can clear this round if your concepts are clear about react, Redux, Middleware or other keywords mentioned in your resume.

Skills evaluated in this interview

I applied via Recruitment Consultant

Interview Questionnaire 

2 Questions

  • Q1. Round 1: Fundamentals questions related to Javascript and React. In React questions were focused on react-hooks. lifecycle components and optimization techniques in react. Basic to intermediate questions r...
  • Q2. Round 2: The interview panel will ask you to code some basic coding problem depending on your relevant experience and if you're not able to solve it they'll directly say they're done with the interview. In...

Interview Preparation Tips

Interview preparation tips for other job seekers - I cleared Round 1 after which there was a delay of more than 2 weeks and got a call for Round 2 without any prior notice. Their L2 level interview is very bad, in my case I ended the interview from my side as it looked very clear that the panel was least interested.

Interview Questionnaire 

2 Questions

  • Q1. Why do prefer our organizations and what have you accomplished on the current role are the most expected questions.
  • Q2. Definitely you should have a reason as to why apply for certain organization and for the second one. It is more preferred to be realistic with what your accomplishments are as well as make it more clear an...

I applied via Campus Placement and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Why u choose this job ?
  • Q2. Why u preferred this company?
  • Q3. If I will give you job how would u increase the company standard or status

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice don't panic feel free say what u know that's it it is right or wrong

Interview Questionnaire 

4 Questions

  • Q1. Why not given to all employees opportunity for high level
  • Q2. Why Only given opportunity for close friends
  • Q3. Why your ask extra work for after target finished
  • Q4. Why All are give freedom only girls

Interview Preparation Tips

Interview preparation tips for other job seekers - Apraisal increment to increase, don't ask to break time finished my target

I was interviewed in Aug 2020.

Interview Questionnaire 

8 Questions

  • Q1. Position was for UI - Fundamentals of JavaScript (Closure, Promises, Event Loop, filter vs map, Event delegation)
  • Q2. Lifecycle of React Component, State vs Props, Optimization techniques, Redux vs Context
  • Q3. Coding challenge (JS) - remove duplicate entries from array
  • Ans. 

    Remove duplicate entries from array of strings using JavaScript

    • Use Set to remove duplicates

    • Convert Set back to array

    • Use spread operator to convert Set to array

  • Answered by AI
  • Q4. Coding Challenge (JS) - determine if words in given array are anagram or not
  • Ans. 

    Determines if words in given array are anagram or not using JS

    • Create a function that takes an array of strings as input

    • Loop through the array and sort each string alphabetically

    • Compare the sorted strings to check if they are equal

    • Return true if all strings are anagrams, else false

  • Answered by AI
  • Q5. Client Round (1) - Questions on design system, coding challenge - Let's try to create a modal component in React JS from scratch
  • Q6. Client Round (2) - Questions based on scenarios to test your thinking ability and problem solving approach
  • Q7. Client Round (3) - Questions on all the technologies that you have mentioned in your CV. Additional questions on Agile, DevOps and your understanding of CI-CD.
  • Q8. Client Round (4) - Coding challenge - implement/rewrite any inbuilt method provided by JS (e.g. Array.map, Array.filter, function.bind)

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for fundamentals of JS.
Answering questions of React would be easy if you already work on it.
Try to solve at least 5 problems on Hacker Rank or Hacker Earth, before appearing for interview.
That would help you prepare mentally and logically to bare with the process and develop an attitude of keep trying.

Good luck!

Skills evaluated in this interview

Tk20 Interview FAQs

How many rounds are there in Tk20 interview?
Tk20 interview process usually has 2 rounds. The most common rounds in the Tk20 interview process are Resume Shortlist and One-on-one Round.
How to prepare for Tk20 interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Tk20. The most common topics and skills that interviewers at Tk20 expect are Communication Skills, Salesforce, Excel, Billing and C#.

Tell us how to improve this page.

People are getting interviews through

based on 1 Tk20 interview
WalkIn
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Teleperformance Interview Questions
3.9
 • 1.7k Interviews
Nagarro Interview Questions
4.0
 • 753 Interviews
FIS Interview Questions
3.9
 • 464 Interviews
Optum Interview Questions
4.0
 • 405 Interviews
Dell Interview Questions
4.1
 • 384 Interviews
Quest Global Interview Questions
3.6
 • 285 Interviews
Qualcomm Interview Questions
3.8
 • 267 Interviews
NeoSOFT Interview Questions
4.0
 • 249 Interviews
Episource Interview Questions
3.8
 • 220 Interviews
FactSet Interview Questions
4.0
 • 201 Interviews
View all

Tk20 Reviews and Ratings

based on 14 reviews

4.0/5

Rating in categories

3.2

Skill development

4.2

Work-Life balance

3.2

Salary & Benefits

2.7

Job Security

3.8

Company culture

3.3

Promotions/Appraisal

3.4

Work Satisfaction

Explore 14 Reviews and Ratings
Senior Software Engineer
3 salaries
unlock blur

₹8 L/yr - ₹15 L/yr

Explore more salaries
Compare Tk20 with

Teleperformance

3.9
Compare

FIS

3.9
Compare

Nagarro

4.0
Compare

Optum

4.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview