Tata Consultancy Services interview pyqs with solutions. Part 3. Guaranteed Selection no doubt.
- Tata Consultancy Services interview pyqs with solutions:
- Q)What do you understand about round trip time? (Tata Consultancy Services interview pyqs with solutions)
- Q)What is a Ping? (Tata Consultancy Services interview pyqs with solutions)
- Q)What is an array? (Tata Consultancy Services interview pyqs with solutions)
- Q)Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions. (Tata Consultancy Services interview pyqs with solutions)
- Q)Define Data Abstraction. What are their importance? (Tata Consultancy Services interview pyqs with solutions)
- Q)What is Ethernet? (Tata Consultancy Services interview pyqs with solutions)
- Q)What is the tunnel mode in networking? (Tata Consultancy Services interview pyqs with solutions)
- Q)Discuss the RSA algorithm in brief. (Tata Consultancy Services interview pyqs with solutions)
- Q)Write a function to swap two numbers without using a temporary variable. (Tata Consultancy Services interview pyqs with solutions)
- Q)Memory Allocation in C/C++ (Tata Consultancy Services interview pyqs with solutions)
- Q)Write output of the program?
- Q)In a software program, what is cyclomatic complexity? (Tata Consultancy Services interview pyqs with solutions)
- Q)Give an instance where there was a bug that you didn’t find in black box testing but discovered in white box testing. (Tata Consultancy Services interview pyqs with solutions)
- Q)What is slice splicing in software testing? What are its two types? (Tata Consultancy Services interview pyqs with solutions)
- Q)what is virtual function and pure virtual function? (Tata Consultancy Services interview pyqs with solutions)
- Q)What are WPF and WCF? (Tata Consultancy Services interview pyqs with solutions)
- Q)Enlist the differences between AWT and Swing in Java. (Tata Consultancy Services interview pyqs with solutions)
- Q)Explain memory leak in C++. How can you avoid it? (Tata Consultancy Services interview pyqs with solutions)
- Q)Write a program in C to swap two numbers without help of a third variable. (Tata Consultancy Services interview pyqs with solutions)
Tata Consultancy Services interview pyqs with solutions:
Here are Tata Consultancy Services interview pyqs with solutions, you can practise them(Tata Consultancy Services interview pyqs with solutions) for your interview for TCS/Tata Consultancy Services(Tata Consultancy Services interview pyqs with solutions).
Q)What do you understand about round trip time? (Tata Consultancy Services interview pyqs with solutions)
Solution: Round Trip Time (RTT) is the time it takes for a signal or data packet to travel from a source to a destination and back again. It’s a key metric in networking, as it helps measure the latency or delay in communication between two points. RTT is crucial for assessing network performance and is influenced by factors like distance, transmission speed, and network congestion.
Q)What is a Ping? (Tata Consultancy Services interview pyqs with solutions)
Solution: Ping is a network utility used to test the reachability of a device on a network and measure the Round Trip Time (RTT). It sends an Internet Control Message Protocol (ICMP) echo request to the target device, and when the device responds, Ping calculates how long it took to receive the reply. This helps in diagnosing network connectivity and performance.
Q)What is an array? (Tata Consultancy Services interview pyqs with solutions)
Solution: An array is a data structure that stores a collection of elements, typically of the same data type, in a contiguous block of memory. Each element in an array can be accessed by its index, with indexing usually starting from 0. Arrays are commonly used in programming to store multiple values in a single variable and to perform operations on collections of data efficiently.
Q)Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions. (Tata Consultancy Services interview pyqs with solutions)
Solution: