Salesforce Placement Papers 2026
Last Updated: March 2026
Salesforce Placement Papers 2026 | Complete Preparation Guide
Company Overview
Salesforce, Inc. is an American cloud-based software company headquartered in San Francisco, California. Founded in 1999 by Marc Benioff, Parker Harris, Dave Moellenhoff, and Frank Dominguez, Salesforce pioneered the concept of delivering enterprise applications via a simple website. It is the world's #1 Customer Relationship Management (CRM) platform.
Salesforce has revolutionized how businesses connect with their customers through its comprehensive suite of products including Sales Cloud, Service Cloud, Marketing Cloud, and the Salesforce Platform. With a market cap exceeding $250 billion, Salesforce consistently ranks among the best places to work globally.
Why Join Salesforce?
- Pioneer in cloud computing and SaaS business model
- Strong focus on philanthropy (1-1-1 model)
- Excellent career growth and learning opportunities
- Ohana culture (family-like environment)
- Trailhead - world's best learning platform for free
Eligibility Criteria 2026
| Criteria | Requirement |
|---|---|
| Education | B.Tech/B.E./M.Tech/MCA in CS/IT/ECE or related fields |
| Academic Score | Minimum 70% or 7.0 CGPA throughout |
| Backlogs | No active backlogs |
| Graduation Year | 2025, 2026 graduates |
| Experience | Freshers (0-1 year) |
| Skills | Java, Apex, JavaScript, SQL (preferred) |
CTC Structure for Freshers 2026
| Component | Amount (INR) |
|---|---|
| Base Salary | ₹10-13 LPA |
| Joining Bonus | ₹1-1.5 Lakhs |
| Stock Options (RSUs) | $10,000-20,000 |
| Benefits | Health, Wellness, Learning |
| Total CTC | ₹15-22 LPA |
Exam Pattern 2026
| Round | Sections | Duration |
|---|---|---|
| Online Assessment | Aptitude + Technical + Coding | 90-120 mins |
| Technical Interview 1 | DSA & Problem Solving | 45-60 mins |
| Technical Interview 2 | System Design/Projects | 45-60 mins |
| Managerial Round | Culture Fit & Behavioral | 30-45 mins |
| HR Interview | Compensation & Logistics | 30 mins |
Aptitude Questions (15 with Solutions)
Q1: If 20% of A = 30% of B, then A:B = ?
Solution: 0.20A = 0.30B → A/B = 0.30/0.20 = 3/2 → A:B = 3:2
Q2: A train 200m long crosses a platform 300m in 25 seconds. Find speed.
Solution: Total distance = 500m, Time = 25s, Speed = 500/25 = 20 m/s = 72 km/h
Q3: Find the odd one: 2, 5, 10, 17, 26, 38, 50
Solution: Pattern is n²+1: 1²+1=2, 2²+1=5, 3²+1=10... 6²+1=37, not 38. 38 is odd.
Q4: 6 men or 8 women can do a work in 12 days. How many days for 3 men and 4 women?
Solution: 6M = 8W → 3M = 4W. So 3M + 4W = 6M. 6M complete in 12 days, so 6M always take 12 days.
Q5: Present ages ratio 4:5. After 5 years, ratio 5:6. Find present age of elder.
Solution: Let ages be 4x and 5x. (4x+5)/(5x+5) = 5/6 → x=5. Elder age = 5×5 = 25 years.
Q6: A bag has 4 red, 5 blue, 6 green balls. Probability of drawing blue?
Solution: Total = 15, Blue = 5, P(Blue) = 5/15 = 1/3
Q7: CI on ₹8000 at 10% for 2 years?
Solution: Amount = 8000(1.10)² = 9680, CI = 9680-8000 = ₹1680
Q8: Average of 5 numbers is 25. If one number (20) is excluded, find new average.
Solution: Sum = 125, New sum = 105, New average = 105/4 = 26.25
Q9: How many 3-digit numbers divisible by 5 can be formed using 0,2,5,7,9?
Solution: Last digit must be 0 or 5. Case 0: 4×4×1=16. Case 5: 3×4×1=12. Total = 28
Q10: A is 50% more efficient than B. B takes 30 days. How long for A?
Solution: If B=100, A=150. Efficiency ratio 3:2, so time ratio 2:3. A takes (2/3)×30 = 20 days
Q11: Logical - All cats are dogs. All dogs are elephants. Conclusions?
Solution: All cats are elephants follows. Some elephants are cats follows. Both follow.
Q12: Coding - If CHAIR=37, TABLE=43, DESK=?
Solution: Position sum: C(3)+H(8)+A(1)+I(9)+R(18)=39? Let me recalculate: 3+8+1+9+18=39. Actually given 37. Alternative: C(3)+H(8)+A(1)+I(9)+R(18) = 39. Pattern unclear. D(4)+E(5)+S(19)+K(11) = 39
Q13: Direction - Facing east, turn left, left, right, left. Final direction?
Solution: E → N → W → W is right? No: Left of E=N, Left of N=W, Right of W=N, Left of N=W. West
Q14: Series - B, D, G, K, ?
Solution: +2, +3, +4, +5 → B(2)→D(4)→G(7)→K(11)→P(16)
Q15: A shopkeeper sells at 10% loss. If he sold at ₹50 more, 5% profit. Find CP.
Solution: Let CP=x. 0.9x + 50 = 1.05x → 0.15x=50 → x = ₹333.33
Technical Questions (10 with Solutions)
Q1: Difference between REST and SOAP APIs?
Solution: REST is lightweight, uses HTTP/JSON, stateless. SOAP is protocol-heavy, uses XML, has built-in error handling.
Q2: What is the time complexity of binary search?
Solution: O(log n) - halves search space each iteration.
Q3: Explain database indexing.
Solution: Indexing creates a data structure (B-tree) for faster lookups. Trade-off: faster reads, slower writes, extra storage.
Q4: What is Apex in Salesforce?
Solution: Apex is Salesforce's proprietary programming language (similar to Java) for building custom business logic on the platform.
Q5: Difference between stack and queue?
Solution: Stack: LIFO (Last In First Out). Queue: FIFO (First In First Out).
Q6: What are SOQL and SOSL?
Solution: SOQL (Salesforce Object Query Language) queries one object. SOSL (Salesforce Object Search Language) searches across multiple objects.
Q7: Explain MVC architecture.
Solution: Model (data), View (UI), Controller (logic). Separates concerns for maintainability.
Q8: What is a trigger in databases?
Solution: A trigger is a stored procedure that automatically executes before/after INSERT, UPDATE, or DELETE operations.
Q9: Difference between abstract class and interface?
Solution: Abstract class can have implementation, single inheritance. Interface has only declarations (traditionally), supports multiple inheritance.
Q10: What is garbage collection?
Solution: Automatic memory management that identifies and frees memory occupied by objects no longer referenced by the program.
Verbal Questions (10 with Solutions)
Q1: Synonym of "Pragmatic"
Q2: Antonym of "Abundant"
Q3: Error spotting: "The team are playing well."
Q4: Fill in blank: "He is ______ university student."
Q5: Rearrange: (P) is (Q) success (R) hard work (S) the key to
Q6: One word: One who doesn't believe in God.
Q7: Idiom: "To let the cat out of the bag"
Q8: Reading comprehension main idea detection
Tip: Look for the sentence that encompasses the overall message.
Q9: Analogy: Doctor : Patient :: Teacher : ?
Q10: Preposition: "She is allergic ______ dust."
Coding Questions (5 with Python Solutions)
Q1: FizzBuzz
def fizzbuzz(n):
for i in range(1, n+1):
if i % 15 == 0:
print("FizzBuzz")
elif i % 3 == 0:
print("Fizz")
elif i % 5 == 0:
print("Buzz")
else:
print(i)
Q2: Valid Parentheses
def is_valid(s):
stack = []
mapping = {')': '(', '}': '{', ']': '['}
for char in s:
if char in mapping:
top = stack.pop() if stack else '#'
if mapping[char] != top:
return False
else:
stack.append(char)
return not stack
Q3: Maximum Subarray (Kadane's Algorithm)
def max_subarray(nums):
max_sum = current_sum = nums[0]
for num in nums[1:]:
current_sum = max(num, current_sum + num)
max_sum = max(max_sum, current_sum)
return max_sum
Q4: First Unique Character
def first_uniq_char(s):
count = {}
for c in s:
count[c] = count.get(c, 0) + 1
for i, c in enumerate(s):
if count[c] == 1:
return i
return -1
Q5: Merge Intervals
def merge(intervals):
if not intervals:
return []
intervals.sort(key=lambda x: x[0])
merged = [intervals[0]]
for current in intervals[1:]:
if current[0] <= merged[-1][1]:
merged[-1][1] = max(merged[-1][1], current[1])
else:
merged.append(current)
return merged
Interview Tips (7 Tips)
-
Learn Trailhead: Complete Salesforce Trailhead modules before your interview. It shows genuine interest.
-
CRM Knowledge: Understand basic CRM concepts and why businesses use them.
-
Cloud Fundamentals: Know SaaS, PaaS, IaaS differences and Salesforce's position.
-
Apex Basics: Even for freshers, basic Apex knowledge is a big plus.
-
Ohana Culture: Research Salesforce's values - Trust, Customer Success, Innovation, Equality.
-
Behavioral Prep: Prepare examples showing collaboration, innovation, and customer focus.
-
Questions to Ask: Ask about team structure, mentorship programs, and growth paths.
FAQs
Q1: Is Salesforce good for freshers? Yes, excellent training programs, Trailhead platform, and strong mentorship make it ideal.
Q2: Do I need to know Apex before joining? Not mandatory, but basic knowledge helps. You'll learn extensively during training.
Q3: What is the work culture at Salesforce? Very inclusive, family-like (Ohana), with emphasis on work-life balance.
Q4: Does Salesforce allow remote work? Yes, Salesforce offers flexible and remote work options.
Q5: How to prepare for Salesforce technical interviews? Focus on DSA, OOPs, DBMS, and complete Trailhead fundamentals.
Prepare well and aim high! Salesforce looks for passion and cultural fit alongside technical skills.