Tip 1: Practice at least math-based coding questions, such as prime numbers, GCD, etc.
Tip 2: Complete at least two projects.
Tip 3: Don't fake your CV.
Tip 1: Prepare your resume very carefully; don't fake it.
Tip 2: Remember every point on your resume.
The TCS Ninja selection process includes an online test divided into two parts: PART-A (Foundation Section) and PART-B (Advanced Section), with a total duration of 190 minutes. The Foundation Section consists of three subsections: Numerical Ability, Verbal Ability, and Reasoning Ability, each allocated 25 minutes. The Advanced Section comprises Advanced Quantitative & Reasoning Ability, which has a duration of 25 minutes, and Advanced Coding, where candidates are required to solve two coding problems within 90 minutes. This comprehensive assessment evaluates a candidate's aptitude, reasoning, verbal skills, and coding proficiency.
Convert speed unit from km/h to m/sec.
This coding question required a solution involving speed conversion, where it was explicitly mentioned to multiply the speed by 5/18.
A strong number, also known as a factorial number, is a special integer where the sum of the factorials of its individual digits equals the original number itself. In other words, if you take each digit of the number, compute its factorial (e.g., 5! = 120), and sum up these factorials, the result should match the original number.
Welcome, developer! Your task is to write the logic of isStrongNumber method for verifying whether a number is strong or not. A strong number, as defined above, has the fascinating property that the sum of the factorials of its individual digits equals the original number itself. So, let’s dive into completing the function
Best of luck, developers!
The interview was conducted by a panel of three members:
HR (Human Resources): Questions focused on communication skills, adaptability, and general background topics, including willingness to relocate and work in shifts.
MR (Managerial Round): Questions were related to management concepts, decision-making abilities, and handling real-world scenarios.
Technical Round: This round covered technical knowledge, programming concepts, and problem-solving. Specific questions included topics like deletion in a linked list, object-oriented programming (OOPs) principles, and writing SQL queries.
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which traversal uses a queue as its primary data structure?