Upload Button Icon Add office photos
Engaged Employer

i

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

Posidex Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Posidex Technologies Interview Questions and Answers

Updated 2 Dec 2024
Popular Designations

8 Interview questions

An Accountant was asked 7mo ago
Q. Why do you want this job?
Ans. 

I am passionate about accounting and eager to contribute my skills to your team while growing professionally in a dynamic environment.

  • I admire your company's commitment to integrity and transparency in financial reporting.

  • I am excited about the opportunity to work with a talented team and learn from experienced professionals.

  • I believe my skills in financial analysis and attention to detail will add value to your a...

View all Accountant interview questions
An Accountant was asked 7mo ago
Q. Tell me about yourself.
Ans. 

Detail-oriented accounting professional with a passion for numbers and a strong background in financial analysis and reporting.

  • Education: Bachelor's degree in Accounting from XYZ University.

  • Experience: 3 years as a junior accountant at ABC Corp, managing accounts payable and receivable.

  • Skills: Proficient in QuickBooks and Excel, with strong analytical skills demonstrated through financial forecasting projects.

  • Cert...

View all Accountant interview questions
A Software Engineer was asked 12mo ago
Q. What are exceptions?
Ans. 

Exceptions are unexpected events that occur during the execution of a program and disrupt the normal flow of the program.

  • Exceptions are used to handle errors and other exceptional conditions in a program.

  • They can be caught and handled using try-catch blocks.

  • Examples of exceptions include NullPointerException, ArrayIndexOutOfBoundsException, and IOException.

View all Software Engineer interview questions
An Accounts & Administration Executive was asked
Q. What is depreciation?
Ans. 

Depreciation is the allocation of the cost of a tangible asset over its useful life.

  • Depreciation is a non-cash expense that reflects the decrease in value of an asset over time.

  • It is used to spread the cost of an asset over its useful life for accounting and tax purposes.

  • Common methods of calculating depreciation include straight-line, double declining balance, and units of production.

  • Examples of depreciable asset...

View all Accounts & Administration Executive interview questions
A SQL Developer was asked
Q. What is a join, and what is its syntax?
Ans. 

Join is used to combine rows from two or more tables based on a related column between them.

  • Join is used to retrieve data from multiple tables.

  • Syntax: SELECT column_name(s) FROM table1 JOIN table2 ON table1.column_name = table2.column_name;

  • Types of joins: INNER JOIN, LEFT JOIN, RIGHT JOIN, FULL OUTER JOIN, CROSS JOIN.

  • Example: SELECT customers.name, orders.order_date FROM customers JOIN orders ON customers.customer...

View all SQL Developer interview questions
A Software Developer was asked
Q. Write a program to find the number of rectangles that can be formed from a given number of squares.
Ans. 

The number of rectangles formed can be calculated using the formula n*(n+1)*(2n+1)/6.

  • Use the formula n*(n+1)*(2n+1)/6 to calculate the number of rectangles.

  • The number of squares can be used as the value of n in the formula.

  • Consider all possible combinations of squares to form rectangles.

View all Software Developer interview questions
A SQL Developer was asked
Q. What is constrain?, Whatis DDL?
Ans. 

Constrain is a rule that restricts the values in a database column. DDL is a set of SQL commands used to create, modify, and delete database objects.

  • Constrains ensure data integrity and prevent invalid data from being inserted into a database.

  • DDL includes commands like CREATE, ALTER, and DROP to manage database objects like tables, indexes, and views.

  • Constrains are defined using DDL commands like CHECK, UNIQUE, an...

View all SQL Developer interview questions
Are these interview questions helpful?
A Java Developer was asked
Q. Linked list in Java
Ans. 

A linked list is a data structure in Java that consists of a sequence of nodes, each containing a reference to the next node.

  • Linked list is a dynamic data structure that can grow or shrink during runtime

  • It can be singly linked or doubly linked

  • Insertion and deletion operations are faster compared to arrays

  • Traversal of linked list is slower compared to arrays

  • Example: LinkedList class in Java

View all Java Developer interview questions

Posidex Technologies Interview Experiences

9 interviews found

Accountant Interview Questions & Answers

user image Anonymous

posted on 2 Dec 2024

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-

I applied via Walk-in and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about your self
  • Ans. 

    Detail-oriented accounting professional with a passion for numbers and a strong background in financial analysis and reporting.

    • Education: Bachelor's degree in Accounting from XYZ University.

    • Experience: 3 years as a junior accountant at ABC Corp, managing accounts payable and receivable.

    • Skills: Proficient in QuickBooks and Excel, with strong analytical skills demonstrated through financial forecasting projects.

    • Certifica...

  • Answered by AI
  • Q2. Why do you want this job
  • Ans. 

    I am passionate about accounting and eager to contribute my skills to your team while growing professionally in a dynamic environment.

    • I admire your company's commitment to integrity and transparency in financial reporting.

    • I am excited about the opportunity to work with a talented team and learn from experienced professionals.

    • I believe my skills in financial analysis and attention to detail will add value to your accoun...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Basic aptitude -50 questions to be solved in 1hr

Round 2 - Technical 

(1 Question)

  • Q1. Self introduction,Projects, DSA problems, java, SQL
Round 3 - HR 

(1 Question)

  • Q1. Basic HR questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

1 hour exam duration

Round 2 - Technical 

(2 Questions)

  • Q1. Self introduction?
  • Q2. What are exceptions?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is depreciation
  • Ans. 

    Depreciation is the allocation of the cost of a tangible asset over its useful life.

    • Depreciation is a non-cash expense that reflects the decrease in value of an asset over time.

    • It is used to spread the cost of an asset over its useful life for accounting and tax purposes.

    • Common methods of calculating depreciation include straight-line, double declining balance, and units of production.

    • Examples of depreciable assets inc...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(2 Questions)

  • Q1. Java thread and collection
  • Q2. Linked list in Java
  • Ans. 

    A linked list is a data structure in Java that consists of a sequence of nodes, each containing a reference to the next node.

    • Linked list is a dynamic data structure that can grow or shrink during runtime

    • It can be singly linked or doubly linked

    • Insertion and deletion operations are faster compared to arrays

    • Traversal of linked list is slower compared to arrays

    • Example: LinkedList class in Java

  • Answered by AI

Skills evaluated in this interview

SQL Developer Interview Questions & Answers

user image Anonymous

posted on 10 Jun 2022

I applied via Walk-in and was interviewed in May 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is join and it's syntax?
  • Ans. 

    Join is used to combine rows from two or more tables based on a related column between them.

    • Join is used to retrieve data from multiple tables.

    • Syntax: SELECT column_name(s) FROM table1 JOIN table2 ON table1.column_name = table2.column_name;

    • Types of joins: INNER JOIN, LEFT JOIN, RIGHT JOIN, FULL OUTER JOIN, CROSS JOIN.

    • Example: SELECT customers.name, orders.order_date FROM customers JOIN orders ON customers.customer_id =...

  • Answered by AI
  • Q2. What is constrain?, Whatis DDL?
  • Ans. 

    Constrain is a rule that restricts the values in a database column. DDL is a set of SQL commands used to create, modify, and delete database objects.

    • Constrains ensure data integrity and prevent invalid data from being inserted into a database.

    • DDL includes commands like CREATE, ALTER, and DROP to manage database objects like tables, indexes, and views.

    • Constrains are defined using DDL commands like CHECK, UNIQUE, and FOR...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Posidex Technologies SQL Developer interview:
  • Joins
  • Substring
  • Instring
  • Constraint
  • DDL
  • Dml
  • DCL
  • TCL
  • SCALAR FUNTION
  • MULTI ROW FUNCTIONS
  • SINGLE ROW FUNCTION
Interview preparation tips for other job seekers - Prepare well for syntax and all the best.

Skills evaluated in this interview

HR Specialist Interview Questions & Answers

user image Anonymous

posted on 30 Aug 2022

I applied via Recruitment Consulltant and was interviewed in Mar 2022. There were 2 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 - One-on-one 

(1 Question)

  • Q1. Regarding previous experience

Interview Preparation Tips

Interview preparation tips for other job seekers - concentrate on the skills and experience mentioned in the resume, based on that only interview will happened.

I applied via Recruitment Consultant and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Core Java,Oops,jdbc

Interview Preparation Tips

Interview preparation tips for other job seekers - Core java and collection,jdbc

I appeared for an interview in Aug 2017.

Interview Questionnaire 

2 Questions

  • Q1. Find the number of rectangles formed if no of squares are given. Write a program for that!
  • Ans. 

    The number of rectangles formed can be calculated using the formula n*(n+1)*(2n+1)/6.

    • Use the formula n*(n+1)*(2n+1)/6 to calculate the number of rectangles.

    • The number of squares can be used as the value of n in the formula.

    • Consider all possible combinations of squares to form rectangles.

  • Answered by AI
  • Q2. Case study

Interview Preparation Tips

Round: Test
Experience: Normal aptitude questions
Tips: Time management
Duration: 1 hour
Total Questions: 40

Round: Group Discussion
Experience: You need to be very specific about what you're talking!
Tips: Think before talking
Duration: 20 minutes

Round: Technical Interview
Experience: It was time taking finally solved it
Tips: Be good at programming

Round: HR Interview
Experience: Only personal questions

College Name: GURU NANAK INSTITUTE OF TECHNOLOGY

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Posidex Technologies?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Company Website and was interviewed in Dec 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Question based on oops java concept, logical reasoning, multithreading, data structures , collection, Servlet , ajax .

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with basic concept knowledge based on core and advanced java

Give your answer in very confident mode .

Posidex Technologies Interview FAQs

How many rounds are there in Posidex Technologies interview?
Posidex Technologies interview process usually has 1-2 rounds. The most common rounds in the Posidex Technologies interview process are Technical, Resume Shortlist and Aptitude Test.
How to prepare for Posidex Technologies interview?
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 Posidex Technologies. The most common topics and skills that interviewers at Posidex Technologies expect are Java, SQL, Spring Boot, J2Ee and Angular.
What are the top questions asked in Posidex Technologies interview?

Some of the top questions asked at the Posidex Technologies interview -

  1. Find the number of rectangles formed if no of squares are given. Write a progra...read more
  2. What is join and it's synt...read more
  3. What is constrain?, Whatis D...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.6/5

based on 7 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Posidex Technologies Reviews and Ratings

based on 39 reviews

4.3/5

Rating in categories

3.6

Skill development

3.9

Work-life balance

4.0

Salary

4.6

Job security

3.9

Company culture

4.1

Promotions

3.8

Work satisfaction

Explore 39 Reviews and Ratings
Software Sales Executive

Hyderabad / Secunderabad

2-6 Yrs

Not Disclosed

Finance & Accounts AVP/Sr Manager (Qualified CA)

Hyderabad / Secunderabad

9-10 Yrs

Not Disclosed

Senior Marketing Executive

Hyderabad / Secunderabad

3-5 Yrs

Not Disclosed

Explore more jobs
Software Engineer
75 salaries
unlock blur

₹4.2 L/yr - ₹10 L/yr

Associate Software Engineer
41 salaries
unlock blur

₹2 L/yr - ₹6 L/yr

QA Engineer
24 salaries
unlock blur

₹4.4 L/yr - ₹10 L/yr

Software Developer
15 salaries
unlock blur

₹3.2 L/yr - ₹11.6 L/yr

Senior Software Engineer
10 salaries
unlock blur

₹7 L/yr - ₹18 L/yr

Explore more salaries
Compare Posidex Technologies with

Karvy Financial Services

3.9
Compare

Reliance Money

3.5
Compare

Bss Microfinance

3.6
Compare

Sonata Finance

4.0
Compare
write
Share an Interview