Upload Button Icon Add office photos

Filter interviews by

Antrix Techinfo Interview Questions and Answers for Experienced

Updated 21 May 2024

Antrix Techinfo Interview Experiences for Experienced

Popular Designations

1 interview found

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

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

Round 1 - HR 

(3 Questions)

  • Q1. What is safety And types
  • Ans. 

    Safety refers to measures taken to prevent accidents, injuries, and other potential hazards. Types include workplace safety, road safety, and fire safety.

    • Workplace safety: Ensuring a safe working environment for employees by implementing safety protocols and providing necessary training.

    • Road safety: Promoting safe driving practices, enforcing traffic laws, and maintaining road infrastructure.

    • Fire safety: Preventing fir...

  • Answered by AI
  • Q2. What is hazard & Risks
  • Ans. 

    Hazards are potential sources of harm or adverse health effects, while risks are the likelihood of harm occurring due to exposure to a hazard.

    • Hazards are anything that can cause harm, such as chemicals, electricity, or machinery

    • Risks are the chances of harm occurring, which can be influenced by factors like frequency of exposure and severity of the hazard

    • Identifying hazards and assessing risks is crucial for implementi...

  • Answered by AI
  • Q3. Work permit types
  • Ans. 

    Work permits are legal documents that allow a person to work in a specific job for a specific period of time.

    • Different types include general work permits, specific work permits, temporary work permits, etc.

    • Work permits may be required for foreign workers, minors, or individuals with specific visa statuses.

    • Examples include H-1B visas for skilled workers in the US, student work permits in Canada, etc.

  • Answered by AI

Safety Officer Interview Questions asked at other Companies

Q1. If you don't have any safety equipment and documents how to complete the work ?
View answer (17)

Interview questions from similar companies

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

Interview Questionnaire 

11 Questions

  • Q1. Basic Java concepts like abstraction, JDK 1.8 architecture brief overview.
  • Q2. What is weak reference? garbage collection in case of such references?
  • Ans. 

    Weak reference is a reference that does not prevent the object from being garbage collected.

    • Weak references are used to refer to objects that can be garbage collected if there are no strong references to them.

    • They are typically used in scenarios where you want to hold a reference to an object, but don't want to prevent it from being collected.

    • Weak references are implemented using weak reference queues, which allow you ...

  • Answered by AI
  • Q3. Implementation of singleton pattern and ways of breaking it? singleton pattern implementation in a multithreaded environment?
  • Ans. 

    Singleton pattern ensures a class has only one instance, while allowing global access to it.

    • Implement a private constructor to prevent direct instantiation.

    • Create a static method to provide a single point of access to the instance.

    • Use lazy initialization to create the instance only when needed.

    • Ensure thread safety in a multithreaded environment using synchronization or double-checked locking.

    • Breaking the singleton patt...

  • Answered by AI
  • Q4. Annotations : @Component vs @service, @Controller vs @RESTController, @Configuration, @Transactional
  • Ans. 

    Annotations used in Spring Framework for defining components and services.

    • Annotations like @Component, @Service, and @Controller are used for defining components in Spring Framework.

    • @RestController is used for defining RESTful web services.

    • @Configuration is used for defining configuration classes.

    • @Transactional is used for defining transactional methods.

    • All these annotations help in defining and managing dependencies i

  • Answered by AI
  • Q5. Internal implementation of HashSet? Which scenario will generate same hashcode for a HashMap?
  • Ans. 

    HashSet is implemented using a HashMap internally. Same hashcode is generated when two objects have the same value for hashCode() and equals() methods.

    • HashSet internally uses a HashMap to store its elements.

    • The hashcode of an object is generated using the hashCode() method.

    • If two objects have the same value for hashCode() and equals() methods, they will generate the same hashcode.

    • For example, if two String objects have...

  • Answered by AI
  • Q6. What is SQL Cursor? Index? Aggregate Functions examples?
  • Ans. 

    SQL Cursor is a database object used to manipulate data row by row.

    • Cursor is used to fetch and process data row by row

    • Index is a database object used to speed up data retrieval

    • Aggregate functions are used to perform calculations on a set of values

    • Examples of aggregate functions are SUM, AVG, COUNT, MAX, MIN

  • Answered by AI
  • Q7. Basic Java programming question:- Generate palindrome string inputs for the program are length of the string and number of distinct characters. If n=5 & k=2 output = ababa/zzdzz/rerer. If n=7 & k=3 output=...
  • Ans. 

    Generate palindrome string with given length and distinct characters.

    • Create a char array of length n and fill it with distinct characters.

    • Loop through the array and add the characters in reverse order to create a palindrome.

    • Repeat the process until the required number of palindromes are generated.

    • If k is less than the length of the palindrome, use the first k distinct characters.

  • Answered by AI
  • Q8. Given an array with length n , find highest value which occurs same number of times within the array. [3,8,3,2,1,3,2] 3 occurs 3 times output=3. [4,6,7,6,7,5,4,2,4,9,4,1,9] 4 occurs 3 times output=4
  • Ans. 

    Find the highest value that occurs the same number of times within an array.

    • Iterate through the array and count the occurrences of each value.

    • Store the counts in a dictionary or hash map.

    • Find the maximum count and check which value(s) have that count.

    • Return the highest value among those with the maximum count.

  • Answered by AI
  • Q9. Find number of occurrences of a character in string. Provide multiple approaches for the solution and choose the best why? For "string aabcadd output=a3b1c1d2
  • Ans. 

    Count occurrences of a character in a string and output in a specific format.

    • Use a hash table to store the count of each character.

    • Loop through the string and update the count in the hash table.

    • Create the output string using the hash table.

  • Answered by AI
  • Q10. Convert String from Camel case to Snake case
  • Ans. 

    Converts a string from Camel case to Snake case.

    • Loop through the string and check for uppercase letters

    • Insert an underscore before each uppercase letter

    • Convert the string to lowercase

  • Answered by AI
  • Q11. Given a class @Data class Account{String name; String acctBalance;}. Write logic to get Map using Stream API which shows the balance of each person i,e, key will be the name of the account holder and valu...
  • Ans. 

    Logic to get Map using Stream API to show balance of each person

    • Use Stream API to group accounts by name

    • Use map() to get the sum of balances for each group

    • Collect the results into a Map

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Marvelous interview experience. Although it was 7 rounds of process, each interviewer was best at his/her way.
Initial 2 rounds of interview will bring blood out of your veins , later rounds will bring a little pumping.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Mar 2019. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Tell me about yourself Current CTC , Expected CTC Notice period Negotiations if any
  • Q2. Technical related to the skills you have and the position you applied for.
  • Q3. Scenario based technical questions
  • Q4. This round will be easy one if you clear the previous round

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with your resume and go through the JD for better understanding of the role.
Ask about the project and tools on which you are going to work.
Ask as much questions as possible to understand what is expected from the position.
All the Best!

Interview Questionnaire 

13 Questions

  • Q1. 1. Go through your cv
  • Q2. 2. Share articleship exposure & have you got exposure specially banking audit assignments
  • Q3. 3. What's your favourite subject in CA Final
  • Q4. 4. What you know about company
  • Q5. 5. Why are you interested in audit
  • Q6. 6. Tell about your family
  • Q7. 7. Why are you not going for practice
  • Q8. 8. What's your future plans
  • Q9. 9. What's your last job roles and responsibilities
  • Q10. 10. Why you joined MBA
  • Q11. 11. How many attempts you take to became CA in CPT, Inter and Final
  • Q12. 12. What's your level of excel knowledge
  • Q13. 14. Have you any questions?

I applied via Naukri.com and was interviewed in Sep 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Regarding my job nature, process,experience and salary expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was nice, I am able understand what the recruiter is looking for and accordingly I shared my process knowledge.

I applied via Recruitment Consultant and was interviewed in Jun 2021. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I was asked several questions in regards to the position offered - such as the technicalities of advertising on social media, different between copywriting and content writing, designing a campaign from th...

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you are well aware with the on-goings of the field that you are applying in for. Several technical aspects of your field should be your concern, since the company is totally based on study and researching market.

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

Interview Questionnaire 

1 Question

  • Q1. From basic to advance we have to prepare. Basic of javascript and javascript version. And deep dive in angular concept wise nad architecture we have to know.

Interview Preparation Tips

Interview preparation tips for other job seekers - In Technical as usual we have to perfect but in management round mostly they asked logical question like puzzle. And we have to give correct answer. If everything is given correct answer but in logical not then selection will not ve happened.

Research Analyst Interview Questions & Answers

FactSet user image phani bhiravabhotla

posted on 27 Jan 2021

Interview Questionnaire 

4 Questions

  • Q1. What is IPO
  • Ans. 

    IPO stands for Initial Public Offering. It is the process by which a private company becomes a publicly-traded company by offering its shares to the public.

    • IPO is a way for companies to raise capital by selling shares to the public.

    • It allows private companies to become publicly traded on stock exchanges.

    • During an IPO, shares are offered to institutional investors and individual investors.

    • The company's valuation and sha...

  • Answered by AI
  • Q2. Different types of Bonds
  • Ans. 

    Bonds are debt securities that are issued by companies, governments, and other organizations to raise capital.

    • Government bonds: Issued by governments to finance their operations

    • Corporate bonds: Issued by companies to finance their operations

    • Municipal bonds: Issued by local governments to finance public projects

    • Treasury bonds: Issued by the US government to finance its operations

    • Junk bonds: High-risk, high-yield bonds i

  • Answered by AI
  • Q3. Explain about capital markets
  • Ans. 

    Capital markets are where financial instruments such as stocks, bonds, and commodities are traded between investors and institutions.

    • Capital markets are a platform for companies to raise capital by issuing stocks and bonds.

    • Investors can buy and sell financial instruments in the capital markets.

    • The capital markets are divided into primary and secondary markets.

    • Examples of capital markets include the New York Stock Excha...

  • Answered by AI
  • Q4. What are short term liabilities
  • Ans. 

    Short term liabilities are debts or obligations that are due within a year or less.

    • Short term loans

    • Accounts payable

    • Accrued expenses

    • Current portion of long-term debt

    • Unearned revenue

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic Accounting& Finance topics
Mostly, there are going to test your communication skills

I applied via Naukri.com and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. 1. About Myself 2. Why Morningstar 3. About Internship 4. Questions on ratios 5. Relationship between Three financial statements 6. Diluted and basic eps 7. Types of activities in cash flow. 8. Enterprise ...
  • Q2. HR basic questions and certain guestimates
  • Q3. What did you understand from the job profile?

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Be prepared with basic information related to fundamental analysis i.e three statements , ratios , etc.
2. Stay calm and answer appropriately
3. Communication should be good.

I applied via Naukri.com and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

15 Questions

  • Q1. Oops concept.
  • Q2. Decision making (if statement)
  • Q3. Loops
  • Q4. Use of log files
  • Ans. 

    Log files are used to record events and actions in a system or application.

    • Log files can be used for debugging and troubleshooting.

    • They can also be used for auditing and compliance purposes.

    • Log files can help identify security breaches or unauthorized access.

    • They can be used to monitor system performance and identify bottlenecks.

    • Log files can be analyzed to gain insights into user behavior and usage patterns.

  • Answered by AI
  • Q5. Debugging in a program/ project
  • Ans. 

    Debugging is the process of identifying and fixing errors in a program or project.

    • Debugging involves analyzing code and identifying errors

    • Tools like debuggers and logging can aid in the process

    • Common errors include syntax errors, logic errors, and runtime errors

    • Debugging should be done systematically and thoroughly

    • Testing and retesting is important to ensure all errors are fixed

  • Answered by AI
  • Q6. Static variable or static function
  • Q7. Data type
  • Q8. Try catch and finally
  • Q9. Final variable
  • Q10. Inheritance
  • Q11. Package and interface
  • Q12. Accessibly of variable or function
  • Ans. 

    Accessibility of variable or function

    • Variables and functions should be accessible to the parts of the code that need them

    • Accessibility can be controlled using access modifiers like public, private, and protected

    • Accessibility can also be affected by the scope of the variable or function

  • Answered by AI
  • Q13. Sql DDL, DML Statement
  • Q14. Sql join (all types of join)
  • Q15. Sql case sensitive statement

Interview Preparation Tips

Interview preparation tips for other job seekers - Read the basics. Be confident of your answer. Keep practising the logics for small programs

Skills evaluated in this interview

Antrix Techinfo Interview FAQs

How many rounds are there in Antrix Techinfo interview for experienced candidates?
Antrix Techinfo interview process for experienced candidates usually has 1 rounds. The most common rounds in the Antrix Techinfo interview process for experienced candidates are HR.
How to prepare for Antrix Techinfo 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 Antrix Techinfo. The most common topics and skills that interviewers at Antrix Techinfo expect are Analytical Chemistry, CCTV Monitoring, CVS, Microsoft Power BI and Product Engineering.
What are the top questions asked in Antrix Techinfo interview for experienced candidates?

Some of the top questions asked at the Antrix Techinfo interview for experienced candidates -

  1. What is safety And ty...read more
  2. What is hazard & Ri...read more
  3. Work permit ty...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Antrix Techinfo interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.9
 • 551 Interviews
Bajaj Finserv Interview Questions
4.0
 • 489 Interviews
HSBC Group Interview Questions
4.0
 • 484 Interviews
Xyz Company Interview Questions
3.8
 • 440 Interviews
American Express Interview Questions
4.2
 • 353 Interviews
UBS Interview Questions
4.0
 • 333 Interviews
BNY Interview Questions
4.0
 • 325 Interviews
Morgan Stanley Interview Questions
3.7
 • 298 Interviews
Citicorp Interview Questions
3.7
 • 276 Interviews
View all

Antrix Techinfo Reviews and Ratings

based on 8 reviews

4.4/5

Rating in categories

3.7

Skill development

4.7

Work-Life balance

4.0

Salary & Benefits

3.7

Job Security

3.4

Company culture

2.9

Promotions/Appraisal

3.7

Work Satisfaction

Explore 8 Reviews and Ratings
Software Engineer
11 salaries
unlock blur

₹4.5 L/yr - ₹9 L/yr

Softwaretest Engineer
11 salaries
unlock blur

₹3.5 L/yr - ₹10 L/yr

Operations Engineer
8 salaries
unlock blur

₹7 L/yr - ₹15.7 L/yr

Senior Software Engineer
7 salaries
unlock blur

₹6.6 L/yr - ₹26 L/yr

Test Engineer
6 salaries
unlock blur

₹6 L/yr - ₹9.7 L/yr

Explore more salaries
Compare Antrix Techinfo with

Bajaj Finserv

4.0
Compare

Wells Fargo

3.9
Compare

JPMorgan Chase & Co.

4.1
Compare

HSBC Group

4.0
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