Upload Button Icon Add office photos

Filter interviews by

TNP Consultants Salesforce Developer Trainee Interview Questions and Answers

Updated 15 Oct 2024

TNP Consultants Salesforce Developer Trainee Interview Experiences

1 interview found

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

I applied via Walk-in and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Standard questions, Average difficulty

Round 2 - Group Discussion 

Good assesment and marking

Round 3 - Technical 

(2 Questions)

  • Q1. Projects in resume
  • Ans. 

    I have worked on various projects including a CRM system, e-commerce website, and mobile app.

    • Developed a CRM system using Salesforce platform

    • Designed and implemented an e-commerce website with payment integration

    • Created a mobile app for tracking sales leads and customer interactions

  • Answered by AI
  • Q2. Python programming questions

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Apr 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What synchronous and asynchronous means??
  • Ans. 

    Synchronous means happening at the same time, while asynchronous means not happening at the same time.

    • Synchronous operations occur in real-time, while asynchronous operations can be delayed or queued.

    • Synchronous operations block the program until they are completed, while asynchronous operations allow the program to continue running.

    • Examples of synchronous operations include function calls and loops, while examples of ...

  • Answered by AI
  • Q2. When to use CTE and temp table.
  • Ans. 

    CTE and temp table usage in SQL

    • Use CTE for recursive queries and complex subqueries

    • Use temp tables for large data sets and complex queries

    • CTE is more efficient for small data sets

    • Temp tables can be indexed for faster performance

    • Consider the scope and lifespan of the data when choosing between CTE and temp table

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand question first and answer.

I applied via Naukri.com and was interviewed before Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I was asked based on scenarios, all were practical questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't join as a contractor. Join only if you are permanent with Deloitte.

I was interviewed before Sep 2020.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is standard. Mainly tests the conceptual level knowledge. Java multithreading might be asked if the candidate mentions it. Multi threading concepts are appreciated and gives an edge
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Self introduction
  • Q2. And aigle scrum methodology explains
  • Ans. 

    Agile Scrum methodology is a framework for managing and completing complex projects.

    • Agile Scrum is based on iterative and incremental development.

    • It involves breaking down the project into smaller tasks called user stories.

    • Scrum teams work in sprints, typically 2-4 weeks long, to deliver a potentially shippable product increment.

    • Daily stand-up meetings are held to discuss progress and any obstacles.

    • Scrum Master facilit...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 135 minutes
Round difficulty - Easy

Coding questions was easy if you know the basic of coding in any language. I submitted optimized solution for every questions that's why i got selected in this round.

  • Q1. 

    Find K'th Character of Decrypted String

    You are given an encrypted string where repeated substrings are represented by the substring followed by its count. Your task is to find the K'th character of the d...

  • Ans. 

    Given an encrypted string with repeated substrings represented by counts, find the K'th character of the decrypted string.

    • Parse the encrypted string to extract substrings and their counts

    • Iterate through the substrings and counts to build the decrypted string

    • Track the position in the decrypted string to find the K'th character

  • Answered by AI
  • Q2. 

    Cycle Detection in Undirected Graph Problem Statement

    You are provided with an undirected graph containing 'N' vertices and 'M' edges. The vertices are numbered from 1 to 'N'. Your objective is to determi...

  • Ans. 

    Detect if an undirected graph contains a cycle.

    • Use Depth First Search (DFS) to traverse the graph and detect cycles.

    • Maintain a visited array to keep track of visited vertices.

    • If a visited vertex is encountered again during DFS, a cycle exists.

    • Check for back edges while traversing the graph.

    • Consider disconnected graphs as well.

  • Answered by AI
Round 2 - Assignment 

(3 Questions)

Round duration - 150 minutes
Round difficulty - Medium

  • Q1. 

    Pair Sum Problem Statement

    You are provided with an array ARR consisting of N distinct integers in ascending order and an integer TARGET. Your objective is to count all the distinct pairs in ARR whose sum...

  • Ans. 

    Count distinct pairs in an array whose sum equals a given target.

    • Use two pointers approach to iterate through the array and find pairs with sum equal to target.

    • Keep track of visited pairs to avoid counting duplicates.

    • Return -1 if no such pair exists with the given target.

  • Answered by AI
  • Q2. 

    Next Smaller Palindrome Problem Statement

    You are given a palindrome number represented as a string S. Your task is to find the largest palindrome number that is strictly less than S.

    Example:

    Input:
    T...
  • Ans. 

    Given a palindrome number represented as a string, find the largest palindrome number that is strictly less than the given number.

    • Iterate from the middle towards the start and end of the string to find the next smaller palindrome.

    • If the number is odd in length, simply mirror the left half to the right half to get the next smaller palindrome.

    • If the number is even in length, decrement the middle digit and mirror the left...

  • Answered by AI
  • Q3. 

    Longest Common Subsequence Problem Statement

    Given two strings STR1 and STR2, determine the length of their longest common subsequence.

    A subsequence is a sequence that can be derived from another sequen...

  • Ans. 

    The problem involves finding the length of the longest common subsequence between two given strings.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 2D array to store the lengths of common subsequences of substrings.

    • Iterate through the strings to fill the array and find the length of the longest common subsequence.

    • Example: For input STR1 = 'abcde' and STR2 = 'ace', the longest common subsequence is 'a

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Easy

Interview went well.The interviewer asked me how the previous interviews were.

  • Q1. 

    Boundary Traversal of a Binary Tree

    Given a binary tree of integers, your task is to output the boundary nodes of this binary tree in Anti-Clockwise order, starting from the root node.

    Explanation:

    The b...

  • Ans. 

    Output the boundary nodes of a binary tree in Anti-Clockwise order, starting from the root node.

    • Traverse the left boundary nodes in top-down order

    • Traverse the leaf nodes from left to right

    • Traverse the right boundary nodes in bottom-up order

    • Combine the above traversals to get the boundary nodes in Anti-Clockwise order

  • Answered by AI
  • Q2. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an array of 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of the positions of 0s, 1s, and 2s in the array.

    • Iterate through the array and swap elements based on the values encountered.

    • Maintain left pointer for 0s, right pointer for 2s, and current pointer for traversal.

    • Example: If current element is 0, swap it with element at left pointer and increment both pointers.

  • Answered by AI
Round 4 - HR 

Round duration - 20 minutes
Round difficulty - Easy

This round is very easy, In this round they basically need confidence and truthful person.

Interview Preparation Tips

Eligibility criteriaabove 7.5 CGPADeloitte interview preparation:Topics to prepare for the interview - Data Structures, Web development, System Design, Algorithms, Dynamic Programming, Database, Networking, DevOps, Operating System, Database Management System, Object-Oriented Programming System , basic aptitudeTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : For Data Structures number of questions doesn't matter. Try to understand the logic behind them and try to apply them in creating multiple scenario's. 
Tip 2 : Do lot of hard work and practice of Data Structures and Algorithms based questions
Tip 3 : See which part interests you more, Increase your knowledge horizon, Always try to build a system a system considering It will be served to millions of customers.
Tip 4 : I personally recommend you Coding Ninjas and Geeks For Geeks for interview preparation.

Application resume tips for other job seekers

Tip 1 : Always try to make it a single page 
Tip 2 : do mention all your skills which you are confident of in your resume.
Tip 3 : Always make resume company specific

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Promise.all vs promise.allsettled how to resolve asynchronus call using promises

Round 2 - HR 

(2 Questions)

  • Q1. Salary negotiation
  • Q2. Education gap between studies
  • Ans. 

    Addressing any gaps in education during the interview process.

    • Acknowledge any gaps in education and explain how you have worked to overcome them

    • Highlight any additional courses, certifications, or self-study you have done to fill in the gaps

    • Discuss how you have applied your knowledge in real-world projects to compensate for any educational shortcomings

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn DSA n core concept of programming language

Interview Questionnaire 

3 Questions

  • Q1. Oops mvc .net sql
  • Q2. .net frame work
  • Q3. Solid priciples

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interview experience
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 2023. There were 3 interview rounds.

Round 1 - Group Discussion 

Had group discussion with 3 people for 1 hour

Round 2 - Group Discussion 

Had group discussion with 3 people for 1 hour

Round 3 - One-on-one 

(2 Questions)

  • Q1. Had one-to-one with client
  • Q2. Plugins, JavaScript, Power automate, SSRS, Customizations, Configurations, Integrations, Azure functions, scenarios

Interview Preparation Tips

Interview preparation tips for other job seekers - I had interviewed and being selected in all three rounds. Even I was asked for documents by recruiter for offer letter process. She told everything about salary structure then she didn't responded for 2 weeks. I tried reaching her but nothing. One day she told that your profile is on hold as we are able to fill up the position internally. I am not sure how can anyone say this, how can someone able to fulfil position in just one week, how come job portals still taking applications for same position.

Its terrible and advise to everyone don't kill your time as they are not going to offer and match your expectations.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude topic was as generally appears in other placement tests , coding questions(not that much hard )

Round 2 - Technical 

(1 Question)

  • Q1. Asked for the introduction , then asked questions from the resume . Also the OOPS concept and interface

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and give only neccessay answer of the question,do not say something extra

TNP Consultants Interview FAQs

How many rounds are there in TNP Consultants Salesforce Developer Trainee interview?
TNP Consultants interview process usually has 3 rounds. The most common rounds in the TNP Consultants interview process are Aptitude Test, Group Discussion and Technical.

Tell us how to improve this page.

TNP Consultants Salesforce Developer Trainee Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Deloitte Interview Questions
3.8
 • 2.8k Interviews
PwC Interview Questions
3.4
 • 1.4k Interviews
Ernst & Young Interview Questions
3.4
 • 1.1k Interviews
KPMG India Interview Questions
3.5
 • 790 Interviews
ZS Interview Questions
3.4
 • 449 Interviews
BCG Interview Questions
3.7
 • 196 Interviews
Citco Interview Questions
3.1
 • 138 Interviews
Bain & Company Interview Questions
3.8
 • 105 Interviews
View all
Consultant
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Consultant
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Consultant
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Front end Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Analyst
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare TNP Consultants with

KPMG India

3.5
Compare

PwC

3.4
Compare

Deloitte

3.8
Compare

Ernst & Young

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