Upload Button Icon Add office photos

Filter interviews by

360 Degree Cloud Technologies Salesforce Developer Interview Questions and Answers for Freshers

Updated 17 Oct 2023

360 Degree Cloud Technologies Salesforce Developer Interview Experiences for Freshers

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Aug 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Keep Apex Basic Clear
Round 2 - Technical 

(1 Question)

  • Q1. Learn new thing about salesforce
Round 3 - HR 

(1 Question)

  • Q1. Normal managerial conversation was done

Salesforce Developer Jobs at 360 Degree Cloud Technologies

View all

Interview questions from similar companies

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

I applied via Referral and was interviewed before Feb 2022. There were 4 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 - Coding Test 

Easy level questions on string, linked list and array

Round 3 - Technical 

(2 Questions)

  • Q1. Difference between TCP and UDP
  • Ans. 

    TCP is a connection-oriented protocol while UDP is connectionless.

    • TCP provides reliable, ordered, and error-checked delivery of data while UDP does not guarantee any of these.

    • TCP is slower but more reliable while UDP is faster but less reliable.

    • TCP is used for applications that require high reliability and accuracy such as email, file transfer, and web browsing while UDP is used for applications that require speed and ...

  • Answered by AI
  • Q2. Nibble swap program in C
  • Ans. 

    A nibble swap program in C

    • Nibble swap means swapping the 4-bit halves of a byte

    • Use bitwise operators to perform the swap

    • Example: unsigned char x = 0xAB; x = ((x & 0x0F) << 4) | ((x & 0xF0) >> 4);

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Reverse Linked List in C
  • Ans. 

    Reverse a linked list in C language.

    • Create three pointers: current, previous, and next.

    • Traverse the linked list and change the direction of the pointers.

    • Return the new head of the reversed linked list.

  • Answered by AI
  • Q2. Write an API call in C
  • Ans. 

    API call in C

    • Include the necessary header files

    • Create a URL string with the required parameters

    • Use the curl library to make the API call

    • Handle the response data appropriately

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics of programming, operating system and networking

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before May 2022. There were 4 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 - Coding Test 

Programming on basics of C

Round 3 - Coding Test 

Programming on basics of C

Round 4 - HR 

(1 Question)

  • Q1. Salary details and location preference
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Middleware , dependency injection
Round 3 - Technical 

(1 Question)

  • Q1. Subject and subject behaviour
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Aptitude Test 

Duration:30 min
Question from percentage,ratios ,HCF/LCM etc.,
Logical reasoning, English

Round 3 - Coding Test 

(1 Question)

  • Q1. Reverse a string by making groups of given 'm' characters
  • Ans. 

    Reverse a string by grouping 'm' characters together

    • Iterate through the string in groups of 'm' characters

    • Reverse each group of 'm' characters

    • Concatenate the reversed groups to get the final reversed string

  • Answered by AI
Round 4 - HR 

(3 Questions)

  • Q1. General HR questions
  • Q2. What is your family background?
  • Q3. Why should we hire you?

Skills evaluated in this interview

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

I applied via Internshala and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Tell me something about Data Sturcture
  • Ans. 

    Data structure is a way of organizing and storing data in a computer so that it can be accessed and used efficiently.

    • Data structures can be linear (arrays, linked lists) or non-linear (trees, graphs)

    • Common operations on data structures include insertion, deletion, and searching

    • Examples of data structures include stacks, queues, hash tables, and binary trees

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. What is Connection pooling
  • Ans. 

    Connection pooling is a technique to manage database connections efficiently, reducing overhead and improving performance.

    • Connection pooling maintains a pool of active database connections for reuse.

    • It reduces the overhead of establishing a new connection for each database request.

    • Example: A web application can reuse connections from the pool instead of opening new ones for each user request.

    • Connection pools can be con...

  • Answered by AI
  • Q2. What is mounting in docker
  • Ans. 

    Mounting in Docker allows you to share files between the host and containers, enabling data persistence and configuration management.

    • Mounting can be done using volumes or bind mounts.

    • Volumes are managed by Docker and are stored in a part of the host filesystem which is not directly accessible.

    • Example of a volume: `docker run -v my_volume:/data my_image`.

    • Bind mounts allow you to specify an exact path on the host, e.g., ...

  • Answered by AI
  • Q3. What is decorators
  • Ans. 

    Decorators are a design pattern in Python that allows modifying the behavior of functions or methods at runtime.

    • A decorator is a function that takes another function and extends its behavior without explicitly modifying it.

    • Common use cases include logging, access control, and caching.

    • Example: @staticmethod and @classmethod are built-in decorators in Python.

    • Custom decorators can be created using nested functions.

    • Example...

  • Answered by AI
  • Q4. Shell script question
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Jun 2022. There were 3 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 - Coding Test 

Basic coding excercise , linux platform.file handling

Round 3 - HR 

(2 Questions)

  • Q1. Simpe question , family baground,
  • Q2. Strength , weakness,

Interview Preparation Tips

Interview preparation tips for other job seekers - just be confident
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jul 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - One-on-one 

(3 Questions)

  • Q1. Basic C programming, file handling operations
  • Q2. SIP protocol related qestions, linux questions
  • Q3. File data manipulation code
Round 3 - HR 

(1 Question)

  • Q1. Compensation discussion, relocation , reason for leaving previous organization
Round 1 - Technical 

(2 Questions)

  • Q1. To write any code in any programming language
  • Q2. About the project work that i have done
Round 2 - Technical 

(2 Questions)

  • Q1. Time was 3:15 in the clock write an code to find the angle between the hour and minute hand
  • Q2. About the project work

Interview Preparation Tips

Interview preparation tips for other job seekers - just try and try don’t loose hope

360 Degree Cloud Technologies Interview FAQs

How many rounds are there in 360 Degree Cloud Technologies Salesforce Developer interview for freshers?
360 Degree Cloud Technologies interview process for freshers usually has 4 rounds. The most common rounds in the 360 Degree Cloud Technologies interview process for freshers are Technical, Resume Shortlist and HR.
How to prepare for 360 Degree Cloud Technologies Salesforce Developer interview for freshers?
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 360 Degree Cloud Technologies. The most common topics and skills that interviewers at 360 Degree Cloud Technologies expect are Salesforce, Apex, SFDC, Visualforce and Triggers.
What are the top questions asked in 360 Degree Cloud Technologies Salesforce Developer interview for freshers?

Some of the top questions asked at the 360 Degree Cloud Technologies Salesforce Developer interview for freshers -

  1. 1.teat classes best practices 2.trigger on count of related contact 3.integrati...read more
  2. Java related questi...read more
  3. Map and exception handl...read more

Tell us how to improve this page.

360 Degree Cloud Technologies Salesforce Developer Interview Process for Freshers

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 49 Interviews
PC Solutions Interview Questions
3.7
 • 16 Interviews
Bankai Infotech Interview Questions
3.4
 • 13 Interviews
View all
360 Degree Cloud Technologies Salesforce Developer Salary
based on 291 salaries
₹3.4 L/yr - ₹21.6 L/yr
55% more than the average Salesforce Developer Salary in India
View more details

360 Degree Cloud Technologies Salesforce Developer Reviews and Ratings

based on 32 reviews

2.5/5

Rating in categories

3.0

Skill development

2.1

Work-life balance

2.7

Salary

2.3

Job security

2.3

Company culture

2.5

Promotions

2.4

Work satisfaction

Explore 32 Reviews and Ratings
Salesforce Developer

Faridabad

1-5 Yrs

Not Disclosed

Salesforce Developer

Noida

4-9 Yrs

₹ 15-25 LPA

Salesforce Developer

Faridabad

1-5 Yrs

Not Disclosed

Explore more jobs
Salesforce Developer
291 salaries
unlock blur

₹3.3 L/yr - ₹21.6 L/yr

Senior Salesforce Developer
72 salaries
unlock blur

₹11 L/yr - ₹32 L/yr

Salesforce Administrator
46 salaries
unlock blur

₹3.3 L/yr - ₹10.5 L/yr

Software Developer
35 salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Software Engineer
28 salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Explore more salaries
Compare 360 Degree Cloud Technologies with

PC Solutions

3.7
Compare

RNF Technologies

3.3
Compare

Hidden Brains InfoTech

3.8
Compare

Affine

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