Upload Button Icon Add office photos

Filter interviews by

360 Degree Cloud Technologies Software Developer Interview Questions and Answers

Updated 27 Jan 2022

360 Degree Cloud Technologies Software Developer Interview Experiences

1 interview found

I applied via Campus Placement and was interviewed in Jul 2021. There were 2 interview rounds.

Round 1 - Group Discussion 
Pro Tip by AmbitionBox:
Don’t treat group discussions as an argument. Group discussion is about reaching a meaningful conclusion.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Why public static use
  • Ans. 

    public static use for accessing methods and variables without creating an object

    • Allows access to methods and variables without creating an object

    • Useful for utility classes where objects are not needed

    • Can be used to create global variables or constants

    • Example: Math class in Java has only static methods and constants

  • Answered by AI
  • Q2. Why static is use.Pattern question,hshshdhdhxhxhxhxhdhhxjdjdjdjdjnjsjs

Interview Preparation Tips

Topics to prepare for 360 Degree Cloud Technologies Software Developer interview:
  • Java
Interview preparation tips for other job seekers - Learn Java in depth.Also prepare more in communication skills.

Skills evaluated in this interview

Interview questions from similar companies

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

2 question 1 on string and 2 on array , easy level

Round 2 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company for senior level
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 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 

It was a MCQ + Coding test

Round 3 - Technical 

(2 Questions)

  • Q1. Questions on DSA
  • Q2. Questions on CS Fundamentals
Round 4 - Technical 

(2 Questions)

  • Q1. Questions on Linux commands
  • Q2. Questions related to oops and CS is
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

It was around 2 hrs with 2 coding questions and some mcq questions on fundamentals

Round 2 - Technical 

(2 Questions)

  • Q1. Print some numbers in a tree format
  • Ans. 

    Print numbers in a tree format

    • Use recursion to print numbers in a tree structure

    • Start with the root node and recursively print child nodes

    • Use indentation to represent levels in the tree

    • Example: 1 --2 ----3 --4

  • Answered by AI
  • Q2. Factorial of a number, both iterative and recursive
  • Ans. 

    Factorial of a number can be calculated using both iterative and recursive methods.

    • Iterative method involves using a loop to multiply numbers from 1 to n.

    • Recursive method involves calling the function with n-1 until n reaches 1.

    • Example: Factorial of 5 using iterative method: 5! = 5*4*3*2*1 = 120

    • Example: Factorial of 5 using recursive method: 5! = 5 * 4!

    • Example: Factorial of 4 using recursive method: 4! = 4 * 3!

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

Medium level leetcode

Round 2 - One-on-one 

(2 Questions)

  • Q1. Basics of linked list. How to delete without head and address of current node is given?
  • Q2. Simple join queries on 2 to 3 tables?
  • Ans. 

    Join queries are used to combine data from multiple tables based on a related column between them.

    • Use JOIN keyword to combine tables based on a common column

    • Specify the columns to select from each table

    • Use WHERE clause to specify the join condition

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

It placed in hackerRank.question difficulty level was medium.

Round 3 - Technical 

(1 Question)

  • Q1. The difficulty depends upon who is taking your interview. But mostly asked questions were related to string and hashmap.
Round 4 - HR 

(1 Question)

  • Q1. It was more like a little bit technical and hr round. Mostly talk about personal profile like education,family background, hobbies and etc.
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
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Nov 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Implement a linked list
  • Ans. 

    A linked list is a data structure that consists of a sequence of nodes, each containing a reference to the next node.

    • Each node has a data field and a next field that points to the next node

    • Insertion and deletion can be done efficiently

    • Traversal starts from the head node and continues until the end node is reached

  • Answered by AI
  • Q2. Questions on JAVA

Interview Preparation Tips

Topics to prepare for Truminds Software Systems Software Developer interview:
  • Linked Lists
Interview preparation tips for other job seekers - It is an easy to crack company

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. How to implement Sqlite database in React Native?
  • Ans. 

    Sqlite database can be implemented in React Native using 'react-native-sqlite-storage' package.

    • Install 'react-native-sqlite-storage' package using npm.

    • Import SQLite from 'react-native-sqlite-storage'.

    • Create a database using SQLite.openDatabase() method.

    • Execute SQL queries using executeSql() method.

    • Close the database connection using close() method.

  • Answered by AI
  • Q2. What are generator functions?
  • Ans. 

    Generator functions are functions that can be paused and resumed, allowing for lazy evaluation of data.

    • Generator functions use the yield keyword to pause execution and return a value.

    • They can be used to generate an infinite sequence of values.

    • They are memory efficient as they only generate values when needed.

    • Example: function* myGenerator() { yield 1; yield 2; yield 3; }

    • Example: const infiniteGenerator = function*() {

  • Answered by AI
  • Q3. How to implement push notifications in Android and iOS?
  • Ans. 

    Push notifications can be implemented in Android and iOS using Firebase Cloud Messaging (FCM) and Apple Push Notification service (APNs) respectively.

    • For Android, integrate FCM SDK in the app and use FCM console to send notifications.

    • For iOS, create an APNs certificate, configure the app to receive notifications, and use APNs to send notifications.

    • Both platforms require handling of notification payload in the app to di...

  • Answered by AI
  • Q4. How do you use in your last app?
  • Ans. 

    I used React Native for my last app.

    • Developed UI components using React Native

    • Integrated APIs to fetch and display data

    • Implemented Redux for state management

    • Used Firebase for authentication and database

    • Optimized app performance using React Native Debugger

  • Answered by AI
  • Q5. What is the difference between functional components and non functional components?
  • Ans. 

    Functional components are stateless and return UI elements based on input props, while non-functional components have state and can change UI based on user interaction.

    • Functional components are simpler and easier to test than non-functional components.

    • Non-functional components can have state and lifecycle methods, while functional components cannot.

    • Examples of functional components include buttons, labels, and icons, w...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Its Hard and requires deep knowledge of your technical skills.

Skills evaluated in this interview

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 Jan 2023. 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 - Aptitude Test 

Aptitude round was not so tough, moderate level questions were there.

Round 3 - Technical 

(3 Questions)

  • Q1. In Technical round questions were from resume, oops, dbms and two coding questions.
  • Q2. Q1. Palindrome numbers in a given range.
  • Ans. 

    A program to find palindrome numbers in a given range.

    • Iterate through the given range of numbers

    • Convert each number to a string and check if it is equal to its reverse

    • If yes, add it to the list of palindrome numbers

  • Answered by AI
  • Q3. Q2. Carry generated in a sum of two numbers.
  • Ans. 

    Carry is generated when the sum of two digits is greater than 9.

    • Carry is a digit that is carried over to the next place value in the sum.

    • For example, in the sum 56 + 78, the carry generated is 1 (5+7=12, carry 1, 6+8+1=15).

    • Carry is important in addition of large numbers and in binary addition.

  • Answered by AI
Round 4 - HR 

(3 Questions)

  • Q1. HR round was easy with some basic HR questions and discussions.
  • Q2. Q1. Tells us about the company.
  • Q3. Q2. Why we should hire you.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on your key skills, practice very well, research about the company you are going for interview.

Skills evaluated in this interview

360 Degree Cloud Technologies Interview FAQs

How many rounds are there in 360 Degree Cloud Technologies Software Developer interview?
360 Degree Cloud Technologies interview process usually has 2 rounds. The most common rounds in the 360 Degree Cloud Technologies interview process are Group Discussion and Technical.
How to prepare for 360 Degree Cloud Technologies Software Developer 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 360 Degree Cloud Technologies. The most common topics and skills that interviewers at 360 Degree Cloud Technologies expect are Salesforce.
What are the top questions asked in 360 Degree Cloud Technologies Software Developer interview?

Some of the top questions asked at the 360 Degree Cloud Technologies Software Developer interview -

  1. Why public static ...read more
  2. Why static is use.Pattern question,hshshdhdhxhxhxhxhdhhxjdjdjdjdjnj...read more

Tell us how to improve this page.

360 Degree Cloud Technologies Software Developer Salary
based on 34 salaries
₹3 L/yr - ₹12.1 L/yr
15% less than the average Software Developer Salary in India
View more details

360 Degree Cloud Technologies Software Developer Reviews and Ratings

based on 5 reviews

2.1/5

Rating in categories

1.6

Skill development

1.0

Work-life balance

1.0

Salary

2.0

Job security

1.0

Company culture

1.6

Promotions

1.6

Work satisfaction

Explore 5 Reviews and Ratings
Salesforce Developer
285 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Salesforce Developer
63 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Salesforce Administrator
44 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
34 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
28 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare 360 Degree Cloud Technologies with

Cloudway Consulting

2.8
Compare

Cloud Analogy

3.6
Compare

CloudMoyo

4.0
Compare

CloudThat Technologies Private Limited

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