Upload Button Icon Add office photos

Filter interviews by

Astics Techlabs Interview Questions and Answers for Experienced

Updated 13 Jul 2023

Astics Techlabs Interview Experiences for Experienced

Popular Designations

2 interviews found

Interview experience
2
Poor
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 - Technical 

(1 Question)

  • Q1. How to troubleshoot outlook issues
  • Ans. 

    Troubleshooting Outlook issues involves checking internet connection, restarting Outlook, checking email settings, and repairing Outlook data files.

    • Check internet connection to ensure Outlook can connect to the server

    • Restart Outlook to refresh the application and potentially resolve any temporary issues

    • Check email settings such as incoming and outgoing server settings, account credentials, and security settings

    • Repair O...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. What was your role in last organization

Technical Support Engineer Interview Questions asked at other Companies

Q1. Admin Questions :- What is Relationships what are types of relationships
View answer (4)

I applied via Approached by Company and was interviewed before Feb 2021. There were 2 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 

(2 Questions)

  • Q1. Explain your past projects from technology stand point and domain
  • Ans. Explain an use case about existing project they have been doing.
  • Answered Anonymously
  • Q2. HR round was just formality

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare yourself well about technology and domain

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before May 2017. There were 6 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. Salary discussion and negotiation
  • Q2. Java related questions were asked.
  • Q3. Selenium waits and some program
  • Q4. Asked about Collection Framework and different usecases
  • Q5. Different testing Methodologies where they checking code skills
  • Q6. Questions around different scenario based coding
  • Q7. Asked about project and work done with the experience
  • Q8. Given exam in some app where you need to write, speak and hear english senetences.

BUSINESS DEVELOPER ASSOCIATES Interview Questions & Answers

BYJU'S user image Anonymous

posted on 3 Jan 2020

Interview Questionnaire 

2 Questions

  • Q1. How to sell a fish to a brahmin? How to convience a byjus customer, when u cme to his adress and he is refuse to allow u to cme his house and discuss about byjus cause where he had read all negative commen...
  • Q2. How to sell a 20 li. Refrigerator to a customer where he is showing to buy a 10 li. In 10000rs where as price of 20 li is 18000rs

I applied via Other and was interviewed in Feb 2018. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. How many year work experience in bank

Interview Preparation Tips

Round: Resume Shortlist
Experience: Experience

General Tips: This interview was a banking one but was majorly a stress test. It lasted for about 1 hour. The interviewer wanted to test both my knowledge and communication skills. Most of the questions asked to me were related to my banking curriculum i.e. Working capital, cash credit limit, Agri development Loan, Commodity based finance loan, etc.
Skills: Communication, Body Language, Problem Solving, Analytical Skills, Leadership, Presentation Skills, Time Management, Decision Making Skills
Duration: 1-4 weeks

I was interviewed before May 2016.

Interview Questionnaire 

2 Questions

  • Q1. Questions based on past experience
  • Q2. Hr questions

Interview Preparation Tips

Round: Test
Experience: Easy
Total Questions: 10

Round: Technical Interview
Experience: Easy

I was interviewed before Jan 2016.

Interview Preparation Tips

Round: Test
Duration: 1 hour

Interview Preparation Tips

Round: Group Discussion
Experience: they have questioned me for my previous Company Experience & about my skills
Duration: 1 hour

I was interviewed before Sep 2016.

Interview Preparation Tips

Round: Resume Shortlist
Experience: HR called and had a breif discussion and shortlisted.

Round: Technical Interview
Experience: went for 2 hrs, almost answered most questions
Tips: pure core technical exchange servers and windows server mgmt

Skills: Client-Server Programs, Ability To Handle Situations

I was interviewed before Aug 2016.

Interview Questionnaire 

9 Questions

  • Q1. What is inheritance?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reusability and saves time and effort in writing new code.

    • The existing class is called the parent or base class, and the new class is called the child or derived class.

    • The child class inherits all the properties and methods of the parent class and can also add its ...

  • Answered by AI
  • Q2. What are different classes in Java?
  • Ans. 

    Different classes in Java are used to define objects and their behavior.

    • Classes are the building blocks of Java programs.

    • They define the properties and methods of objects.

    • Some commonly used classes in Java are String, Integer, ArrayList, etc.

    • Classes can be inherited to create new classes with additional features.

    • Java provides a rich set of predefined classes, and developers can create their own classes.

  • Answered by AI
  • Q3. What is inheritance?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows for code reuse and promotes a hierarchical organization of code.

    • The existing class is called the superclass or parent class, and the new class is called the subclass or child class.

    • The subclass inherits all the properties and methods of the superclass, and can also add ...

  • Answered by AI
  • Q4. What are different classes in Java?
  • Ans. 

    Java has four different classes: abstract, final, public and default.

    • Abstract class cannot be instantiated and is used as a base class for other classes

    • Final class cannot be inherited and is used to prevent further modification

    • Public class can be accessed from anywhere in the program

    • Default class can only be accessed within the same package

    • Example: public class MyClass {}

  • Answered by AI
  • Q5. How useful is it to create a class public and private in Java ? And which one to prefer for whom?
  • Ans. 

    Creating public and private classes in Java is useful for encapsulation and access control.

    • Creating a class as public allows it to be accessed from any other class.

    • Creating a class as private restricts its access to only within the same class.

    • Public classes are typically used for classes that need to be accessed by other classes or modules.

    • Private classes are typically used for helper classes or internal implementation...

  • Answered by AI
  • Q6. Write a program that contain 8 loops?
  • Ans. 

    A program with 8 loops

    • Loops can be of different types like for, while, do-while, foreach, etc.

    • The loops can be nested within each other to create complex logic.

    • The program can perform various operations within the loops like printing, calculating, etc.

  • Answered by AI
  • Q7. What is the biggest achievement till date?
  • Q8. Why do u wanna join HCl?
  • Ans. 

    I want to join HCl because of their strong reputation in the software industry and their focus on innovation and career growth opportunities.

    • HCl has a strong reputation in the software industry for delivering high-quality products and services.

    • They have a culture of innovation and encourage employees to think creatively and come up with new ideas.

    • HCl offers excellent career growth opportunities and invests in the profe...

  • Answered by AI
  • Q9. What was ur project in college?

Interview Preparation Tips

Round: Resume Shortlist
Experience: It was based on academics marks of MCA
(60%)

Round: Technical Interview
Experience: It was based on academics marks of MCA
(60%)

Round: Technical Interview
Experience: It was not an easy round but with proper preparation and knowledge it can be cracked

Skills evaluated in this interview

Astics Techlabs Interview FAQs

How many rounds are there in Astics Techlabs interview for experienced candidates?
Astics Techlabs interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the Astics Techlabs interview process for experienced candidates are Resume Shortlist, Technical and One-on-one Round.
How to prepare for Astics Techlabs interview for experienced candidates?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Astics Techlabs. The most common topics and skills that interviewers at Astics Techlabs expect are Client Acquisition, Client Handling and Product Training.
What are the top questions asked in Astics Techlabs interview for experienced candidates?

Some of the top questions asked at the Astics Techlabs interview for experienced candidates -

  1. How to troubleshoot outlook iss...read more
  2. HR round was just formal...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Accenture Interview Questions
3.9
 • 7.9k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 4.9k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all

Astics Techlabs Reviews and Ratings

based on 5 reviews

4.5/5

Rating in categories

4.6

Skill development

4.3

Work-Life balance

3.3

Salary & Benefits

3.4

Job Security

4.1

Company culture

4.4

Promotions/Appraisal

4.3

Work Satisfaction

Explore 5 Reviews and Ratings
Software Developer
4 salaries
unlock blur

₹3 L/yr - ₹20 L/yr

Technical Support Engineer
4 salaries
unlock blur

₹5 L/yr - ₹9 L/yr

Senior Software Developer
4 salaries
unlock blur

₹10.8 L/yr - ₹12.8 L/yr

Information Security and Compliance Manager
4 salaries
unlock blur

₹7.8 L/yr - ₹11.2 L/yr

Software Engineer
3 salaries
unlock blur

₹12.5 L/yr - ₹20 L/yr

Explore more salaries
Compare Astics Techlabs with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

3.8
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