Upload Button Icon Add office photos

Filter interviews by

3G Network Solutions Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

I applied via Approached by Company and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They just check you last draws salary and account statement
  • Q2. No technical round

Interview Preparation Tips

Interview preparation tips for other job seekers - Not a good place to work
Over target
Low salary

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed in Oct 2022. There were 5 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 - Coding Test 

It was a combination of coding and aptitude test. The test had four section and each section had it's time limit.

Round 3 - Technical 

(3 Questions)

  • Q1. The interviewer asked me question based on my resume. He also asked me question related to DBMS, OS & DSA.
  • Q2. Define polymorphism.
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • Polymorphism allows objects of different classes to be treated as if they are of the same class.

    • It can be achieved through method overloading or method overriding.

    • For example, a parent class Animal can have child classes like Dog, Cat, and Bird, each with their own unique implementation of the method 'makeSound'.

  • Answered by AI
  • Q3. Difference between SQL & NoSQL.
  • Ans. 

    SQL is a relational database management system, while NoSQL is a non-relational database management system.

    • SQL databases use structured query language for defining and manipulating the data.

    • NoSQL databases are schema-less and use various data models like key-value, document, columnar, or graph.

    • SQL databases are suitable for complex queries and transactions.

    • NoSQL databases are horizontally scalable and provide high perf...

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

(1 Question)

  • Q1. It was a managerial round.
Round 5 - HR 

(1 Question)

  • Q1. It asked me some situational based questions.

Interview Preparation Tips

Topics to prepare for Telstra Associate Software Engineer interview:
  • DBMS
  • DSA
  • OS
Interview preparation tips for other job seekers - Do revise core java concepts. Also be clear with what you know and what you don't. Hope you crack the interview. All the best :))

Skills evaluated in this interview

Technical Specialist (Data Warehousing) Interview Questions & Answers

AT&T user image Anonymous

posted on 20 Apr 2022

I applied via Naukri.com and was interviewed in Mar 2022. There were 2 interview rounds.

Round 1 - Technical 

(14 Questions)

  • Q1. Informatica - Difference between router and filter transformation
  • Ans. 

    Router and filter transformations are used in Informatica for data filtering, but they have different functionalities.

    • Router transformation is used to route data based on specified conditions to multiple output groups.

    • Filter transformation is used to filter rows based on specified conditions and pass only the matching rows to the output.

    • Router transformation can have multiple output groups, each with its own condition.

    • ...

  • Answered by AI
  • Q2. Informatica - How can we handle duplicates in mappings
  • Ans. 

    Duplicates in mappings can be handled using various techniques in Informatica.

    • Use the Sorter transformation to sort the data and then use the Aggregator transformation to eliminate duplicates.

    • Use the Expression transformation with the DISTINCT keyword to remove duplicates.

    • Use the Rank transformation to rank the data and then filter out the duplicates based on the rank.

    • Use the Lookup transformation to check for duplicat...

  • Answered by AI
  • Q3. Informatica - How will you select last 10 lines from a file in mapping
  • Ans. 

    To select the last 10 lines from a file in Informatica mapping, use the Source Qualifier transformation with a SQL override.

    • Add a Source Qualifier transformation to the mapping.

    • In the Source Qualifier transformation, specify the file as the source and set the appropriate file properties.

    • Write a SQL override in the Source Qualifier transformation to select the last 10 lines from the file.

    • Use the ROWNUM pseudocolumn or t...

  • Answered by AI
  • Q4. Informatica - What are lookups and their types? Differences between those types in terms of input and output ports?
  • Ans. 

    Lookups in Informatica are used to retrieve data from a reference table based on a matching condition.

    • Lookups are used to perform data transformations and enrich the data in a mapping.

    • There are three types of lookups in Informatica: Connected, Unconnected, and Static.

    • Connected lookup returns multiple rows and can be used in any transformation.

    • Unconnected lookup returns a single value and is used in expressions or trans...

  • Answered by AI
  • Q5. Informatica - Tell me about your experience of performance optimization of workflows/mappings
  • Ans. 

    I have extensive experience in performance optimization of Informatica workflows and mappings.

    • Identifying and resolving performance bottlenecks

    • Tuning SQL queries and optimizing database connections

    • Optimizing transformations and reducing data processing time

    • Using partitioning and parallel processing for improved performance

    • Monitoring and analyzing session logs and performance statistics

    • Implementing caching and lookup op...

  • Answered by AI
  • Q6. Informatica - What is push down optimization?
  • Ans. 

    Push down optimization is a technique used in Informatica to improve performance by pushing data transformation operations to the source or target database.

    • Push down optimization reduces the amount of data transferred between the source and target systems.

    • It allows the database engine to perform transformations, aggregations, and filtering, leveraging its processing power.

    • By pushing down operations, Informatica minimiz...

  • Answered by AI
  • Q7. Unix - Display 10th line from a file
  • Ans. 

    Display the 10th line from a file in Unix.

    • Use the 'head' command to display the first 10 lines of the file.

    • Then use the 'tail' command to display the last line from the first 10 lines.

    • Combine both commands using a pipe ('|') to display the 10th line directly.

  • Answered by AI
  • Q8. Unix - Display duplicate lines from a file
  • Ans. 

    Display duplicate lines from a file in Unix.

    • Use the 'sort' command to sort the lines in the file.

    • Use the 'uniq' command with the '-d' option to display only the duplicate lines.

    • Redirect the output to a new file or display it on the console.

  • Answered by AI
  • Q9. Python - How to check if a string starts with letter 'a' and then has 4-8 'd' after that.
  • Ans. 

    The Python code to check if a string starts with 'a' and has 4-8 'd' after that.

    • Use the startswith() method to check if the string starts with 'a'.

    • Use the count() method to count the occurrences of 'd' in the string.

    • Check if the count of 'd' is between 4 and 8 (inclusive).

  • Answered by AI
  • Q10. Unix - how to find disk usage of a specific directory
  • Ans. 

    To find disk usage of a specific directory in Unix, use the 'du' command.

    • Open the terminal and navigate to the desired directory

    • Run the 'du' command followed by the directory path

    • The command will display the disk usage in bytes for each file and subdirectory within the specified directory

    • To get the disk usage in human-readable format, use the '-h' option with 'du'

    • To sort the output by disk usage, use the '-s' option wi

  • Answered by AI
  • Q11. SQL - what happens in a left join
  • Ans. 

    In a left join, all the rows from the left table are included in the result set, along with matching rows from the right table.

    • Left join returns all rows from the left table and the matching rows from the right table

    • If there is no match, NULL values are returned for the columns of the right table

    • Left join is used to retrieve data from multiple tables based on a related column

  • Answered by AI
  • Q12. Cloud Computing - Concepts of CapEx and OpEx
  • Q13. Cloud Computing - Concepts of IaaS, PaaS, SaaS
  • Q14. Cloud Computing - Concepts of Private, Public and Hybrid cloud
Round 2 - One-on-one 

(6 Questions)

  • Q1. Behavioral - How would you handle a scenario where client expectations haven't been met at the end of development period? Give an example if you have faced it.
  • Ans. 

    I would address the issue by identifying the root cause, communicating with the client, and implementing necessary changes.

    • Identify the reasons for not meeting client expectations

    • Communicate with the client to understand their concerns and expectations

    • Evaluate the development process and identify areas for improvement

    • Implement necessary changes to meet client expectations

    • Ensure effective communication and collaboration...

  • Answered by AI
  • Q2. Behavioral - How would you handle a scenario where a change in process has significantly impacted your team workings? Give an example if you have faced it.
  • Ans. 

    I would handle the scenario by following a structured approach and effectively communicating with the team.

    • Assess the impact of the change on team workings

    • Identify the key challenges and areas of concern

    • Develop a structured plan to address the issues

    • Communicate the plan to the team and seek their input

    • Implement the plan while providing necessary support and guidance

    • Monitor the progress and make adjustments as needed

    • Reg...

  • Answered by AI
  • Q3. Behavioral - How would you handle a scenario where a lot of interactions have to be done with different teams/stakeholders to complete the work? Give an example if you have faced it.
  • Ans. 

    I would handle the scenario by following a structured approach and effective communication.

    • Identify all the teams and stakeholders involved

    • Establish clear communication channels

    • Schedule regular meetings to discuss progress and address any issues

    • Document and track all interactions and decisions

    • Ensure everyone is aligned on goals and expectations

    • Provide regular updates and status reports

    • Resolve conflicts or disagreements...

  • Answered by AI
  • Q4. Cloud Computing - Why do you think Cloud is a better choice than on-premise datacenters
  • Ans. 

    Cloud computing offers scalability, cost-effectiveness, flexibility, and improved security compared to on-premise datacenters.

    • Scalability: Cloud allows easy scaling up or down of resources based on demand.

    • Cost-effectiveness: Cloud eliminates the need for upfront hardware and infrastructure investments.

    • Flexibility: Cloud enables easy access to data and applications from anywhere, anytime.

    • Improved security: Cloud provide...

  • Answered by AI
  • Q5. SQL - Tell me your experience with performance optimization in SQL
  • Ans. 

    I have extensive experience in performance optimization in SQL.

    • Identifying and optimizing slow queries

    • Creating and maintaining appropriate indexes

    • Using query execution plans to identify bottlenecks

    • Optimizing database schema and table design

    • Using appropriate data types and constraints

    • Caching and data caching techniques

    • Partitioning large tables

    • Optimizing query parameters and joins

    • Using stored procedures and views for per

  • Answered by AI
  • Q6. Questions from my past projects regarding the architecture of datawarehouses we had.

Interview Preparation Tips

Interview preparation tips for other job seekers - You need to have some fair knowledge on the technologies that you have specified. First round is going to be purely technical based on your skillset. Second round is going to be more behavioral/culture fit with technical questions more on the architecture and design side of things. Questions for this round will mostly depend on the role they hiring for (like developer/team leader/architect)

Skills evaluated in this interview

I applied via Approached by Company and was interviewed in Dec 2021. There were 2 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. The director didn’t have any interview know like
  • Q2. Nothing was asked. HR was clueless

Interview Preparation Tips

Interview preparation tips for other job seekers - Worst company. Its 2 years since I left but they are not clearing my pending dues

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

Interview Questionnaire 

20 Questions

  • Q1. 1. Bwp part concept
  • Ans. 

    BWP part concept refers to the concept of breaking down a software system into smaller, more manageable parts.

    • BWP stands for Break-When-Problematic

    • It helps in identifying and isolating issues in the system

    • Each part should have a clear responsibility and interface with other parts

  • Answered by AI
  • Q2. 2. What is corset
  • Ans. 

    Corset is a tight-fitting undergarment worn to shape and support the torso.

    • Corsets were popular in the Victorian era.

    • They were worn by women to achieve an hourglass figure.

    • Modern corsets are often used as fashion statements or for waist training.

    • Corsets can be made of various materials such as satin, leather, or lace.

    • They can be fastened with laces, hooks, or zippers.

  • Answered by AI
  • Q3. 3. Rach procedure
  • Q4. 4. Ue attach procedure
  • Ans. 

    UE attach procedure is a process in LTE network where a UE establishes a connection with the network.

    • UE sends RRC Connection Request message to eNodeB

    • eNodeB sends RRC Connection Setup message to UE

    • UE sends RRC Connection Setup Complete message to eNodeB

    • eNodeB sends RRC Connection Reconfiguration message to UE

    • UE sends RRC Connection Reconfiguration Complete message to eNodeB

    • UE is now attached to the network

  • Answered by AI
  • Q5. 5. Which numerology are you using
  • Ans. 

    I am not using any numerology in my work as a Senior Software Engineer.

    • I do not believe in numerology and do not use it in my work.

    • My focus is on writing efficient and effective code.

    • Numerology has no place in software engineering.

  • Answered by AI
  • Q6. 6. Which bandwidth are you using with RB's
  • Ans. 

    RB's bandwidth usage depends on the specific product and its features.

    • RB's have different bandwidth usage depending on the product

    • The bandwidth usage also depends on the features of the product

    • Examples of RB's with different bandwidth usage are RB750Gr3 and RB4011iGS+RM

  • Answered by AI
  • Q7. 7. 5G architecture
  • Q8. 8. Protocol layers.
  • Q9. 9. Channel mapping
  • Q10. 10. Cell selection ,cell reselection
  • Q11. 11. Slots based on numerology
  • Q12. 12. What is cce
  • Ans. 

    CCE stands for Continuous and Comprehensive Evaluation.

    • CCE is a system of evaluation in education that assesses students' progress continuously throughout the year.

    • It is a comprehensive approach that takes into account various aspects of a student's development, including academic, social, and emotional.

    • CCE aims to reduce the emphasis on rote learning and promote a more holistic approach to education.

    • It was introduced ...

  • Answered by AI
  • Q13. 13. Find loop in linked list
  • Ans. 

    To find a loop in a linked list, use Floyd's cycle-finding algorithm.

    • Use two pointers, one moving at a rate of one node per iteration and the other moving at a rate of two nodes per iteration.

    • If there is a loop, the two pointers will eventually meet at the same node.

    • If there is no loop, the faster pointer will reach the end of the list.

    • Time complexity: O(n), Space complexity: O(1)

  • Answered by AI
  • Q14. 14 . WAP set bit or reset bit
  • Ans. 

    WAP set bit or reset bit is a programming concept used to manipulate individual bits in a binary number.

    • Setting a bit involves changing its value from 0 to 1.

    • Resetting a bit involves changing its value from 1 to 0.

    • This concept is commonly used in low-level programming and hardware manipulation.

    • Example: Setting the 3rd bit of a binary number 1010 would result in 1110.

    • Example: Resetting the 2nd bit of a binary number 110

  • Answered by AI
  • Q15. 15. Storage classes
  • Q16. 16 .what is semaphore
  • Ans. 

    Semaphore is a synchronization object used to control access to a shared resource.

    • Semaphore is a signaling mechanism used to control access to a shared resource

    • It maintains a count of available resources and blocks the thread if the count is zero

    • Semaphore can be used to implement critical sections, mutexes, and barriers

    • Examples include controlling access to a database or limiting the number of concurrent connections

  • Answered by AI
  • Q17. 17. Array vs linkedlist
  • Ans. 

    Arrays are faster for random access, while linked lists are better for frequent insertions and deletions.

    • Arrays have a fixed size, while linked lists can grow dynamically.

    • Arrays are stored in contiguous memory, while linked lists use pointers to connect nodes.

    • Accessing an element in an array is O(1), while in a linked list it is O(n).

    • Inserting or deleting an element in an array is O(n), while in a linked list it is O(1...

  • Answered by AI
  • Q18. 18.SRB ,DRB in 5G
  • Q19. 19. For taking Wireshark logs which command we use
  • Ans. 

    The command used for taking Wireshark logs is 'tcpdump'.

    • Wireshark is a network protocol analyzer tool

    • Tcpdump is a command-line tool used to capture network traffic

    • Tcpdump can be used to capture packets and save them as a file for analysis in Wireshark

    • Example command: tcpdump -i eth0 -w capture.pcap

  • Answered by AI
  • Q20. 18. How to find how much process are running on server
  • Ans. 

    Use command line tools like 'ps' or 'top' to find the number of running processes on a server.

    • Use 'ps aux' command to list all running processes and count the number of lines

    • Use 'top' command and look for the 'Tasks' section which shows the number of running processes

    • Use 'htop' command which provides a more interactive and detailed view of running processes

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calp, don't hesitate

Skills evaluated in this interview

IT Asset Configuration and Change Analyst Interview Questions & Answers

BT E Serv user image Anonymous

posted on 13 Dec 2021

I applied via Recruitment Consultant

Interview Questionnaire 

3 Questions

  • Q1. What do you know about change management?
  • Q2. Types of changes in ITIL?
  • Q3. Modern day tools which we are operating to log Incidents or Change requests.

Interview Preparation Tips

Interview preparation tips for other job seekers - Questions were asked regarding my on going job roles, basic concept on ITSM & ITIL.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Feb 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Optical fiber splicer manager

Interview Preparation Tips

Interview preparation tips for other job seekers - Hyderabad address request

I applied via campus placement at Rashtreeya Vidyalaya College of Engineering, Bangalore and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Technical questions
  • Q2. Yes,.. You must be strong in technical

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in technical, there will be 5-6 members in pannel. They shoot you question you must be capable to answer them

I applied via Campus Placement and was interviewed in Nov 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Telecom, networking, cyber security

Interview Preparation Tips

Interview preparation tips for other job seekers - overall easy and quite doable. be confident and prepare well you will get through!

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

Interview Questionnaire 

3 Questions

  • Q1. What is bgp and it's attributes
  • Ans. 

    BGP stands for Border Gateway Protocol. It is a routing protocol used to exchange routing information between different networks.

    • BGP is used to connect different autonomous systems (AS) on the internet.

    • It uses path vector routing to determine the best path for data to travel between networks.

    • BGP has several attributes that determine the path selection, including AS path, next hop, local preference, and weight.

    • AS path i...

  • Answered by AI
  • Q2. What is voip
  • Ans. 

    VoIP stands for Voice over Internet Protocol, which is a technology that allows voice communication over the internet.

    • VoIP converts analog voice signals into digital data packets that can be transmitted over the internet.

    • It is a cost-effective alternative to traditional phone systems.

    • Examples of VoIP services include Skype, WhatsApp, and Zoom.

    • VoIP can be used for voice calls, video calls, and messaging.

    • It requires a st...

  • Answered by AI
  • Q3. What is sip protocol
  • Ans. 

    SIP (Session Initiation Protocol) is a signaling protocol used for initiating, maintaining, modifying and terminating real-time sessions that involve video, voice, messaging and other communications applications and services between two or more endpoints on IP networks.

    • SIP is used for initiating, maintaining, modifying and terminating real-time sessions

    • It is a signaling protocol

    • It is used for communication between two ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Read about ip(bgp, ospf) and voip

Skills evaluated in this interview

3G Network Solutions Interview FAQs

How to prepare for 3G Network Solutions 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 3G Network Solutions. The most common topics and skills that interviewers at 3G Network Solutions expect are SAP Implementation, SAP Support, SAP ABAP, Sap Hana and Accounting.

Tell us how to improve this page.

Interview Questions from Similar Companies

Bharti Airtel Interview Questions
4.0
 • 816 Interviews
Vodafone Idea Interview Questions
4.1
 • 543 Interviews
Ericsson Interview Questions
4.2
 • 403 Interviews
Nokia Interview Questions
4.2
 • 272 Interviews
ACT Fibernet Interview Questions
4.0
 • 130 Interviews
Verizon Interview Questions
4.1
 • 111 Interviews
View all

3G Network Solutions Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Software Developer
3 salaries
unlock blur

₹2 L/yr - ₹3.6 L/yr

Senior Software Engineer
3 salaries
unlock blur

₹3.3 L/yr - ₹4 L/yr

HR and IT Recruiter
3 salaries
unlock blur

₹1.9 L/yr - ₹2.9 L/yr

Explore more salaries
Compare 3G Network Solutions with

Vodafone Idea

4.1
Compare

Bharti Airtel

4.0
Compare

Ericsson

4.2
Compare

Tata Communications

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