Upload Button Icon Add office photos

Filter interviews by

Arcesium Sde1 Interview Questions and Answers

Updated 29 Apr 2022

Arcesium Sde1 Interview Experiences

1 interview found

Sde1 Interview Questions & Answers

user image Anonymous

posted on 29 Apr 2022

I applied via Referral

Round 1 - Coding Test 

Coding test consisting of MCQs and a couple of coding questions based on data structures.

Round 2 - Technical 

(3 Questions)

  • Q1. Thorough examination of advanced Java concepts
  • Q2. Synchronized vs ReentrantLock
  • Ans. 

    Synchronized and ReentrantLock are both used for thread synchronization in Java.

    • Synchronized is a keyword in Java and is used to lock an object for exclusive use by a single thread.

    • ReentrantLock is a class in Java and provides more advanced features than Synchronized, such as fairness and interruptibility.

    • Synchronized is easier to use and requires less code, but ReentrantLock provides more control and flexibility.

    • Synch...

  • Answered by AI
  • Q3. Checked vs unchecked exceptions
  • Ans. 

    Checked exceptions are checked at compile-time while unchecked exceptions are not.

    • Checked exceptions are declared in the method signature or caught in a try-catch block

    • Unchecked exceptions are not declared in the method signature and can occur at runtime

    • Examples of checked exceptions include IOException and ClassNotFoundException

    • Examples of unchecked exceptions include NullPointerException and ArrayIndexOutOfBoundsExce

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay confident and be clear about the advanced concepts of Java

Skills evaluated in this interview

Interview questions from similar companies

I applied via Referral and was interviewed in Dec 2021. 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 - Aptitude Test 

Verbal,quants

Round 3 - Technical 

(1 Question)

  • Q1. Sql, oops data structure

Interview Preparation Tips

Interview preparation tips for other job seekers - be calm and polite. try to be interactive with interviewer
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

C and Golang related questions, 2 Hours assement, The test involved writing code by hand in paper in the office (Bengaluru)

Round 2 - Technical 

(9 Questions)

  • Q1. Write a go code to remove duplicate elements from a slice.
  • Ans. 

    Go code to remove duplicate elements from a slice of strings

    • Use a map to keep track of unique elements

    • Iterate over the slice and add elements to the map

    • Create a new slice with unique elements from the map

  • Answered by AI
  • Q2. Difference between array and slice in Go.
  • Ans. 

    Arrays have fixed length, slices are dynamic and can grow/shrink. Slices are references to arrays.

    • Arrays have fixed length, specified at compile time.

    • Slices are dynamic, can grow or shrink at runtime.

    • Slices are references to arrays, allowing for more flexibility.

    • Example: var arr [3]string // array with fixed length of 3

    • Example: slice := make([]string, 0) // slice with dynamic length

  • Answered by AI
  • Q3. Explain struct and interface
  • Ans. 

    Struct is a user-defined data type that groups related data fields together. Interface defines a set of methods that a type must implement.

    • Struct is used to create complex data structures by grouping related data fields together.

    • Interface defines a set of methods that a type must implement. It allows for polymorphism in Go.

    • Example: type Person struct { Name string; Age int }

    • Example: type Shape interface { Area() float6...

  • Answered by AI
  • Q4. What is containerization.
  • Ans. 

    Containerization is a method of packaging, distributing, and running applications in isolated environments called containers.

    • Containers are lightweight, portable, and can run on any platform that supports containerization.

    • They include everything needed to run the application, such as code, runtime, system tools, libraries, and settings.

    • Popular containerization tools include Docker, Kubernetes, and Podman.

    • Containerizati...

  • Answered by AI
  • Q5. Write a go code to implement struct.
  • Ans. 

    Implementing a struct in Go code

    • Define a struct using the 'type' keyword

    • Add fields to the struct with their respective data types

    • Access struct fields using dot notation

  • Answered by AI
  • Q6. Explain goroutine.
  • Ans. 

    Goroutine is a lightweight thread managed by Go runtime, allowing concurrent execution of functions.

    • Goroutines are created using the 'go' keyword in Go programming language.

    • They are more lightweight than threads and are managed by the Go runtime.

    • Goroutines allow for concurrent execution of functions without the need for manual thread management.

    • Example: go myFunction()

    • Example: go func() { // code here }

  • Answered by AI
  • Q7. How do you achieve concurrency in Go?
  • Ans. 

    Concurrency in Go is achieved using goroutines and channels.

    • Use goroutines to run functions concurrently

    • Communicate between goroutines using channels

    • Avoid using shared memory for synchronization

  • Answered by AI
  • Q8. What is channel in Go? What are the differences between buffered and unbuffered channel?
  • Ans. 

    A channel in Go is a communication mechanism that allows goroutines to communicate with each other.

    • Buffered channels have a specific capacity and can send multiple values without the need for a corresponding receive operation immediately.

    • Unbuffered channels have no capacity and require both a send and receive operation to be ready at the same time for communication to occur.

  • Answered by AI
  • Q9. What is scaling? Horizontal and vertical scaling.
  • Ans. 

    Scaling refers to the ability of a system to handle increasing amounts of work or its potential to accommodate growth.

    • Horizontal scaling involves adding more machines to distribute the load, while vertical scaling involves increasing the resources of a single machine.

    • Horizontal scaling is more cost-effective and provides better fault tolerance, but can be more complex to implement.

    • Vertical scaling is simpler to impleme...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study basic DSA. Learn C properly (Including deep concepts in pointer). Practice Golang. Also try to write solve some basic dsa problem in Go.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I applied via Campus Placement

Round 1 - Coding Test 

4 sections Quantitative Analysis, Programming Based (output analysis, error detection), Aptitude and ML Engineering ( activation functions, models etc basics)

Round 2 - One-on-one 

(2 Questions)

  • Q1. Merge Sort simple divide and conquer but a pain to execute they really just look for how logical you are and if your approach is correct
  • Q2. Talk about your projects previous experience etc
Round 3 - HR 

(2 Questions)

  • Q1. What do you think about Q
  • Q2. Personality based questions like what are your hobbies, what drives you etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident consistent and concise
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. What id oops and its advantages
  • Ans. 

    OOPs stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects.

    • Advantages of OOPs include code reusability, modularity, flexibility, and easier maintenance.

    • Encapsulation allows data hiding and protection, reducing complexity and increasing security.

    • Inheritance enables code reuse and promotes the creation of hierarchical relationships between classes.

    • Polymorphism allows objects...

  • Answered by AI
  • Q2. What is jquery and JavaScript
  • Ans. 

    jQuery is a JavaScript library that simplifies HTML document traversal and manipulation, event handling, and animation.

    • jQuery is a fast, small, and feature-rich JavaScript library.

    • It makes things like HTML document traversal and manipulation, event handling, and animation much simpler with an easy-to-use API.

    • jQuery simplifies common tasks like AJAX calls and DOM manipulation.

    • JavaScript is a programming language that en...

  • Answered by AI
Round 2 - Coding Test 

Ecom is core platform

Round 3 - One-on-one 

(2 Questions)

  • Q1. What is php and its advantages
  • Ans. 

    PHP is a server-side scripting language used for web development.

    • PHP stands for Hypertext Preprocessor.

    • It is open source and widely used for creating dynamic web pages.

    • Advantages include easy integration with HTML, support for various databases, and compatibility with different operating systems.

    • PHP code can be embedded within HTML code, making it easy to work with web content.

    • Popular websites like Facebook and WordPre

  • Answered by AI
  • Q2. How are you hope you doing well

Interview Preparation Tips

Interview preparation tips for other job seekers - Good job

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jan 2023. There were 3 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 

(1 Question)

  • Q1. Spark architecture pyspark coding sql coding
Round 3 - One-on-one 

(1 Question)

  • Q1. Spark architecture sql window functions,aggreate functions pyspark data frame coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare sql, python, pyspark dataframe coding, data modelling

I was interviewed in Aug 2022.

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 - Technical 

(2 Questions)

  • Q1. Check if a linkedlist is palindrome
  • Ans. 

    To check if a linkedlist is palindrome or not

    • Traverse the linkedlist and push each element into a stack

    • Traverse the linkedlist again and compare each element with the popped element from the stack

    • If all elements match, then the linkedlist is palindrome

  • Answered by AI
  • Q2. Sort employees stream based on salary and department
  • Ans. 

    Sort employees by salary and department

    • Create a comparator function to compare salary and department

    • Use the comparator function with the sort() method on the employee stream

    • Return the sorted employee stream

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Count the duplicates in array
  • Ans. 

    Count duplicates in array of strings

    • Create a dictionary to store the count of each string

    • Loop through the array and increment the count in dictionary

    • Loop through the dictionary and count the duplicates

    • Return the count of duplicates

  • Answered by AI
Round 4 - Client Interview 

(1 Question)

  • Q1. Managerial questions about resolving team issues
  • Ans. How will you solve a blocker
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview is of average difficulty, very easy and smooth process, helpful hrs

Skills evaluated in this interview

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

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

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 - Coding Test 

It was a coding + aptitude test. Mcqs were also there.

Round 3 - Group Discussion 

One topic was given. Share the pros and cons

Round 4 - Technical 

(1 Question)

  • Q1. Simple coding and programming questions on java
Round 5 - HR 

(2 Questions)

  • Q1. Flexible to shift in another city
  • Q2. Interests and hobbies

Interview Preparation Tips

Topics to prepare for Brillio Software Engineer interview:
  • Java
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. DBMS: Indexing Python: Monkey Patching
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 - Coding Test 

DSA, Technical MCQ

Round 3 - Technical 

(1 Question)

  • Q1. DSA - Nth Fibonacci no with memoization, Find duplicate node in Linked list, Binary tree DSA questions, Project based tech questions, OOPS, Puzzle
  • Ans. 

    Interview questions for Software Engineer position covering DSA, project-based tech questions, OOPS, and puzzle.

    • Be prepared to answer DSA questions such as finding the Nth Fibonacci number with memoization, finding duplicate nodes in a linked list, and binary tree DSA questions.

    • Expect project-based tech questions that may require you to explain your approach to solving a particular problem.

    • Brush up on OOPS concepts and...

  • Answered by AI
Round 4 - Leadership discussion 

(1 Question)

  • Q1. Project based question in depth, Some HR questions, Leadership qualities questions, Puzzle
Round 5 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. What are your strengths and weaknesses?
  • Q3. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong on basics and have in depth knowledge of your project.

Skills evaluated in this interview

Arcesium Interview FAQs

How many rounds are there in Arcesium Sde1 interview?
Arcesium interview process usually has 2 rounds. The most common rounds in the Arcesium interview process are Coding Test and Technical.
What are the top questions asked in Arcesium Sde1 interview?

Some of the top questions asked at the Arcesium Sde1 interview -

  1. Checked vs unchecked excepti...read more
  2. Synchronized vs ReentrantL...read more
  3. Thorough examination of advanced Java conce...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

HSBC Group Interview Questions
4.0
 • 490 Interviews
Goldman Sachs Interview Questions
3.5
 • 407 Interviews
TCS iON Interview Questions
3.9
 • 364 Interviews
Deutsche Bank Interview Questions
3.9
 • 362 Interviews
Morgan Stanley Interview Questions
3.7
 • 306 Interviews
Barclays Interview Questions
3.9
 • 272 Interviews
CitiusTech Interview Questions
3.4
 • 266 Interviews
NeoSOFT Interview Questions
4.0
 • 260 Interviews
Episource Interview Questions
3.9
 • 221 Interviews
View all
Arcesium Sde1 Salary
based on 14 salaries
₹19.1 L/yr - ₹52 L/yr
54% more than the average Sde1 Salary in India
View more details

Arcesium Sde1 Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

5.0

Company culture

4.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior Analyst
302 salaries
unlock blur

₹9.5 L/yr - ₹26 L/yr

Analyst
297 salaries
unlock blur

₹8 L/yr - ₹20 L/yr

Senior Software Engineer
224 salaries
unlock blur

₹15 L/yr - ₹42 L/yr

Manager
149 salaries
unlock blur

₹16.2 L/yr - ₹50 L/yr

Software Engineer
148 salaries
unlock blur

₹11.9 L/yr - ₹33 L/yr

Explore more salaries
Compare Arcesium with

Edelweiss

3.9
Compare

JPMorgan Chase & Co.

4.0
Compare

Goldman Sachs

3.5
Compare

Morgan Stanley

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