Upload Button Icon Add office photos

Filter interviews by

SysCloud Software Engineer Interview Questions and Answers

Updated 6 Aug 2024

SysCloud Software Engineer Interview Experiences

2 interviews found

Software Engineer Interview Questions & Answers

user image santosh kumar

posted on 2 Aug 2024

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

I applied via campus placement at Lovely Professional University (LPU) and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. ARRAY OPERATIONS
  • Q2. LOOP OPERATIONS
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Merge Sort, Quick Sort
  • Q2. Projects what you done mentioned in the resume

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find DuplicateYou have been given an integer array/list(ARR) of s ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Questions about OOPS includes inheritence, interface, abstract classes, access specifiers
  • Q2. Coding question: given a vector, return a vector where each entry in the resultant vector is the product of the remaining elements in the given vector.
  • Q3. Coding question: given a vector numbers, return the index of the vector which has the longest length palindrome
  • Ans. 

    Return the index of the vector with the longest length palindrome

    • Iterate through each string in the vector

    • Check if the string is a palindrome

    • Track the index of the longest palindrome string

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Oracle Software Engineer interview:
  • oops
  • C++
  • Java
  • Python
  • DSA
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via campus placement at Indian Institute of Technology (IIT), Patna and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Coding Test 

The coding questions were at Leetcode difficulty level and were derived from the Striver sheet.

Round 2 - Technical 

(2 Questions)

  • Q1. BFS graph level
  • Q2. Minimum flight distance . I was not shortlisted for interview.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA well and computer fundamentals.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Data structure related question

Round 2 - Technical 

(4 Questions)

  • Q1. Quesitions related to data structure, cloud
  • Q2. Find the second highest integer
  • Ans. 

    To find the second highest integer in an array, sort the array in descending order and return the second element.

    • Sort the array in descending order

    • Return the second element in the sorted array

    • Handle edge cases like duplicates or small arrays

  • Answered by AI
  • Q3. Question related to two sum
  • Q4. Some sliding window problems
Round 3 - HR 

(1 Question)

  • Q1. General Behavioral Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for the basics

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain microservices.
  • Q2. OOPS

Interview Preparation Tips

Interview preparation tips for other job seekers - This was a contract-based position, so just 1 round of interviews was conducted.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It included aptitude, technical and coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on SQL(Joins)
  • Q2. Questions on arrays, substrings
Round 3 - HR 

(2 Questions)

  • Q1. Location preferred
  • Ans. 

    Remote work preferred, open to occasional travel

    • Remote work preferred

    • Open to occasional travel

    • Flexible with location

  • Answered by AI
  • Q2. Family background
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Sliding window based question
Round 2 - Technical 

(1 Question)

  • Q1. Java, JS, SQL based questions
Round 3 - HR 

(1 Question)

  • Q1. Reasons to switch , motivation , salary discussion
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
-
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. Asked linq question and answered correctly with little modification, still was not impressed
  • Q2. Expections were little high.

Software Engineer Interview Questions & Answers

Globant user image Priyanka Vitthal chakkar

posted on 5 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is the inheritance?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a class inherits properties and behaviors from another class.

    • Allows a class to inherit attributes and methods from another class

    • Promotes code reusability and reduces redundancy

    • Creates a parent-child relationship between classes

    • Derived class can override or extend the functionality of the base class

  • Answered by AI
  • Q2. What are the types of joins in mysql
  • Ans. 

    Types of joins in MySQL include inner join, left join, right join, and full join.

    • Inner join: Returns rows when there is a match in both tables.

    • Left join: Returns all rows from the left table and the matched rows from the right table.

    • Right join: Returns all rows from the right table and the matched rows from the left table.

    • Full join: Returns rows when there is a match in one of the tables.

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. How to handle multiple api's
  • Ans. 

    Use a centralized API gateway to manage and route requests to multiple APIs efficiently.

    • Implement a centralized API gateway to handle incoming requests and route them to the appropriate API based on the endpoint.

    • Utilize API management tools like Apigee, Kong, or AWS API Gateway to manage and monitor multiple APIs.

    • Consider implementing a caching layer to improve performance and reduce the number of requests to external

  • Answered by AI
  • Q2. What does strstr function do?
  • Ans. 

    strstr function searches for a substring within a string and returns a pointer to the first occurrence of the substring.

    • Used in C programming language

    • Syntax: char *strstr(const char *haystack, const char *needle)

    • Example: char *str = strstr("hello world", "world")

  • Answered by AI

Skills evaluated in this interview

SysCloud Interview FAQs

How many rounds are there in SysCloud Software Engineer interview?
SysCloud interview process usually has 1 rounds. The most common rounds in the SysCloud interview process are One-on-one Round.
What are the top questions asked in SysCloud Software Engineer interview?

Some of the top questions asked at the SysCloud Software Engineer interview -

  1. Merge Sort, Quick S...read more
  2. ARRAY OPERATI...read more
  3. LOOP OPERATI...read more

Tell us how to improve this page.

People are getting interviews through

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

Fast track your campus placements

View all
SysCloud Software Engineer Salary
based on 45 salaries
₹6 L/yr - ₹16 L/yr
19% more than the average Software Engineer Salary in India
View more details

SysCloud Software Engineer Reviews and Ratings

based on 9 reviews

3.1/5

Rating in categories

2.9

Skill development

3.0

Work-Life balance

3.4

Salary & Benefits

2.4

Job Security

2.3

Company culture

3.7

Promotions/Appraisal

2.5

Work Satisfaction

Explore 9 Reviews and Ratings
Software Engineer
45 salaries
unlock blur

₹6 L/yr - ₹16 L/yr

Senior Software Engineer
17 salaries
unlock blur

₹12 L/yr - ₹21 L/yr

Software Developer
8 salaries
unlock blur

₹5 L/yr - ₹13 L/yr

Associate Director Product Management
5 salaries
unlock blur

₹16 L/yr - ₹20 L/yr

Cyber Security Analyst
5 salaries
unlock blur

₹4.5 L/yr - ₹5 L/yr

Explore more salaries
Compare SysCloud with

Druva

3.6
Compare

Freshworks

3.5
Compare

Zoho

4.3
Compare

InMobi

3.6
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