Upload Button Icon Add office photos

Filter interviews by

Smarsh Software Engineer Level 1 Interview Questions and Answers

Updated 7 May 2024

Smarsh Software Engineer Level 1 Interview Experiences

1 interview found

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

I applied via Job Fair and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

25 mcq on computer fundamentals and 2 medium coding questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Difference between thread and process What if there are two run methods in a thread Ways of creating threads Sorting algos with TC explanation Delete all nodes in a LL with 5 Explain self join in sql
  • Ans. 

    Threads are lightweight processes within a process. They share memory space, while processes have separate memory spaces.

    • Threads are lighter weight than processes and share memory space

    • Processes have their own memory space and are heavier than threads

    • Example: In a web browser, each tab can be a separate thread within the same process

  • Answered by AI

Interview questions from similar companies

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 Sep 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. On javascript classes and objects

Interview Preparation Tips

Interview preparation tips for other job seekers - It was simple .all they check is how do you proceed for an answer
Round 1 - Aptitude Test 

The simple pseudo are given and we have findout the o/p of the given code and some of the apti questions like questions on directions, speed and time , the Puzzle

Round 2 - Coding Test 

They are given 5 coding questions they were easy to moderate and we have to solve those questions within 1 hr the platform was Google docs

Interview Preparation Tips

Interview preparation tips for other job seekers - Do coding questions easy to moderate lavel
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at G L Bajaj Institute of Technology & Management, Greater Noida and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

They asked some general Quantitative and logical questions and code snippets.

Round 2 - Technical 

(2 Questions)

  • Q1. String Reverse and Two Sum
  • Q2. Related to my projects and Tech Stacks
Round 3 - Technical 

(2 Questions)

  • Q1. This is the Second technical round. The interviewer asked about everything from my project.
  • Q2. Asked some sql queries like joins and set operation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and Understand the business idea of your Project and Tech Stacks
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

We can easily pass the test cases

Round 2 - One-on-one 

(5 Questions)

  • Q1. OOPS, Exception Handling, Collections, Arrays, Strings
  • Q2. What is Interface
  • Ans. 

    Interface in Java is a reference type, similar to a class, that can contain only constants, method signatures, default methods, static methods, and nested types.

    • Interfaces are used to define a contract for classes that implement them.

    • Classes can implement multiple interfaces in Java.

    • Interfaces cannot have instance fields, constructors, or non-static methods.

    • Example: interface Shape { void draw(); }

    • Example: class Circle...

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

    Abstraction is a concept in object-oriented programming where only relevant data is shown to the user while hiding unnecessary details.

    • Abstraction helps in simplifying complex systems by only showing essential features.

    • It allows for creating abstract classes and interfaces in Java.

    • Example: In a car, the driver only needs to know how to drive it without understanding the internal workings of the engine.

  • Answered by AI
  • Q4. Explain about Exception and Exception handling
  • Ans. 

    Exceptions are unexpected events that disrupt the normal flow of a program. Exception handling is the process of dealing with these events.

    • Exceptions are objects that represent an abnormal condition or error in a program.

    • Exception handling allows developers to gracefully handle errors and prevent the program from crashing.

    • Java provides try-catch blocks for handling exceptions. The try block contains the code that may t...

  • Answered by AI
  • Q5. Explain Arrays and Strinds
  • Ans. 

    Arrays are a collection of elements of the same data type, while Strings are a sequence of characters.

    • Arrays can store multiple values of the same data type, accessed by index.

    • Strings are immutable sequences of characters, can be manipulated using various methods.

    • Example: int[] numbers = {1, 2, 3}; String name = "John";

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is java virtual machine?
  • Q2. What os inheritance in java?
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

First round is technical apptitude in java or python

Round 2 - Coding Test 

Second round is strings and array coding test

Round 3 - Coding Test 

Third level also advanced coding level

Round 4 - HR 

(2 Questions)

  • Q1. Basic information
  • Q2. Basic level hr questions

Interview Preparation Tips

Topics to prepare for Soft Suave Technologies Java Developer interview:
  • Java
Interview preparation tips for other job seekers - study well ,try your best
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Walk-in

Round 1 - Technical 

(2 Questions)

  • Q1. How make a queue using a stack
  • Ans. 

    To implement a queue using a stack, use two stacks and simulate the queue operations.

    • Use two stacks, one for enqueue operation and one for dequeue operation.

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

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

    • Then pop from the dequeue stack to simulate dequeue operation.

  • Answered by AI
  • Q2. Create a linked list
  • Ans. 

    A linked list is a data structure consisting of nodes where each node points to the next node in the sequence.

    • Create a Node class with data and next pointer

    • Initialize a head pointer to null

    • Add nodes by updating next pointers

    • Traverse the list by following next pointers

  • Answered by AI

Skills evaluated in this interview

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

I applied via campus placement at Maharaja Agrasen Institute of Technology, Delhi and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Duration 60 min, topics: DBMS, computer networking, outputs, SQL queries

Round 2 - Coding Test 

Topics: Trees, DP, Greedy

Interview Preparation Tips

Interview preparation tips for other job seekers - Have good understanding of DSA, specially topics like Trees, DP, Graph and Greedy
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Array manipulatio code wap
  • Q2. String reverse wap

Smarsh Interview FAQs

How many rounds are there in Smarsh Software Engineer Level 1 interview?
Smarsh interview process usually has 2 rounds. The most common rounds in the Smarsh interview process are Coding Test and One-on-one Round.

Tell us how to improve this page.

Smarsh Software Engineer Level 1 Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

kipi.ai Interview Questions
4.3
 • 54 Interviews
Magic Edtech Interview Questions
3.1
 • 48 Interviews
Affine Interview Questions
3.4
 • 48 Interviews
Cyfuture Interview Questions
2.9
 • 43 Interviews
View all
Smarsh Software Engineer Level 1 Salary
based on 7 salaries
₹11.9 L/yr - ₹20 L/yr
40% more than the average Software Engineer Level 1 Salary in India
View more details

Smarsh Software Engineer Level 1 Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

3.5

Skill development

4.0

Work-life balance

3.5

Salary

2.5

Job security

4.0

Company culture

2.5

Promotions

3.0

Work satisfaction

Explore 2 Reviews and Ratings
Software Engineer III
32 salaries
unlock blur

₹14.1 L/yr - ₹30 L/yr

Lead Engineer
21 salaries
unlock blur

₹30 L/yr - ₹58 L/yr

Software Engineer IV
19 salaries
unlock blur

₹22 L/yr - ₹33 L/yr

Software Engineer2
19 salaries
unlock blur

₹12 L/yr - ₹23.6 L/yr

Software Engineer
15 salaries
unlock blur

₹10 L/yr - ₹37.4 L/yr

Explore more salaries
Compare Smarsh with

Proofpoint

4.1
Compare

Mimecast

3.6
Compare

Barracuda Networks

3.1
Compare

NortonLifeLock's

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