TCSNQT09APRIL2025
TCSNQT09APRIL2025
com
TCS Pattern:
Section Total Time Total Questions
Part A: Foundation Section
Numerical Ability 25 mins 20 Q
Verbal Ability 25 mins 25 Q
Disclaimer:
1. The questions in this document have been reconstructed from memory by test takers who
recalled them after their exam.
2. There is minimal repetition of questions between different slots.
3. Use this document as a reference for preparation rather than a replica of the questions that
have appeared or may appear in the TCS NQT.
APTITUDE QUESTIONS
Date: 09/04/2025
1. Statement:
i) All R is T
ii) R is not L
iii) Some L or H
Conclusions:
i) L is not R
ii) Some T is H
2. The total population 10,000 and first year increases 15% and second year increases 30% what is the
total population after two year?
Answer: 149500
3. The average age of C, V and N is 45, the average age of C & V = 40, average age of V & N = 42.
Then find V’s age?
Answer: 29
4. Find the LCM of two numbers = 11.9 and 0.016
Answer: 47.6
5. A train moves from A to B at the speed of 27kmph, from B to A at the speed of 54kmph, find the
average speed
Answer: 36kmph
6. Difference between S.I and C.I
7. Find wrong term HPX, GO, PXF, GLW, XFN, OWE?
Answer: GLW
8. Product of two numbers is 4205. the first number is five times the second number find the sum of
two number is?
Answer: 174
9. Equal roots ax^2 + b + c = 0
10. If MOST – 5694, SOFT – 4958 what is F value?
Answer: 8
11. A purchased two product each price 3600. One is 24% profit and another one is 24% loss. What is
overall % profit and loss?
12. A, B and C together can complete a work in 3 days. B alone can complete in 8 day, A alone can
complete 12 day. C alone can complete twice of work?
Answer: 5
87. Which of the following numbers will appear on the face opposite to the face with number 2?
88. Select the option that is related to the third figure in the same way second figure is related to the
first figure.
89. If the given figure is folded to form a cube. Which symbol will come opposite to z?
90. A paper was taken and was folded and shaded in the manner shown below how will it appear
when unfolded?
Java code
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int m = scanner.nextInt();
int n = scanner.nextInt();
if (m <= 0 || n <= 0) {
System.out.println("Wrong Input");
return;
}
int total = m * n;
System.out.println("Valid");
}
private static boolean isPrime(int num) {
if (num <= 1) return false;
if (num == 2) return true;
if (num % 2 == 0) return false;
Java Code
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int m = scanner.nextInt();
3. Write a program to check whether a given string is a pangram or not. A pangram is a sentence that
contains every letter of the English alphabet at least once.
Input:
• A single line containing the input string. The string may contain spaces, punctuation, and mixed case
letters.
Output:
• Print "Yes" if the string is a pangram, otherwise print "No".
Constraints:
• The input string may contain a mix of uppercase and lowercase letters.
• Non-alphabetic characters (such as spaces and punctuation) should be ignored while checking for a
pangram.
Java Code
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
String input = scanner.nextLine();
if (isPangram(input)) {
System.out.println("Yes");