Upload Button Icon Add office photos

Filter interviews by

BT Convergence Technolgies AV Engineer Interview Questions and Answers

Updated 23 Aug 2023

BT Convergence Technolgies AV Engineer Interview Experiences

1 interview found

AV Engineer Interview Questions & Answers

user image Sagarshanagonda

posted on 23 Aug 2023

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

I applied via Referral and was interviewed in Jul 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 - HR 

(1 Question)

  • Q1. Biodata and job related.
Round 3 - Technical 

(1 Question)

  • Q1. What knowledge do you have on equipment and.
  • Ans. 

    I have extensive knowledge on various audiovisual equipment and their functionalities.

    • Proficient in setting up and operating audiovisual systems such as projectors, microphones, speakers, and video conferencing equipment

    • Familiar with troubleshooting common issues with audiovisual equipment

    • Knowledge of different types of cables, connectors, and adapters used in audiovisual setups

    • Experience in integrating audiovisual sys...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be Genuine and work atleast for 2 years to get best.

Interview questions from similar companies

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

Island Perimeter and Number of Provinces. Basic Leetcode question

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

I applied via Referral and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

They give a standard application to develop in mvvm or clean architecture, don't forget to write unit tests

Round 2 - One-on-one 

(5 Questions)

  • Q1. Mostly discuss on the implementation of the project you've done in round one
  • Q2. Flutter is addon
  • Ans. 

    Flutter is a UI toolkit for building natively compiled applications for mobile, web, and desktop from a single codebase.

    • Flutter is an open-source framework developed by Google.

    • It uses the Dart programming language.

    • Flutter allows for hot reload, which enables developers to see changes instantly.

    • It provides a rich set of pre-built widgets for building user interfaces.

    • Flutter can be used to create apps for iOS, Android, w

  • Answered by AI
  • Q3. Explain about compose way of thinking.
  • Ans. 

    Compose way of thinking involves breaking down complex problems into smaller, manageable parts and then combining them to create a solution.

    • Break down a problem into smaller components

    • Solve each component individually

    • Combine the solutions to create a complete solution

    • Example: Using functions to break down a complex task into smaller functions and then combining them to achieve the desired outcome

  • Answered by AI
  • Q4. Difference between presenter and viewmodel
  • Q5. Explain about lifecycle of view
  • Ans. 

    Lifecycle of view refers to the stages a view goes through from creation to destruction in an application.

    • Creation: View is initialized and loaded into memory.

    • Layout: View is positioned and sized on the screen.

    • Display: View is rendered and displayed to the user.

    • Interaction: User interacts with the view through input events.

    • Destruction: View is removed from memory when no longer needed.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience, and practical questions and friendly talk.

Skills evaluated in this interview

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 - Technical 

(1 Question)

  • Q1. Basics of your technical skills
Round 3 - Technical 

(1 Question)

  • Q1. More Projects related questions

I applied via Naukri.com and was interviewed in Jul 2022. There was 1 interview round.

Round 1 - Technical 

(7 Questions)

  • Q1. What are indexes in the database? what is the difference between clustered and non-clustered indexes?
  • Ans. 

    Indexes are used to improve database performance. Clustered indexes determine the physical order of data, while non-clustered indexes do not.

    • Indexes are used to speed up data retrieval operations in a database.

    • Clustered indexes determine the physical order of data in a table, while non-clustered indexes do not.

    • A table can have only one clustered index, but multiple non-clustered indexes.

    • Clustered indexes are generally ...

  • Answered by AI
  • Q2. Write a query to delete duplicate rows from a table.
  • Ans. 

    Query to delete duplicate rows from a table

    • Use GROUP BY clause to group the rows by their unique values

    • Use HAVING clause to filter out the groups with count greater than 1

    • Use DELETE statement to delete the duplicate rows

  • Answered by AI
  • Q3. Class A { public string A() { return "hello"; } } what is wrong with above code?
  • Q4. What is a singleton pattern and how to implement it?
  • Ans. 

    Singleton pattern restricts the instantiation of a class to a single instance and provides a global point of access to it.

    • Create a private constructor to restrict instantiation of the class

    • Create a private static instance of the class

    • Create a public static method to access the instance

    • Ensure thread safety if necessary

    • Examples: Database connection, Logger, Configuration settings

  • Answered by AI
  • Q5. How do you handle exceptions in stored procedures?
  • Ans. 

    Handle exceptions in stored procedures by using TRY-CATCH blocks.

    • Use TRY-CATCH blocks to catch and handle exceptions

    • Log the error message and severity level

    • Rollback the transaction if necessary

    • Rethrow the error if it cannot be handled

    • Use RAISERROR to raise custom error messages

  • Answered by AI
  • Q6. Explain SOLID principles.
  • Ans. 

    SOLID principles are a set of five design principles that help in creating maintainable and scalable software.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open-Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Subtypes should be substitutable for their base types.

    • I - Interface Segregation Principle: C...

  • Answered by AI
  • Q7. Difference between throw and throw exception?
  • Ans. 

    throw is used to throw an exception while throw exception is used to throw a specific exception.

    • throw is used to throw any type of exception while throw exception is used to throw a specific type of exception.

    • throw exception is followed by the type of exception that needs to be thrown.

    • throw can be used to throw any object while throw exception can only be used to throw an exception object.

    • Example: throw new Exception("

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You need to give quite a few interviews to be prepared.

Skills evaluated in this interview

I applied via Job Portal and was interviewed in Jun 2021. There were 5 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. Oops concepts, explain with real time example
  • Ans. 

    Oops concepts are fundamental to object-oriented programming. They help in creating modular and reusable code.

    • Encapsulation - hiding implementation details of an object from the outside world

    • Inheritance - creating new classes from existing ones, inheriting their properties and methods

    • Polymorphism - ability of objects to take on many forms, depending on the context

    • Abstraction - focusing on essential features of an objec

  • Answered by AI
  • Q2. Why is multiple inheritance not allowed in java
  • Ans. 

    Multiple inheritance is not allowed in Java to avoid the diamond problem.

    • Java supports multiple interface inheritance to achieve the same functionality.

    • Diamond problem occurs when a class inherits from two classes with a common method.

    • Java prioritizes single inheritance to maintain simplicity and avoid ambiguity.

  • Answered by AI
  • Q3. Difference between arrays and arraylist
  • Ans. 

    Arrays are fixed in size while ArrayLists can dynamically grow and shrink.

    • Arrays are of fixed size while ArrayLists can be resized dynamically.

    • Arrays can hold primitive data types and objects while ArrayLists can only hold objects.

    • Arrays are faster for accessing elements while ArrayLists are faster for adding and removing elements.

    • Arrays use square brackets [] to declare while ArrayLists use angle brackets <>.

    • Example: ...

  • Answered by AI
  • Q4. What are java collections
  • Ans. 

    Java collections are classes and interfaces that provide a way to store and manipulate groups of objects.

    • Java collections include List, Set, Map, Queue, and their respective implementations

    • They provide methods for adding, removing, and accessing elements

    • Examples include ArrayList, HashSet, TreeMap, and PriorityQueue

  • Answered by AI
  • Q5. What is time theta
  • Ans. 

    Time theta is a measure of the worst-case time complexity of an algorithm.

    • It is used to analyze the performance of algorithms.

    • It represents the maximum amount of time an algorithm takes to complete.

    • It is denoted by the symbol Θ(n).

  • Answered by AI
  • Q6. Explain bubble sorting
  • Ans. 

    Bubble sorting is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Bubble sort is a comparison-based algorithm

    • It works by comparing each pair of adjacent elements and swapping them if they are in the wrong order

    • The algorithm repeats this process until no more swaps are needed

    • It has a worst-case and average-case complexity of O(n^...

  • Answered by AI
  • Q7. We need to generate a random number between 15-25, write a code for the following
  • Ans. 

    Code to generate a random number between 15-25

    • Use Math.random() to generate a random number between 0-1

    • Multiply the result with the range (25-15) and add the minimum value (15)

    • Use Math.floor() to round down the result to an integer

  • Answered by AI
  • Q8. Question on JSON format

Interview Preparation Tips

Interview preparation tips for other job seekers - Please make sure you have a very good knowledge of any one programming language and DS

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. What is the difference between NACL and security groups?
  • Ans. 

    NACL and security groups are both AWS network security features, but NACL operates at the subnet level while security groups operate at the instance level.

    • NACL is stateless while security groups are stateful

    • NACL can allow or deny traffic based on IP addresses, protocols, and ports while security groups only allow traffic

    • NACL rules are evaluated in order while security group rules are evaluated independently

    • NACL can be ...

  • Answered by AI
  • Q2. How you identify public/private subnets?
  • Ans. 

    Public and private subnets can be identified based on their IP address range and their accessibility from the internet.

    • Public subnets have IP addresses that are accessible from the internet.

    • Private subnets have IP addresses that are not accessible from the internet.

    • Public subnets are typically used for resources that need to be accessed from the internet, such as web servers.

    • Private subnets are typically used for resou...

  • Answered by AI
  • Q3. What is the difference between s3 and Glacier?
  • Ans. 

    S3 is for frequently accessed data while Glacier is for long-term archival storage.

    • S3 is designed for frequently accessed data while Glacier is for long-term archival storage.

    • S3 has low latency retrieval times while Glacier has higher retrieval times.

    • S3 is more expensive than Glacier for storage and retrieval.

    • Glacier has a tiered pricing model based on retrieval times and storage duration.

    • S3 is suitable for storing dat...

  • Answered by AI
  • Q4. What is the difference between AMI and s3?
  • Ans. 

    AMI is a virtual machine while S3 is a storage service in AWS.

    • AMI stands for Amazon Machine Image and is a pre-configured virtual machine that can be used to create EC2 instances.

    • S3 stands for Simple Storage Service and is a scalable object storage service that can be used to store and retrieve data.

    • AMI is used to create EC2 instances while S3 is used to store and retrieve data.

    • AMI is used for computing while S3 is use...

  • Answered by AI
  • Q5. What is the parameter of creating group policy using json
  • Ans. 

    The parameter for creating group policy using JSON is a JSON object containing the policy settings.

    • The JSON object should include the policy name, description, and settings.

    • The settings can include values for registry keys, security options, and other policy settings.

    • Example: {"policyName": "Password Policy", "description": "Enforces password complexity requirements", "settings": {"MinimumPasswordLength": 8, "PasswordC

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well from what you mentioned in your resume. they will fully scan your resume to check your knowledge and easily can identify from your answers.

Skills evaluated in this interview

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

  • Q1. 

    Sum Between Zeroes Problem Statement

    Given a singly linked list containing a series of integers separated by the integer '0', modify the list by merging nodes between two '0's into a single node. This mer...

  • Ans. Two Pointer Approach

    Let us initialize two pointers, newHead and newTail, with NULL (These will be the head and tail of the final list). Now traverse the given list. Ignore the first zero. Now, as you encounter non-zero nodes, add their values in a variable called ‘sum’. As soon as you encounter a node with data 0, change that node's value to ‘sum’, and

    1. If newHead is NULL, this node becomes the new head and tail of the l...
  • Answered Anonymously
  • Q2. 

    Minimum Cost to Buy Oranges Problem Statement

    You are given a bag of capacity 'W' kg and a list 'cost' of costs for packets of oranges with different weights. Each element at the i-th position in the list...

  • Ans. Recursive Approach

    Write a recursive function minCostToBuyOrangesHelper(idx, requiredWeight, n) to return the Minimum cost to buy exactly requiredWeight Kg oranges with (idx+1) Kg to N kg packets.

    1. Our minimum cost for weight W will be : minCostToBuyOrangesHelper(idx, W, n)
    2. Now at any instant (idx, requiredWeight, n), we have two options:
      1. The option of taking this packet:
    cost[idx] + minCostToBuyOrangesHelper(idx, requiredWe...
  • Answered Anonymously
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

  • Q1. 

    Connecting Ropes with Minimum Cost

    You are given 'N' ropes, each of varying lengths. The task is to connect all ropes into one single rope. The cost of connecting two ropes is the sum of their lengths. Yo...

  • Ans. Brute Force Approach

    Clearly, the rope which is picked up first will be having its length included more than once in the final cost. If we pick a rope of larger length earlier, then we will be adding some extra cost to our final result.
    So, the idea is to pick ropes of smaller lengths initially to minimize the impact on our final cost.

    So, each time we will be finding two smallest ropes, connecting them and

    adding the resu...

  • Answered Anonymously
  • Q2. What are the ACID properties in DBMS?

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Vaish Technical Institute. Eligibility criteriaNo Backlog and above 6 CGPAAmazon interview preparation:Topics to prepare for the interview - Algorithms, C++, aptitude and reasoning, projects details, operating system, Java, DBMS, Object Oriented Programming language, Data Structure and computer networksTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : The most important thing is to prepare Data Structures and Algorithms. Ensure to be very much clear on your basics and skills.
Tip 2 : Revise the OOPS concepts thoroughly.
Tip 3 : Practice minimum 200 DSA questions. Practice aptitude and reasoning questions regularly.

Application resume tips for other job seekers

Tip 1 : Mention only those skills, projects and achievements in which you have complete and thorough knowledge. 
Tip 2 : Do not add more than 2 - 3 projects and that too in which you have proper knowledge and understanding.
Tip 3 : Resume should be of 1 page only. Keep your resume very crisp and brief.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Nov 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Why are you looking for the job change?
  • Q2. Relevant technical questions, as per my current technology

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep it simple and be yourself. That's what the interviewers looked into. Also a thorough understanding of the technology is a must and that is what will help you in cracking the interview. You don't have to go in-depth, just the overview and what happens when is what they look for. Good communication skills is also an added incentive, something I always try to work on. All the best

Interview Questionnaire 

1 Question

  • Q1. [07/04, 1:22 PM] kamalrAj: Un akka metar video venuma da [07/04, 1:29 PM] kamalrAj: Un akkava poyi kelu daaaa..... [07/04, 1:31 PM] kamalrAj: Un nilamai ninaicha vadivel mosama Irukumula

BT Convergence Technolgies Interview FAQs

How many rounds are there in BT Convergence Technolgies AV Engineer interview?
BT Convergence Technolgies interview process usually has 3 rounds. The most common rounds in the BT Convergence Technolgies interview process are Resume Shortlist, HR and Technical.
What are the top questions asked in BT Convergence Technolgies AV Engineer interview?

Some of the top questions asked at the BT Convergence Technolgies AV Engineer interview -

  1. What knowledge do you have on equipment a...read more
  2. Biodata and job relat...read more

Tell us how to improve this page.

BT Convergence Technolgies AV Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.9
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
View all
BT Convergence Technolgies AV Engineer Salary
based on 12 salaries
₹2.6 L/yr - ₹5 L/yr
At par with the average AV Engineer Salary in India
View more details

BT Convergence Technolgies AV Engineer Reviews and Ratings

based on 5 reviews

4.7/5

Rating in categories

4.5

Skill development

4.6

Work-life balance

4.7

Salary

4.7

Job security

4.9

Company culture

4.5

Promotions

4.9

Work satisfaction

Explore 5 Reviews and Ratings
AV Engineer
12 salaries
unlock blur

₹2.6 L/yr - ₹5 L/yr

AV Support Engineer
4 salaries
unlock blur

₹3 L/yr - ₹11.1 L/yr

Explore more salaries
Compare BT Convergence Technolgies with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

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