Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Accrete Globus Technology Team. If you also belong to the team, you can get access from here

Accrete Globus Technology Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 26 Reviews

Filter interviews by

Accrete Globus Technology Associate Software Engineer Interview Questions and Answers

Updated 15 Nov 2024

Accrete Globus Technology Associate Software Engineer Interview Experiences

1 interview found

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

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

Round 1 - Aptitude Test 

Profit and loss, Ratio and Proportion

Round 2 - Technical 

(1 Question)

  • Q1. Tell me about yourself

Interview questions from similar companies

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

I applied via campus placement at Jaypee Institute of Information Technology, Noida and was interviewed before Dec 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Two coding questions and 15 mcq

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on priority queue
  • Q2. Question on dp , stack were askef
Round 3 - Technical 

(2 Questions)

  • Q1. Graph related questions
  • Q2. Database related questions
Round 4 - HR 

(2 Questions)

  • Q1. If you are fine with flexible timings
  • Ans. 

    Yes, I am fine with flexible timings as it allows me to manage my work-life balance effectively.

    • I am comfortable with flexible timings as it helps me accommodate personal commitments.

    • I believe in focusing on productivity rather than strict working hours.

    • I am adaptable and can work efficiently regardless of the time of day.

    • I can provide examples of times when flexible timings have benefited my work performance.

  • Answered by AI
  • Q2. Discussed about projects
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
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Aptitude questions with some basic coding questions

Round 2 - Coding Test 

They have given 3 coding questions and some pseudo codings

Round 3 - Technical 

(2 Questions)

  • Q1. Tell about your self
  • Q2. Some coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Dsa problems dp and tress problem

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Projects and intership

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn DSA
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
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Simple question on maths

Round 2 - Technical 

(2 Questions)

  • Q1. Explain OOPS concept
  • Ans. 

    OOPS (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPS focuses on creating objects that interact with each other to solve complex problems

    • Key principles include encapsulation, inheritance, polymorphism, and abstraction

    • Encapsulation ensures that the internal state of an object is hidden from the outside world

    • Inheritance allows a class to inherit...

  • Answered by AI
  • Q2. Coding array questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - One-on-one 

(9 Questions)

  • Q1. 1. How we secure ur data through data security?
  • Ans. 

    Data security is ensured through various measures such as encryption, access controls, regular backups, and security audits.

    • Encryption: Data is encrypted using algorithms like AES or RSA to protect it from unauthorized access.

    • Access controls: User authentication, role-based access control, and strong password policies are implemented to control data access.

    • Regular backups: Data is regularly backed up to prevent loss or...

  • Answered by AI
  • Q2. 2.Where are how do we use Al in our day to day life ?
  • Ans. 

    AI is used in various aspects of our daily lives, from virtual assistants to recommendation systems.

    • Virtual assistants like Siri, Alexa, and Google Assistant use AI to understand and respond to voice commands.

    • Social media platforms use AI algorithms to personalize our news feeds and suggest friends to connect with.

    • AI-powered recommendation systems suggest products, movies, and music based on our preferences and browsin...

  • Answered by AI
  • Q3. 3.Explain about Artificial intelligence
  • Ans. 

    Artificial intelligence is a field of computer science that focuses on creating intelligent machines.

    • AI involves the development of algorithms and models that enable machines to perform tasks that typically require human intelligence.

    • It encompasses various subfields such as machine learning, natural language processing, computer vision, and robotics.

    • AI applications can be found in areas like virtual assistants, autonom...

  • Answered by AI
  • Q4. 4.what is al and it functionality in machine learning
  • Ans. 

    AL stands for Active Learning and it is a technique used in machine learning to select the most informative data points for labeling.

    • AL is used to reduce the amount of labeled data needed for training a model.

    • It involves iteratively selecting the most uncertain or informative data points for annotation.

    • AL can be used in various machine learning tasks such as classification, regression, and clustering.

    • By actively select...

  • Answered by AI
  • Q5. 5.Short keys of copy, cut, paste, undo
  • Ans. 

    Copy, cut, paste, undo are short keys used for manipulating text or objects in software applications.

    • Copy: Ctrl+C (Windows) or Command+C (Mac)

    • Cut: Ctrl+X (Windows) or Command+X (Mac)

    • Paste: Ctrl+V (Windows) or Command+V (Mac)

    • Undo: Ctrl+Z (Windows) or Command+Z (Mac)

  • Answered by AI
  • Q6. 6.how will short name in mx excel
  • Ans. 

    In Excel, you can create a short name for a cell or range of cells using the Name Manager feature.

    • Open Excel and go to the Formulas tab.

    • Click on the Name Manager button.

    • Click on the New button to create a new name.

    • Enter a short name in the Name field.

    • Specify the cell or range of cells you want to associate with the short name in the Refers to field.

    • Click OK to save the short name.

    • You can now use the short name in formu...

  • Answered by AI
  • Q7. 7.What do you know about artificial intelligence and Machine learning?
  • Ans. 

    Artificial intelligence (AI) is the simulation of human intelligence in machines that can learn and perform tasks without explicit programming.

    • AI is a branch of computer science that focuses on creating intelligent machines

    • Machine learning is a subset of AI that enables machines to learn from data and improve their performance

    • AI and machine learning are used in various applications such as speech recognition, image cla...

  • Answered by AI
  • Q8. 8. Can you play any music instrument?
  • Ans. 

    Yes, I can play the piano and the guitar.

    • I can play the piano and the guitar.

    • I have been playing the piano for 10 years.

    • I have been playing the guitar for 5 years.

  • Answered by AI
  • Q9. 9.Data Base Administration knowledge line attributes and entities and ther m...

Interview Preparation Tips

Interview preparation tips for other job seekers - Build skills while you wait.

• Customize your application materials....

• Use social media to find jobs....

• Research potential employers....

• Prepare your interview responses....

• Network in your preferred industry.

• Send a thank you.

• Be patient.

Skills evaluated in this interview

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

Python slq apti path json sksa

Round 2 - Technical 

(2 Questions)

  • Q1. Problem solving in python
  • Q2. Solving problems in oython
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Find the second most occurrence if string in JavaScript
  • Ans. 

    Find the second most occurrence of a string in an array of strings in JavaScript.

    • Create a map to store the count of each string in the array

    • Sort the map by values in descending order to find the most occurrence

    • Return the key of the second element in the sorted map

  • Answered by AI

Skills evaluated in this interview

Accrete Globus Technology Interview FAQs

How many rounds are there in Accrete Globus Technology Associate Software Engineer interview?
Accrete Globus Technology interview process usually has 2 rounds. The most common rounds in the Accrete Globus Technology interview process are Aptitude Test and Technical.

Tell us how to improve this page.

Accrete Globus Technology Associate Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Accrete Globus Technology Associate Software Engineer Salary
based on 4 salaries
₹3.6 L/yr - ₹5.6 L/yr
16% less than the average Associate Software Engineer Salary in India
View more details

Accrete Globus Technology Associate Software Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

3.0

Salary

5.0

Job security

5.0

Company culture

4.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Business Analyst
21 salaries
unlock blur

₹2.5 L/yr - ₹6 L/yr

Technical Support Engineer
6 salaries
unlock blur

₹3.6 L/yr - ₹5 L/yr

Software Engineer
5 salaries
unlock blur

₹3.6 L/yr - ₹7.2 L/yr

Software Developer
5 salaries
unlock blur

₹3 L/yr - ₹8.6 L/yr

Product Consultant
5 salaries
unlock blur

₹2.4 L/yr - ₹4.1 L/yr

Explore more salaries
Compare Accrete Globus Technology with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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