Upload Button Icon Add office photos

Filter interviews by

BT Group Ssrs Developer Interview Questions and Answers

Updated 2 Nov 2023

BT Group Ssrs Developer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is VPc in nexus device
  • Ans. 

    VPC in Nexus device stands for Virtual Port Channel, which allows multiple physical links to be combined into a single logical link for increased bandwidth and redundancy.

    • VPC allows for active-active links between switches, improving network resiliency

    • It is commonly used in data centers to create a loop-free topology

    • VPC is a feature of Cisco Nexus switches

  • Answered by AI
  • Q2. What is VDC in Nexus device
  • Ans. 

    VDC stands for Virtual Device Context in Nexus device, allowing multiple virtual switches within a single physical switch.

    • VDC allows for logical separation of resources within a single physical switch

    • Each VDC has its own set of resources and configuration, operating independently

    • VDC helps in achieving better resource utilization and network segmentation

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. We need to just give the idea to implement the logic using hashmap alson write LRU cache for 5 keys and value pair service class ,test class and contorller class Implementation approach is using Hashmap...
  • Q2. Angular question optimize the angular function

Interview Preparation Tips

Interview preparation tips for other job seekers - The selection board is from America It is very difficult to understand their accent
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Coding Test 

Trapping rain water and median of two sorted array

Round 2 - Technical 

(2 Questions)

  • Q1. Oops and dbms questions?
  • Q2. Code question in Array and string?
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Feb 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic oops concepts and features of latest java version and small programs using streams API
  • Q2. Exception handling and Springboot basic questions.
Round 2 - Technical 

(2 Questions)

  • Q1. It’s managerial round, working environment related questions
  • Q2. How was your current work culture and flow
Round 3 - HR 

(1 Question)

  • Q1. General questions
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. They grind u in javascript,typescript
  • Q2. Html css, angular
  • Q3. Deep preparation needed

Interview Preparation Tips

Interview preparation tips for other job seekers - Not an easy interview
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was an online assessment containing 3 DSA questions

Round 2 - Technical 

(2 Questions)

  • Q1. Medium level array questions
  • Q2. Medium level DP questions
Round 3 - HR 

(1 Question)

  • Q1. General behavioural question about
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Can we call future method from batch class
  • Ans. 

    Yes, future methods can be called from a batch class in Salesforce.

    • Future methods can be called from batch classes to perform asynchronous processing.

    • This can be useful for offloading long-running tasks to future methods to avoid hitting governor limits.

    • Example: Calling a future method from a batch class to update records in Salesforce asynchronously.

  • Answered by AI
  • Q2. What's the use of @track decorator. Is it mandatory to explicitly use it? If yes, for which use case?
  • Ans. 

    The @track decorator in Salesforce is used to track changes to a property in a Lightning web component.

    • Used to make a property reactive and trigger re-renders when its value changes

    • Not mandatory but recommended for properties that need to be reactive

    • Use @track when you want changes to a property to be reflected in the UI

  • Answered by AI
  • Q3. When does APEX CPU Limit Exceeded error happens. What's the best practice to avoid getting this error?
  • Ans. 

    APEX CPU Limit Exceeded error happens when code consumes too much CPU time. Best practices include optimizing code, reducing loops, and using asynchronous processing.

    • Avoid using nested loops and optimize code for better performance

    • Use asynchronous processing like @future or Queueable to offload CPU intensive tasks

    • Limit the use of SOQL queries inside loops to reduce CPU consumption

  • Answered by AI
  • Q4. When does Mixed DML Exception occurs?
  • Ans. 

    Mixed DML Exception occurs when DML operations are performed on setup and non-setup objects in a single transaction.

    • Occurs when DML operations are performed on both setup and non-setup objects in a single transaction

    • Setup objects include User, Profile, PermissionSet, etc.

    • Non-setup objects include custom objects, standard objects like Account, Contact, etc.

  • Answered by AI
  • Q5. Debug the following code: var a=10; function abc() { console.log(a); var a=2; } abc();
  • Ans. 

    The code will output 'undefined' because variable 'a' is hoisted within the function.

    • Variable 'a' is hoisted to the top of the function scope, so when 'console.log(a)' is called, 'a' is undefined.

    • To fix this, move the declaration of 'var a=2;' above the 'console.log(a);' statement.

  • Answered by AI
  • Q6. Write a SOQL query to fetch the values of description field from the Account. Why does "the description field cannot be filtered in the query call"?
  • Ans. 

    SOQL query to fetch description field from Account and reason for inability to filter

    • SOQL query: SELECT Description FROM Account

    • Description field is not filterable because it is a long text field

    • Long text fields cannot be filtered in SOQL queries

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

DP graphs strings it was good

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse a linkded list
  • Ans. 

    Reverse a linked list by changing the direction of pointers

    • Start with three pointers: current, previous, and next

    • Iterate through the list, updating pointers to reverse the direction

    • Return the new head of the reversed list

  • Answered by AI
  • Q2. Print fibonacci series
  • Ans. 

    The Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • Start with two variables initialized to 0 and 1

    • Loop through desired number of iterations, adding the previous two numbers to get the next number

    • Print or store each number in the series

  • Answered by AI

Skills evaluated in this interview

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

I was interviewed in Jul 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. What measures can be taken to ensure API security in .NET?
  • Ans. 

    Use authentication, authorization, encryption, input validation, and monitoring to ensure API security in .NET.

    • Implement authentication mechanisms like OAuth or JWT to verify the identity of clients accessing the API.

    • Use authorization to control access to different parts of the API based on user roles and permissions.

    • Encrypt sensitive data transmitted over the API using protocols like HTTPS.

    • Validate and sanitize input ...

  • Answered by AI
  • Q2. What considerations should be made in the design discussion of a client-server application to effectively manage millions of responses?
  • Ans. 

    Considerations for managing millions of responses in a client-server application

    • Implement efficient data storage and retrieval mechanisms, such as using a distributed database or caching

    • Optimize network communication by minimizing unnecessary data transfer and using compression techniques

    • Scale the server infrastructure horizontally to handle increased load, such as using load balancers and auto-scaling

    • Implement asynchr...

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Oops concept related work
  • Q2. Technology used in prj
  • Ans. 

    Various technologies used in the project include Java, Spring Boot, Angular, MySQL, and Docker.

    • Java

    • Spring Boot

    • Angular

    • MySQL

    • Docker

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - lage raho

BT Group Interview FAQs

How many rounds are there in BT Group Ssrs Developer interview?
BT Group interview process usually has 2 rounds. The most common rounds in the BT Group interview process are Resume Shortlist and Technical.
What are the top questions asked in BT Group Ssrs Developer interview?

Some of the top questions asked at the BT Group Ssrs Developer interview -

  1. What is VPc in nexus dev...read more
  2. What is VDC in Nexus dev...read more

Tell us how to improve this page.

BT Group Ssrs Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Jio Interview Questions
3.9
 • 1.6k Interviews
Bharti Airtel Interview Questions
4.0
 • 833 Interviews
DXC Technology Interview Questions
3.7
 • 808 Interviews
NTT Data Interview Questions
3.9
 • 604 Interviews
Citicorp Interview Questions
3.7
 • 565 Interviews
View all
Associate
335 salaries
unlock blur

₹1.5 L/yr - ₹6.3 L/yr

Associate Engineer
282 salaries
unlock blur

₹2.8 L/yr - ₹8 L/yr

Financial Analyst
263 salaries
unlock blur

₹6.8 L/yr - ₹23 L/yr

Project Manager
238 salaries
unlock blur

₹7 L/yr - ₹23.3 L/yr

Network Engineer
203 salaries
unlock blur

₹2.7 L/yr - ₹9 L/yr

Explore more salaries
Compare BT Group with

Vodafone Idea

4.1
Compare

Bharti Airtel

4.0
Compare

Jio

3.9
Compare

Tata Communications

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