Upload Button Icon Add office photos

Filter interviews by

Antrix Techinfo Safety Officer Interview Questions and Answers

Updated 21 May 2024

Antrix Techinfo Safety Officer Interview Experiences

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

Interview questions from similar companies

I appeared for an interview in Sep 2020.

Interview Questionnaire 

1 Question

  • Q1. Technical java questions both basic and advanced

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview for Java developer. Be strong in all basic oops and java concepts. Practical q&a on the basic concepts were asked.
Collections, Java 8 features, Exception handling, etc should be known.
Practical questions like what will you do when you see error in production application, how to store lakhs of data in Db, what will you do if you for out of memory exception in server,etc

Interview Questionnaire 

2 Questions

  • Q1. What is NAV?
  • Ans. 

    NAV stands for Net Asset Value.

    • NAV is a financial term used to describe the value of an investment fund's assets minus its liabilities.

    • It is calculated by dividing the total value of the fund's assets by the number of outstanding shares.

    • NAV is used to determine the price at which shares in the fund are bought and sold.

    • It is also used to calculate the performance of the fund over time.

    • For example, if a mutual fund has a...

  • Answered by AI
  • Q2. Why do you wish to switch?

I applied via Company Website and was interviewed before Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

11 Questions

  • Q1. 1. Tell me something about your self.
  • Q2. 2. How to replace male with female in Oracle
  • Ans. 

    To replace male with female in Oracle, use the UPDATE statement with the SET clause.

    • Use the UPDATE statement with the SET clause to replace male with female in Oracle

    • Example: UPDATE employees SET gender='female' WHERE gender='male'

    • Make sure to specify the table name and column name correctly

    • Use WHERE clause to specify the condition for replacement

  • Answered by AI
  • Q3. 3.write to query to display 3rd highest salary
  • Ans. 

    Query to display 3rd highest salary

    • Use the ORDER BY clause to sort the salaries in descending order

    • Use the LIMIT clause to limit the result to the third row

    • Use a subquery to exclude the top two salaries

  • Answered by AI
  • Q4. 4.what is difference between delete and truncate
  • Ans. 

    Delete removes specific rows while truncate removes all rows from a table.

    • Delete is a DML command while truncate is a DDL command.

    • Delete is slower than truncate as it logs each row deletion while truncate does not.

    • Delete can be rolled back while truncate cannot be rolled back.

    • Delete can have a WHERE clause to specify which rows to delete while truncate removes all rows.

    • Delete does not reset the identity of the table wh

  • Answered by AI
  • Q5. 5.what is cursor and explain type of cursor
  • Ans. 

    A cursor is a database object used to manipulate data in a result set.

    • A cursor is used to traverse through a result set one row at a time.

    • There are two types of cursors: static and dynamic.

    • Static cursors are read-only and scroll forward only.

    • Dynamic cursors are updatable and can scroll in any direction.

    • Cursors can be used in stored procedures, triggers, and functions.

  • Answered by AI
  • Q6. 6. What is difference between procedure and function
  • Ans. 

    Procedure is a set of instructions that performs a specific task, while function returns a value after performing a task.

    • Procedure does not return a value, while function does.

    • Functions can be called from within expressions, while procedures cannot.

    • Functions can have parameters passed to them, while procedures can have both parameters and arguments.

    • Examples of procedures include printing to the console, while examples ...

  • Answered by AI
  • Q7. 7.write command to display secod last line of file
  • Ans. 

    Display second last line of a file using command line.

    • Use the tail command with -n option to display last two lines of the file.

    • Then use head command with -n option to display the second last line.

    • Example: tail -n 2 file.txt | head -n 1

  • Answered by AI
  • Q8. 8. Write command to replace Sam with vam on 5th line
  • Ans. 

    Command to replace Sam with vam on 5th line

    • sed '5s/Sam/vam/' filename.txt

    • awk 'NR==5 {sub(/Sam/, "vam")} 1' filename.txt

  • Answered by AI
  • Q9. 9. Write command to display blank line in file
  • Ans. 

    Command to display blank line in file

    • Use echo command with empty quotes to create a blank line in a file

    • Syntax: echo '' >> filename

    • Alternatively, use printf command with newline character

    • Syntax: printf ' ' >> filename

  • Answered by AI
  • Q10. 10. What is difference between soft link and hard link
  • Ans. 

    Soft links are pointers to the original file while hard links are additional names for the same file.

    • Soft links are created using the 'ln -s' command while hard links are created using the 'ln' command.

    • Soft links can point to files on different file systems while hard links cannot.

    • Deleting the original file will render a soft link useless while a hard link will still work.

    • Soft links have different inode numbers while h...

  • Answered by AI
  • Q11. 11. write command to display biggest file on server
  • Ans. 

    Use the 'du' command to display biggest file on server.

    • Open terminal or SSH into server

    • Navigate to directory to search from

    • Run 'du -a . | sort -n -r | head -n 1' command

    • The output will display the biggest file on the server

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident during interview no matter weather you know answer or not.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What are sql joins
  • Ans. 

    SQL joins are used to combine rows from two or more tables based on a related column between them.

    • SQL joins are used to retrieve data from multiple tables based on a related column between them

    • Common types of SQL joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • INNER JOIN returns rows when there is at least one match in both tables

    • LEFT JOIN returns all rows from the left table and the matched rows from the...

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Aptitude related questions on cubes

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

String concepts ques

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Excellent 

(1 Question)

  • Q1. May be one customer is missing then how collect you emi
  • Ans. 

    In case a customer is missing, we would follow up with reminders and notifications to collect the EMI.

    • Send reminder emails or messages to the customer

    • Contact the customer via phone to remind about the pending EMI

    • Offer alternative payment methods or rescheduling options

    • Consider legal actions as a last resort if necessary

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Excellent

Officer Interview Questions & Answers

Citicorp user image Bhagyoday Apartment

posted on 3 Jul 2022

Round 1 - Technical 

(1 Question)

  • Q1. Sql SSIS and SSRS interview questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Pls don't join this company.
There's no KT has been provided and work gets started from day 1.

I applied via Recruitment Consulltant and was interviewed before Nov 2021. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Angular - Observable related, Java - web services User scenario based
Round 3 - One-on-one 

(1 Question)

  • Q1. Overall subject-oriented on Web services
Round 4 - HR 

(1 Question)

  • Q1. Basics on past company experiences

Interview Preparation Tips

Interview preparation tips for other job seekers - Good Interview experience, HR was kind and supportive throughout.

I applied via Naukri.com and was interviewed in Apr 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. INTRODUCTION,EXPERIENCE WHICH JUSTIFIES YOUR QUALITY, WHY WE SHOULD HIRE YOU? LONG AND SHORT TERM GOALS, WHAT QUALITIES IS DIFFERENT FROM OTHERS?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be truthful honest and confident demand for good salary...potray all your quality and communication skills.

Antrix Techinfo Interview FAQs

How many rounds are there in Antrix Techinfo Safety Officer interview?
Antrix Techinfo interview process usually has 1 rounds. The most common rounds in the Antrix Techinfo interview process are HR.
What are the top questions asked in Antrix Techinfo Safety Officer interview?

Some of the top questions asked at the Antrix Techinfo Safety Officer interview -

  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.

Antrix Techinfo Safety Officer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.8
 • 580 Interviews
Citicorp Interview Questions
3.7
 • 573 Interviews
Bajaj Finserv Interview Questions
4.0
 • 538 Interviews
HSBC Group Interview Questions
3.9
 • 489 Interviews
Xyz Company Interview Questions
3.8
 • 464 Interviews
American Express Interview Questions
4.1
 • 366 Interviews
BNY Interview Questions
3.8
 • 351 Interviews
UBS Interview Questions
3.9
 • 339 Interviews
Morgan Stanley Interview Questions
3.6
 • 293 Interviews
View all

Antrix Techinfo Safety Officer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
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.8
Compare

JPMorgan Chase & Co.

3.9
Compare

HSBC Group

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