Upload Button Icon Add office photos

Filter interviews by

TechiesAround Senior Software Developer Interview Questions and Answers

Updated 22 Jan 2024

TechiesAround Senior Software Developer Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

We will ask ten questions in apptitude. Those who scored more than 50 percentage. We will tell them to study HTML, CSS and JavaScript. Once they learned all the three we will call them for Round 2

Round 3 - Coding Test 

We will give a task based on what they studied

Round 4 - One-on-one 

(3 Questions)

  • Q1. Ask questions related to technical
  • Q2. No we won't provide it
  • Q3. Personal questions too
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic Quantitative Aptitude held in online

Round 2 - Coding Test 

Basic programming skills tested by online test

Round 3 - Case Study 

Give some task in domain and we will review it. They can use internet to do the task by their own

Interview Preparation Tips

Interview preparation tips for other job seekers - Personal things will ask

Senior Software Developer Interview Questions Asked at Other Companies

asked in Freshworks
Q1. Intersection of Linked List Problem You are provided with two sin ... read more
asked in Freshworks
Q2. Middle of Linked List Problem Statement Given the head node of a ... read more
asked in Freshworks
Q3. Overlapping Intervals Problem Statement You are given the start a ... read more
asked in SAP
Q4. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Freshworks
Q5. Cube Sum Pairs Problem Statement Given a positive integer N, find ... read more

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Mvc arch & life cycle and basic oops & experianced based
  • Q2. All sql practical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - dont attend cts very bad experiance
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Technical 

(3 Questions)

  • Q1. What is the internal working of streams
  • Ans. 

    Streams in software development are sequences of data that can be processed sequentially or in parallel.

    • Streams are used for processing large amounts of data efficiently.

    • They can be used for reading from or writing to files, network connections, or other sources.

    • Streams can be processed synchronously or asynchronously.

    • Examples include reading a file line by line, processing a stream of sensor data, or downloading a lar

  • Answered by AI
  • Q2. What is the difference between hashmap and hash table
  • Ans. 

    HashMap is non-synchronized and allows null values and keys, while HashTable is synchronized and does not allow null values or keys.

    • HashMap is non-synchronized, meaning it is not thread-safe, while HashTable is synchronized and thread-safe.

    • HashMap allows null values and keys, while HashTable does not allow null values or keys.

    • HashMap is generally preferred for non-threaded applications, while HashTable is used in multi...

  • Answered by AI
  • Q3. What is clonable object
  • Ans. 

    A clonable object is an object that can create a copy of itself, allowing for duplication without affecting the original object.

    • Clonable objects implement the Cloneable interface in Java.

    • The clone() method is used to create a copy of the object.

    • Cloning can be shallow or deep, depending on the requirements.

    • Examples of clonable objects include ArrayList, HashMap, and custom classes that implement Cloneable.

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Java and output related questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. 1. What is @ComponentScan
  • Ans. 

    Annotation used in Spring framework to enable component scanning for Spring-managed beans.

    • Used to automatically detect and register Spring-managed beans within the specified package(s)

    • Can be used at class level or configuration classes to specify base package(s) to scan

    • Can be customized with additional attributes like basePackageClasses, includeFilters, excludeFilters

    • Example: @ComponentScan(basePackages = {"com.example

  • Answered by AI
  • Q2. What is @Controller and @RestController
  • Ans. 

    The @Controller and @RestController annotations are used in Spring MVC to define classes as controllers for handling web requests.

    • The @Controller annotation is used to define a class as a controller in Spring MVC, which can handle web requests and return a view.

    • The @RestController annotation is used to define a class as a RESTful controller in Spring MVC, which can handle web requests and return data in JSON or XML for...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on annotations and thier usage

Skills evaluated in this interview

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

I was interviewed in Jan 2024.

Round 1 - Technical 

(4 Questions)

  • Q1. Jdk jre what is class loader and all
  • Ans. 

    Class loader is a part of Java Runtime Environment (JRE) that loads classes and interfaces at runtime.

    • Class loader is responsible for locating and loading the necessary class files into memory.

    • It follows a hierarchical structure and delegates the class loading to parent class loaders.

    • Class loaders can be customized to load classes from different sources like file system, network, or database.

    • They provide a level of sec...

  • Answered by AI
  • Q2. What isfinal andfinally
  • Ans. 

    final is a keyword in Java used to declare a constant value. finally is a block used in exception handling to ensure a piece of code is always executed.

    • final is used to declare a variable whose value cannot be changed

    • finally is used in a try-catch block to specify a block of code that will always be executed, regardless of whether an exception is thrown or not

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

    ArrayList is a resizable array implementation in Java.

    • ArrayList is a class in Java's Collection framework.

    • It provides dynamic resizing, unlike regular arrays.

    • It can store objects of any type, including strings.

    • ArrayLists can grow or shrink dynamically as elements are added or removed.

    • Example: ArrayList names = new ArrayList();

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

    HashMap is a data structure that stores key-value pairs and provides constant time complexity for basic operations.

    • HashMap is part of the Java Collections Framework.

    • It allows null values and null keys.

    • Keys must be unique, but values can be duplicated.

    • Basic operations include put(key, value), get(key), remove(key), and containsKey(key).

    • Example: HashMap map = new HashMap<>();

  • Answered by AI
    Round 2 - HR 

    (1 Question)

    • Q1. Ask about expected salaries and all

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be confident

    Skills evaluated in this interview

    Interview experience
    2
    Poor
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    No response

    I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

    Round 1 - Technical 

    (1 Question)

    • Q1. What is difference between jpa,jdbc, hibernate Questions on struts
    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - One-on-one 

    (1 Question)

    • Q1. Oops concept ,object ,abstraction ,2) multiple inheritance
    Interview experience
    5
    Excellent
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I applied via Company Website and was interviewed in Aug 2023. 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 - Coding Test 

    Mediam hard question quick sort, sliding window, oops, segment tree

    Round 3 - Technical 

    (3 Questions)

    • Q1. OS DBMS this asked in interview questions
    • Q2. What is dead lock
    • Ans. 

      Deadlock is a situation in which two or more processes are unable to proceed because each is waiting for the other to release a resource.

      • Occurs in multitasking environments

      • Caused by a circular wait condition

      • Can be resolved using techniques like deadlock prevention, deadlock avoidance, and deadlock detection

      • Example: Process A holds Resource 1 and waits for Resource 2, while Process B holds Resource 2 and waits for Resou

    • Answered by AI
    • Q3. SQl queries like second largest value find out

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Work on DSA oops and system design

    Skills evaluated in this interview

    TechiesAround Interview FAQs

    How many rounds are there in TechiesAround Senior Software Developer interview?
    TechiesAround interview process usually has 3-4 rounds. The most common rounds in the TechiesAround interview process are Aptitude Test, Coding Test and Resume Shortlist.
    What are the top questions asked in TechiesAround Senior Software Developer interview?

    Some of the top questions asked at the TechiesAround Senior Software Developer interview -

    1. Ask questions related to techni...read more
    2. No we won't provide...read more
    3. Personal questions ...read more

    Tell us how to improve this page.

    TechiesAround Senior Software Developer Interview Process

    based on 2 interviews

    Interview experience

    5
      
    Excellent
    View more
    Senior Software Developer
    3 salaries
    unlock blur

    ₹1.4 L/yr - ₹1.9 L/yr

    Explore more salaries
    Compare TechiesAround with

    TCS

    3.7
    Compare

    Accenture

    3.8
    Compare

    Wipro

    3.7
    Compare

    Cognizant

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