Upload Button Icon Add office photos

Filter interviews by

SysCloud Senior Software Engineer Interview Questions and Answers

Updated 9 Apr 2024

SysCloud Senior Software Engineer Interview Experiences

1 interview found

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

(1 Question)

  • Q1. How to create queue using stack
  • Ans. 

    To create a queue using stack, use two stacks and implement enqueue and dequeue operations accordingly.

    • Use two stacks - one for enqueue operation and one for dequeue operation

    • For enqueue operation, simply push elements onto the stack used for enqueue

    • For dequeue operation, if the dequeue stack is empty, pop all elements from enqueue stack and push onto dequeue stack, then pop from dequeue stack

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Referral and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Find longest palindromic substring in a given string.
  • Ans. 

    Use dynamic programming to find the longest palindromic substring in a given string.

    • Iterate through the string and expand around each character to find palindromes.

    • Store the length of the longest palindrome found so far.

    • Return the substring based on the start and end indices of the longest palindrome.

  • Answered by AI
  • Q2. How to serialize and deserialise a tree
  • Ans. 

    To serialize and deserialize a tree, use a recursive approach to traverse the tree and store the data in a suitable format.

    • Use pre-order traversal to serialize the tree by storing the node values in a list or string.

    • For deserialization, reconstruct the tree by recursively building nodes from the serialized data.

    • Consider using JSON or XML format for serialization to easily store and retrieve tree structure.

  • Answered by AI
  • Q3. Find if a given regex (containing ., * and lower case english chars) matches a given string.
  • Ans. 

    Use regex library to match given regex with string.

    • Use a regex library like re in Python to match the given regex with the string.

    • Check if the regex matches the string using the library functions.

    • Handle cases where the regex contains special characters like . and * appropriately.

  • Answered by AI
  • Q4. Explain about throttling and implement throttle function.
  • Ans. 

    Throttling is a technique used to control the rate of requests sent to a server.

    • Throttling helps prevent server overload by limiting the number of requests processed at a time.

    • Implementing a throttle function involves setting a maximum request rate and delaying excess requests.

    • Example: Implementing a throttle function in a web application to limit the number of API calls made to a third-party service.

    • Example: Throttlin...

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. Find squares of elements in a sorted array and return the sorted response.
  • Ans. 

    Sort the squares of elements in a sorted array and return the sorted response.

    • Iterate through the array and square each element.

    • Store the squared values in a new array.

    • Sort the new array and return it.

  • Answered by AI
  • Q2. Write a short promise example and implement your own promise
  • Ans. 

    A promise is a commitment to do something in the future, typically used for asynchronous operations in JavaScript.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They represent a value that may be available now, in the future, or never.

    • Promises have three states: pending, fulfilled, or rejected.

    • Example: new Promise((resolve, reject) => { setTimeout(() => resolve('Done!'), 1000); });

  • Answered by AI
  • Q3. Explain event loop, what are different types of queues in event loop
  • Ans. 

    Event loop is a mechanism that allows for asynchronous execution of code by managing the order of events in a single thread.

    • Event loop continuously checks the call stack for any functions that need to be executed, and processes them in a non-blocking manner.

    • Different types of queues in event loop include microtask queue (Promise callbacks), macrotask queue (setTimeout, setInterval callbacks), and animation frame queue

  • Answered by AI
  • Q4. What is virtual DOM and why its faster
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM, used to improve performance by minimizing direct manipulation of the real DOM.

    • Virtual DOM is a concept used in frameworks like React to optimize rendering performance.

    • Changes are first made to the virtual DOM, which is then compared to the real DOM to identify the minimal updates needed.

    • This approach reduces the number of actual DOM manipulations, resulting in faster...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for ServiceNow Senior Software Engineer interview:
  • React.Js
  • Javascript
  • DSA

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Opps, overloading and overriding, factory n singleton patteren
  • Q2. Collections HashMap internal working
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Write polyfill for array map
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Get minimum from stream. Query based.
  • Q2. Minimum number of platforms for trains. Arrival n departure time is given.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Write Trigger Logic
  • Ans. 

    Writing trigger logic involves defining actions to be taken when a certain event occurs in a database.

    • Identify the event that will trigger the logic

    • Define the actions to be taken when the event occurs

    • Consider any conditions or constraints that need to be met for the trigger to fire

  • Answered by AI
  • Q2. Write Batch Class
  • Ans. 

    A Batch Class is used in Salesforce to process records in batches.

    • Batch classes are used to process large amounts of data in Salesforce.

    • They are implemented by implementing the Database.Batchable interface.

    • Batch classes have three main methods: start, execute, and finish.

    • Example: public class MyBatchClass implements Database.Batchable { // implementation }

Answered by AI
  • Q3. Write LWC Component
  • Ans. 

    LWC Component for Senior Software Engineer interview

    • Create a new Lightning Web Component using Salesforce CLI

    • Define HTML template, JavaScript controller, and CSS styling

    • Implement functionality using Apex controllers and Lightning Data Service

    • Use @wire to fetch data from Salesforce backend

    • Leverage Salesforce Lightning Design System for UI components

  • Answered by AI
  • Q4. Salesforce Security Model
  • Skills evaluated in this interview

    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Coding Test 

    Basic DS question like dutch flag problem.

    Round 2 - Technical 

    (2 Questions)

    • Q1. Implement debounce function
    • Ans. 

      Debounce function delays the execution of a function until after a specified amount of time has passed since the last time it was invoked.

      • Create a function that takes a function and a delay time as parameters

      • Use setTimeout to delay the execution of the function

      • Use clearTimeout to reset the timer if the function is invoked again within the delay time

    • Answered by AI
    • Q2. Closure based questions.
    Interview experience
    4
    Good
    Difficulty level
    Easy
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I applied via Company Website

    Round 1 - Assignment 

    A code to identify errors and write Junit. Optimise the code as well.

    Round 2 - Technical 

    (2 Questions)

    • Q1. Stacks using queue
    • Ans. 

      Implementing a stack using two queues

      • Use two queues to simulate a stack

      • Push operation: Enqueue the element to queue 1

      • Pop operation: Dequeue all elements from queue 1 to queue 2, dequeue the last element from queue 1, then swap the queues

      • Top operation: Return the front element of queue 1

      • Example: Push 1, 2, 3 - Queue 1: [1, 2, 3], Queue 2: []

      • Example: Pop - Queue 1: [1, 2], Queue 2: [3]

    • Answered by AI
    • Q2. BFS and Knapsack problem, previous project experience

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be very clear with the technology stack and basic DSA problems.

    Skills evaluated in this interview

    Interview experience
    4
    Good
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (3 Questions)

    • Q1. Git branching strategy
    • Q2. Use of git revert
    • Ans. 

      Git revert is used to undo changes made in a commit by creating a new commit that undoes the changes.

      • Git revert is used to undo changes made in a specific commit without altering the commit history.

      • It creates a new commit that undoes the changes introduced by the specified commit.

      • Git revert is useful for reverting changes without losing the commit history or affecting other team members' work.

      • Example: git revert

    • Answered by AI
    • Q3. Merging process
    Round 2 - Technical 

    (11 Questions)

    • Q1. Jenkis node , what is the use
    • Ans. 

      Jenkins node is a machine that executes tasks as part of a Jenkins build process.

      • Jenkins nodes can be physical machines or virtual machines.

      • Nodes can be configured to run specific types of jobs or tasks.

      • Nodes help distribute workload and improve efficiency in Jenkins pipelines.

    • Answered by AI
    • Q2. How do we name to the node
    • Ans. 

      Nodes can be named based on their functionality, purpose, or position in a hierarchy.

      • Name based on functionality (e.g. loginNode, paymentNode)

      • Name based on purpose (e.g. validationNode, processingNode)

      • Name based on position in hierarchy (e.g. parentNode, childNode)

    • Answered by AI
    • Q3. What are the plugins used in jenkins
    • Ans. 

      Jenkins has a wide range of plugins for various functionalities.

      • Pipeline plugins (e.g. Pipeline, Multibranch Pipeline)

      • SCM plugins (e.g. Git, SVN)

      • Build and test plugins (e.g. Maven, JUnit)

      • Notification plugins (e.g. Email, Slack)

      • Monitoring plugins (e.g. Prometheus, Grafana)

    • Answered by AI
    • Q4. What is jenkins library
    • Ans. 

      Jenkins library is a collection of reusable code that can be shared across multiple Jenkins pipelines.

      • Jenkins library allows for code reuse and sharing across pipelines

      • It helps in maintaining consistency and reducing duplication of code

      • Libraries can be stored in version control systems like Git and referenced in Jenkins pipelines

    • Answered by AI
    • Q5. How we integrate other tools to jenkins
    • Ans. 

      Integrating other tools to Jenkins involves using plugins and configuring build pipelines.

      • Install the necessary plugins for the tools you want to integrate with Jenkins

      • Configure the tools in Jenkins global configuration settings

      • Create build pipelines that include steps for interacting with the integrated tools

      • Use Jenkins API to automate interactions with external tools

    • Answered by AI
    • Q6. What else jenkins do
    • Q7. Diff b/w docker and docker swarm
    • Ans. 

      Docker is a containerization platform for running applications in isolated environments, while Docker Swarm is a tool for orchestrating multiple Docker containers across multiple hosts.

      • Docker is used for creating and managing containers, while Docker Swarm is used for managing multiple containers across multiple hosts.

      • Docker is suitable for single host deployments, while Docker Swarm is suitable for multi-host deployme...

    • Answered by AI
    • Q8. Differentiate k8s from docker swarm
    • Ans. 

      K8s is a container orchestration tool while Docker Swarm is a clustering and scheduling tool for Docker containers.

      • K8s is more widely used and has a larger community support compared to Docker Swarm.

      • K8s supports more advanced features like auto-scaling, self-healing, and rolling updates.

      • Docker Swarm is easier to set up and manage for smaller scale deployments.

      • K8s uses declarative configuration while Docker Swarm uses i...

    • Answered by AI
    • Q9. Prepare all commands for devops tool must
    • Q10. What is git hooks
    • Ans. 

      Git hooks are scripts that run automatically before or after certain Git commands are executed.

      • Git hooks are customizable scripts that can be triggered by specific Git events.

      • They can be used to enforce coding standards, run tests, or automate deployment processes.

      • Examples of Git hooks include pre-commit, post-commit, pre-push, and post-merge hooks.

    • Answered by AI
    • Q11. What is https and ssh cloning
    • Ans. 

      HTTPS is a secure communication protocol used for secure communication over the internet. SSH cloning is a method of cloning a repository using the SSH protocol.

      • HTTPS stands for Hypertext Transfer Protocol Secure and is used to secure communication over the internet.

      • It encrypts the data being transmitted between the client and the server, providing a secure connection.

      • SSH cloning is a method of cloning a Git repository...

    • Answered by AI
    Round 3 - HR 

    (1 Question)

    • Q1. Personal info only

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Learn all devops tool commands

    Skills evaluated in this interview

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

    I applied via Referral and was interviewed in Jul 2024. There were 2 interview rounds.

    Round 1 - Coding Test 

    Full stack question with java and angular and sql

    Round 2 - Case Study 

    Case study on project

    SysCloud Interview FAQs

    How many rounds are there in SysCloud Senior Software Engineer interview?
    SysCloud interview process usually has 1 rounds. The most common rounds in the SysCloud interview process are Technical.

    Tell us how to improve this page.

    Fast track your campus placements

    View all
    SysCloud Senior Software Engineer Salary
    based on 17 salaries
    ₹12 L/yr - ₹21 L/yr
    6% more than the average Senior Software Engineer Salary in India
    View more details

    SysCloud Senior Software Engineer Reviews and Ratings

    based on 2 reviews

    3.5/5

    Rating in categories

    2.0

    Skill development

    3.0

    Work-Life balance

    4.0

    Salary & Benefits

    3.0

    Job Security

    1.0

    Company culture

    4.0

    Promotions/Appraisal

    2.0

    Work Satisfaction

    Explore 2 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