Hexaware GET: Detailed Information
The GET assessment comprises four primary sections designed to evaluate a candidate’s quantitative aptitude, logical reasoning, verbal ability, and domain knowledge. Here’s a closer look at each section:
- Quantitative Aptitude (Quants)
Questions: 20
Time: 60 minutes (shared)
Difficulty Level: Medium
Importance: High
- Logical Reasoning
Questions: 20
Time: 60 minutes (shared)
Difficulty Level: Medium
Importance: High
- Verbal Ability
Questions: 20
Time: 60 minutes (shared)
Difficulty Level: Medium
Importance: High
- Domain-based Knowledge
Total Questions: 30
Time: 30 minutes
Breakdown:
Pseudocode: 15 questions
Computer Fundamentals: 15 questions
Difficulty Level: High
Importance: High
GET Exam Syllabus
- Numerical Ability:
- Percentages
- LCM-HCF
- Ages
- Ratio and Proportion
- Profit and Loss
- Bar Graphs
- Power, Surds, Indices
- Geometry
- Simple Interest (SI) and Compound Interest (CI)
- Mixtures
- Time, Speed, and Distance
- Probability and Permutations & Combinations (PnC)
- Time and Work
- Pie Charts
- Calendars
- Functions
- Reasoning Ability:
- Coding and Decoding
- Ranking and Sequence
- Abstract Reasoning
- Blood Relations
- Syllogism
- Arrangements
- Algorithms and Flowcharts
- Number Series
- Strengthening/Weakening Statements
- Relationship between words
- Visual reasoning
- Odd One Out
- Statements and Conclusions
- Statements and Arguments
- Letter Series
- Inequalities
- Puzzles
- Cubes/Dices
- Verbal Ability:
- Fill in the Blanks
- Spelling
- Analogy
- Sentence Ordering
- Error Identification
- Synonyms and Antonyms
- Sentence Improvement
- Prepositions and Conjunctions
- Idioms and Phrases
- Reading Comprehension
- Articles
- Speech and Tense
- Domain Knowledge (Technical):
- Pseudocode (15 questions)
- Computer Fundamentals (15 questions)
- Pseudocode:
- Basic programming constructs (loops, conditionals)
- Algorithms (sorting, searching)
- Data structures (arrays, linked lists, stacks, queues)
- Computer Fundamentals:
- Operating Systems (basics)
- Computer Networks
- Database Management Systems
- Basics of Object-Oriented Programming (OOPs)
- Software Development Life Cycle (SDLC)
- Basics of Cloud Computing
- Technical Interview
- Focus on core subjects relevant to your degree (e.g., Data Structures, Algorithms, DBMS, OOPs, Operating Systems, Networking, etc.).
- Coding problems (can be language-specific or pseudocode).
- Understanding of software development practices.
- Project discussions (internship or academic projects).
- Problem-solving and debugging.
- HR Interview
- General HR questions (e.g., strengths, weaknesses, career goals).
- Behavioral questions (e.g., teamwork, leadership, conflict resolution).
- Questions about the company and why you want to join Hexaware.
1. Pseudocode:
function recursiveFunc(n):
if n == 0:
return 0
else:
return n + recursiveFunc(n – 1)
print(recursiveFunc(5))
Output: 15
2. Pseudocode:
function factorial(n):
if n == 1:
return 1
else:
return n * factorial(n – 1)
print(factorial(4))
Output: 24
3. Pseudocode:
less
a = 5
b = 3
while a > 0:
b = b * 2
a = a – 1
print(b)
Output: 96
4. Pseudocode:
a = 7
b = 10
while b > a:
if b % 2 == 0:
b = b – 3
else:
b = b – 2
print(b)
Output: 7
5. Pseudocode:
x = 5
y = 2
while y < 8:
x = x + y
y = y + 2
print(x)
Output: 17
6. Pseudocode:
function mystery(x, y):
if y == 0:
return x
else:
return mystery(y, x % y)
print(mystery(100, 25))
Output: 25
7. Pseudocode:
n = 1234
sum = 0
while n > 0:
sum = sum + n % 10
n = n // 10
print(sum)
Output: 10
8. Pseudocode:
n = 5
a = 0
b = 1
for i = 1 to n:
temp = a
a = b
b = temp + b
print(b)
Output: 8
9. Pseudocode:
for i = 1 to 5:
for j = 1 to 5:
if i * j == 9:
print(“Break”)
break
print(i * j)
Output: 1 2 3 4 5 2 4 6 8 10 3 6 Break 4 8 12 16 20 5 10 15 20 25
10. Pseudocode:
sum = 0
for i = 1 to 100:
if i % 3 == 0 or i % 5 == 0:
sum = sum + i
print(sum)
Output: 2418
11. Pseudocode:
function reverse(n):
rev = 0
while n > 0:
digit = n % 10
rev = rev * 10 + digit
n = n // 10
return rev
print(reverse(12345))
Output: 54321
12. Pseudocode:
n = 10
count = 0
while n > 1:
if n % 2 == 0:
n = n // 2
else:
n = n * 3 + 1
count = count + 1
print(count)
Output: 6
13. Pseudocode:
x = 0
for i = 1 to 5:
for j = i to 5:
x = x + i + j
print(x)
Output: 85
14. Pseudocode:
function f(n):
if n <= 1:
return 1
else:
return n * f(n – 1)
a = f(3)
b = f(2)
c = f(1)
print(a + b + c)
Output: 9
15. Pseudocode:
x = 3
y = 2
z = 4
result = (x * y) + z – y // x
print(result)
Output: 10
16. Pseudocode:
n = 6
count = 0
while n > 0:
count = count + 1
n = n // 2
print(count)
Output: 3
17. Pseudocode:
a = 2
b = 3
c = 4
x = a * b + c – a
y = x * c // b
z = x + y
print(z)
Output: 38
18. Pseudocode:
function mystery(n):
if n <= 1:
return 1
if n % 2 == 0:
return mystery(n // 2)
else:
return mystery(n * 3 + 1)
print(mystery(6))
Output: 1
19. Pseudocode:
x = 100
for i = 1 to 10:
x = x – i
if x < 90:
break
print(x)
Output: 91
20. Pseudocode:
function gcd(a, b):
while b != 0:
temp = b
b = a % b
a = temp
return a
print(gcd(48, 18))
Output: 6
21. Pseudocode:
function mystery(n):
if n == 0:
return 0
if n == 1:
return 1
return mystery(n-1) + mystery(n-2)
print(mystery(6))
Output: 8
22. Pseudocode:
n = 100
count = 0
while n > 0:
if n % 2 == 0:
n = n – 1
else:
n = n – 3
count = count + 1
print(count)
Output: 51
23. Pseudocode:
a = 5
b = 2
for i = 1 to 5:
b = b * 2
a = a + b
print(a)
Output: 89
24. Pseudocode:
n = 4
a = 1
for i = 1 to n:
for j = 1 to i:
a = a + 1
print(a)
Output: 11
25. Pseudocode:
function func(n):
sum = 0
while n > 0:
sum = sum + n % 10
n = n // 10
return sum
print(func(999))
Output: 27
26. Pseudocode:
a = 5
b = 3
while b < 50:
a = a + b
b = b * 2
print(a)
Output: 44
27. Pseudocode:
x = 10
y = 3
while y <= x:
x = x – y
y = y + 1
print(x)
Output: 7
28. Pseudocode:
x = 1
for i = 1 to 5:
x = x * i
print(x)
Output: 120
29. Pseudocode:
n = 8
while n > 1:
if n % 2 == 0:
n = n // 2
else:
n = 3 * n + 1
print(n)
Output: 4 2 1
30. Pseudocode:
function mystery(n):
if n == 0:
return 1
else:
return n * mystery(n-1)
print(mystery(5))
Output: 120
31. Pseudocode:
n = 9
a = 1
while n > 1:
a = a * n
n = n – 2
print(a)
Output: 945
32. Pseudocode:
a = 3
b = 7
while a < b:
b = b – 1
a = a + 1
print(a, b)
Output: 5 5
33. Pseudocode:
sum = 0
for i = 1 to 10:
if i % 2 == 0:
sum = sum + i
print(sum)
Output: 30
34. Pseudocode:
a = 0
b = 1
for i = 1 to 10:
temp = a + b
a = b
b = temp
print(b)
Output: 89
35. Pseudocode:
function f(n):
if n == 0:
return 0
return f(n // 2) + n % 2
print(f(13))
Output: 3
36. Pseudocode:
x = 2
for i = 1 to 4:
x = x * i
print(x)
Output: 48
37. Pseudocode:
n = 7
count = 0
while n > 1:
count = count + 1
n = n – 2
print(count)
Output: 3
38. Pseudocode:
x = 1
for i = 1 to 3:
for j = 1 to i:
x = x * (i + j)
print(x)
Output: 720
39. Pseudocode:
n = 10
sum = 0
for i = 1 to n:
sum = sum + i * i
print(sum)
Output: 385
40. Pseudocode:
function mystery(a, b):
if b == 0:
return a
else:
return mystery(b, a % b)
print(mystery(48, 18))
Output: 6
41. Pseudocode:
n = 6
while n > 0:
print(n)
n = n // 2
Output: 6 3 1
42. Pseudocode:
a = 1
b = 2
for i = 1 to 5:
a = a + b
b = b + 1
print(a)
Output: 16
43. Pseudocode:
n = 10
for i = 1 to n:
if i % 3 == 0:
n = n – 1
print(n)
Output: 7
44. Pseudocode:
sum = 0
for i = 1 to 50:
if i % 7 == 0:
sum = sum + i
print(sum)
Output: 196
45. Pseudocode:
a = 2
b = 3
for i = 1 to 4:
a = a * b
b = b – 1
print(a)
Output: 12
46. Pseudocode:
n = 9
a = 0
while n > 0:
a = a + n
n = n – 2
print(a)
Output: 25
47. Pseudocode:
function func(x, y):
return x * y + (x – y)
print(func(3, 4))
Output: 11
48. Pseudocode:
x = 10
for i = 1 to 3:
x = x + i
print(x)
Output: 16
49. Pseudocode:
function mystery(n):
if n <= 1:
return 1
return n * mystery(n – 1)
print(mystery(4))
Output: 24
50. Pseudocode:
n = 7
sum = 0
for i = 1 to n:
if i % 2 == 0:
sum = sum + i
print(sum)
Output: 12
51. Pseudocode:
a = 3
b = 2
while b < 10:
a = a + b
b = b + 3
print(a)
Output: 14
52. Pseudocode:
x = 5
y = 3
for i = 1 to 4:
y = y * 2
x = x + y
print(x)
Output: 61
53. Pseudocode:
n = 10
a = 0
while n > 0:
a = a + n % 2
n = n // 2
print(a)
Output: 2
54. Pseudocode:
bash
Copy code
n = 5
count = 0
while n > 0:
count = count + n
n = n – 1
print(count)
1. Pseudocode:
x = 26
y = 14
result = 0
for i = 0 to 4:
bitX = (x >> i) & 1
bitY = (y >> i) & 1
result = result | ((bitX & bitY) << i)
print(result)
Output: 10
2. Pseudocode:
x = 13 # 01101 in binary
y = 21 # 10101 in binary
z = 17 # 10001 in binary
result = (x & y) | (~z)
print(result)
Output: -17
3. Pseudocode:
x = 15 # 01111 in binary
for i = 1 to 4:
x = x ^ (1 << i)
print(x)
Output: 17
4. Pseudocode:
x = 29 # 11101 in binary
y = 15 # 01111 in binary
count = 0
for i = 0 to 4:
bitX = (x >> i) & 1
bitY = (y >> i) & 1
if bitX != bitY:
count = count + 1
print(count)
Output: 2
5. Pseudocode:
a = 45 # 101101 in binary
b = 25 # 011001 in binary
result = 0
for i = 0 to 5:
bitA = (a >> i) & 1
bitB = (b >> i) & 1
result = result | ((bitA | bitB) << i)
print(result)
Output: 61
6. Pseudocode:
x = 18 # 10010 in binary
y = 22 # 10110 in binary
z = 27 # 11011 in binary
result = (x ^ y) & z
print(result)
Output: 0
7. Pseudocode:
x = 23 # 10111 in binary
y = 54 # 110110 in binary
result = 0
for i = 0 to 5:
bitX = (x >> i) & 1
bitY = (y >> i) & 1
if bitX == bitY:
result = result | (1 << i)
print(result)
Output: 30
8. Pseudocode:
x = 63 # 111111 in binary
y = 28 # 011100 in binary
result = ~((x & y) | (~x))
print(result)
Output: 35
9. Pseudocode:
x = 15 # 01111 in binary
y = 32 # 100000 in binary
result = 0
for i = 0 to 5:
if ((x >> i) & 1) == 1:
result = result | (1 << i)
else:
result = result | ((y >> i) & 1)
print(result)
Output: 15
10. Pseudocode:
x = 35 # 100011 in binary
y = 12 # 01100 in binary
for i = 0 to 4:
if ((x >> i) & 1) == 1:
x = x ^ (y << i)
print(x)
Output: 7
11. Pseudocode:
a = 19 # 10011 in binary
b = 28 # 11100 in binary
c = 14 # 01110 in binary
result = (a | b) & (~c)
print(result)
Output: 17
12. Pseudocode:
x = 53 # 110101 in binary
y = 47 # 101111 in binary
z = 15 # 01111 in binary
result = (x & ~y) ^ z
print(result)
Output: 31
13. Pseudocode:
x = 21 # 10101 in binary
y = 10 # 01010 in binary
z = 17 # 10001 in binary
result = ((x & y) | z) ^ (~x)
print(result)
Output: -5
14. Pseudocode:
x = 9 # 01001 in binary
y = 17 # 10001 in binary
result = 0
for i = 0 to 4:
bitX = (x >> i) & 1
bitY = (y >> i) & 1
result = result | ((bitX | bitY) << i)
print(result)
Output: 25
15. Pseudocode:
x = 22 # 10110 in binary
y = 27 # 11011 in binary
z = 31 # 11111 in binary
result = (x & y) | (~z)
print(result)
Output: -14
16. Pseudocode:
x = 17 # 10001 in binary
y = 6 # 00110 in binary
result = 0
for i = 0 to 4:
bitX = (x >> i) & 1
bitY = (y >> i) & 1
result = result | ((bitX ^ bitY) << i)
print(result)
Output: 23
17. Pseudocode:
a = 19 # 10011 in binary
b = 33 # 100001 in binary
c = 47 # 101111 in binary
result = ((a | b) & c) ^ (~a)
print(result)
Output: -49
18. Pseudocode:
x = 39 # 100111 in binary
y = 55 # 110111 in binary
z = 31 # 11111 in binary
result = (x & ~y) | z
print(result)
Output: 31
19. Pseudocode:
x = 5 # 00101 in binary
y = 9 # 01001 in binary
result = 0
for i = 0 to 4:
bitX = (x >> i) & 1
bitY = (y >> i) & 1
result = result | ((bitX & bitY) << i)
print(result)
Output: 1
20. Pseudocode:
x = 43 # 101011 in binary
y = 28 # 011100 in binary
result = (~(x & y)) | (x ^ y)
print(result)
Output: -9
21. Pseudocode:
a = 60 # 111100 in binary
b = 13 # 01101 in binary
result = 0
for i = 0 to 5:
if ((a >> i) & 1) == 1:
result = result | (1 << i)
else:
result = result | ((b >> i) & 1)
print(result)
Output: 61
22. Pseudocode:
x = 47 # 101111 in binary
y = 18 # 10010 in binary
z = 29 # 11101 in binary
result = ((x & y) ^ z) & (~x)
print(result)
Output: 16
23. Pseudocode:
x = 26 # 11010 in binary
y = 43 # 101011 in binary
result = (x ^ ~y) & (x | y)
print(result)
Output: 10
24. Pseudocode:
a = 14 # 01110 in binary
b = 19 # 10011 in binary
c = 23 # 10111 in binary
result = (a & ~b) | (c & b)
print(result)
Output: 31
25. Pseudocode:
x = 31 # 11111 in binary
y = 45 # 101101 in binary
z = 53 # 110101 in binary
result = ((x ^ y) & z) | (~x)
print(result)
Output: -16
26. Pseudocode:
x = 13 # 01101 in binary
y = 27 # 11011 in binary
z = 15 # 01111 in binary
result = (~(x & y) | z) & (x | ~z)
print(result)
Output: -3
27. Pseudocode:
a = 9 # 01001 in binary
b = 14 # 01110 in binary
c = 17 # 10001 in binary
result = 0
for i = 0 to 4:
bitA = (a >> i) & 1
bitB = (b >> i) & 1
bitC = (c >> i) & 1
result = result | (((bitA & bitB) | bitC) << i)
print(result)
Output: 25
28. Pseudocode:
x = 7 # 00111 in binary
y = 28 # 11100 in binary
z = 5 # 00101 in binary
result = ((x & y) ^ (~z)) | (y & z)
print(result)
Output: -2
29. Pseudocode:
a = 11 # 01011 in binary
b = 19 # 10011 in binary
c = 21 # 10101 in binary
result = (a & ~b) ^ (b | c)
print(result)
Output: 31
30. Pseudocode:
x = 34 # 100010 in binary
y = 45 # 101101 in binary
result = 0
for i = 0 to 5:
bitX = (x >> i) & 1
bitY = (y >> i) & 1
if bitX == 1 and bitY == 1:
result = result | (1 << i)
print(result)
Output:32
Name | Department | Attempts | MCQ Marks | Coding Marks | Total Marks(80) | |
Admin | ag.nawfal619@gmail.com | CSE1 | 6 | 0 | 0 | 0 |
Admin | admin@evorieainfotechpvtltd.com | CSE1 | 0 | 0 | 0 | 0 |
Maheswaran D | 21ec055@psr.edu.in | ECE1 | 1 | 41 | 10 | 51 |
MANOJ E | 21EC057@PSR.EDU.IN | ECE1 | 1 | 43 | 0 | 43 |
Sivakumar K | 21ec089@psr.edu.in | ECE1 | 1 | 27 | 20 | 47 |
Johnson J | johnj092004@gmail.com | ECE1 | 1 | 41 | 0 | 41 |
Veera Vignesh | 21ec108@psr.edu.in | ECE1 | 1 | 46 | 0 | 46 |
Alex christopher J B | 21ec005@psr.edu.in | ECE1 | 0 | 0 | 0 | 0 |
SRIHARAN M | msriharan2003@gmail.com | ECE1 | 1 | 38 | 20 | 58 |
KRISHNAKUMAR M | 21ec047@psr.edu.in | ECE1 | 0 | 0 | 0 | 0 |
sanjai | sanjairajsanjai587@gmail.com | ECE1 | 3 | 0 | 10 | 10 |
Jayasurya K | 21ec031@psr.edu.in | ECE1 | 1 | 17 | 10 | 27 |
jeyasuriya k | jeyasuriya7676@gmail.com | Morning | 0 | 0 | 0 | 0 |
Asvini G | 21ec012@psr.edu.in | ECE1 | 1 | 44 | 0 | 44 |
Benazeer Fathima M | 21ec016@psr.edu.in | ECE1 | 1 | 40 | 20 | 60 |
Nithish kumar | 21ec072@psr.edu.in | ECE1 | 1 | 35 | 0 | 35 |
J.Pavithra | 21ec076@psr.edu.in | ECE1 | 1 | 34 | 0 | 34 |
Rajavarshini | 21ec079@psr.edu.in | ECE1 | 1 | 33 | 0 | 33 |
L.Mohanapriya | 21ec065@psr.edu.in | ECE1 | 1 | 42 | 0 | 42 |
Deepa | deepa652003@gmail.com | ECE1 | 1 | 34 | 0 | 34 |
Thirumala | thirumala0312@gmail.com | ECE1 | 2 | 44 | 0 | 44 |
Venisuvetha A | venisuvetha@gmail.com | ECE1 | 2 | 45 | 0 | 45 |
Hemanth A | srigowtham1415@gmail.com | ECE1 | 1 | 49 | 0 | 49 |
Saran | 21ec083@psr.edu.in | ECE1 | 1 | 45 | 0 | 45 |
Durga Devi S | 21ec021@psr.edu.in | ECE1 | 1 | 41 | 0 | 41 |
Narmatha B | 21ec070@psr.edu.in | ECE1 | 1 | 47 | 0 | 47 |
Sriram Babu T | 21cs106@psr.edu.in | CSE2 | 0 | 0 | 0 | 0 |
Ashokkumar.S | 21CS017@psr.edu.in | CSE1 | 0 | 0 | 0 | 0 |
Sridhar Perumal M | 21ec094@psr.edu.in | ECE1 | 2 | 23 | 0 | 23 |
Parveenkumar M | 21ec075@psr.edu.in | ECE1 | 1 | 37 | 0 | 37 |
Revathi Vengatasamy | 21cs088@psr.edu.in | CSE2 | 0 | 0 | 0 | 0 |
Balasubramanian s | bala.psr.2022@gmail.com | CSE1 | 0 | 0 | 0 | 0 |
shiyamala | shiyamala0606@gmail.com | CSE1 | 1 | 42 | 20 | 62 |
Rajeswari K | rajii205125@gmail.com | CSE1 | 2 | 47 | 20 | 67 |
Ashokkumar S | ronalashok2004@gmail.com | CSE1 | 1 | 33 | 10 | 43 |
Balajothi K | kbalajothi644@gmail.com | CSE1 | 1 | 32 | 0 | 32 |
Sathyavathi S | 21ec085@psr.edu.in | ECE1 | 1 | 55 | 0 | 55 |
Rajesh K | diocrazy95@gmail.com | CSE1 | 3 | 0 | 10 | 10 |
Jothika R | jothikajothika170@gmail.com | CSE1 | 1 | 32 | 10 | 42 |
Ashwin T | ashwin979149@gmail.com | CSE1 | 3 | 30 | 20 | 50 |
Gokul R | rgokul3112@gmail.com | CSE1 | 1 | 38 | 20 | 58 |
NANDHINI M | nanthininanthini708@gmail.com | CSE1 | 1 | 53 | 20 | 73 |
Muthumuni S | muthumuni2003@gmail.com | CSE1 | 1 | 45 | 20 | 65 |
Nivetha R | rnivetha003@gmail.com | CSE1 | 1 | 45 | 20 | 65 |
Harikrishnan T | harikrishnan73832@gmail.com | CSE1 | 3 | 34 | 0 | 34 |
Amutha | amuthavenkat178@gmail.com | CSE1 | 1 | 48 | 20 | 68 |
M. Loga Parvatha Rajakumari | arasasuthamathi@gmail.com | CSE1 | 1 | 49 | 20 | 69 |
Arul Chelliah | arul123an@gmail.com | CSE1 | 0 | 0 | 0 | 0 |
Vignesh Abranantham T | vigneshabranantham@gmail.com | CSE1 | 2 | 40 | 10 | 50 |
Mohanraj M | mohanrj7904@gmail.com | CSE2 | 1 | 52 | 20 | 72 |
Mathumitha T | thiruppathimathu2004@gmail.com | CSE1 | 1 | 46 | 0 | 46 |
Nihariha K | 21cs072@psr.edu.in | CSE2 | 0 | 0 | 0 | 0 |
Akash L | akashlakshmanan1304@gmail.com | CSE1 | 2 | 47 | 20 | 67 |
Indhumathi M | indhumathi.mm212004@gmail.com | CSE1 | 1 | 38 | 20 | 58 |
Sriram Babu T | srisreerambabu03@gmail.com | CSE2 | 1 | 54 | 20 | 74 |
Latha Rishi Mathi S | rishimathi1210@gmail.com | CSE1 | 1 | 57 | 0 | 57 |
S SHAHANA | 21cs098@psr.edu.in | CSE2 | 0 | 0 | 0 | 0 |
Syed Mohammed Safi | 21cs111@psr.edu.in | CSE2 | 1 | 54 | 10 | 64 |
Archana S | 21cs014@psr.edu.in | CSE2 | 1 | 35 | 10 | 45 |
Madhumathi | rmadhuvenus@gmail.com | CSE1 | 1 | 49 | 0 | 49 |
Suvalakshmi M | subaavm2020@gmail.com | CSE1 | 1 | 42 | 0 | 42 |
Priyadharshini R | priyadhrashini1403@gmail.com | CSE1 | 2 | 50 | 20 | 70 |
Sriwaugh | 21cs103@psr.edu.in | CSE2 | 0 | 0 | 0 | 0 |
Dhivya Sri P | 21cs027@psr.edu.in | CSE2 | 0 | 0 | 0 | 0 |
Gowsalya P | gowsalya30032004@gmail.com | CSE1 | 1 | 37 | 20 | 57 |
Thilagavathi D | thilaga04112003@gmail.com | CSE2 | 1 | 39 | 10 | 49 |
Manasha G | minshooky136@gmail.com | CSE1 | 1 | 51 | 20 | 71 |
Abinesh S | 21cs003@psr.edu.in | CSE2 | 0 | 0 | 0 | 0 |
Sadhiesh Krishnan | satheshkrishnan53565@gmail.com | CSE1 | 0 | 0 | 0 | 0 |
sneka | sinegagomathi03@gmail.com | CSE1 | 1 | 34 | 20 | 54 |
AJITHKUMAR M | ajithapple13@gmail.com | CSE1 | 2 | 36 | 10 | 46 |
Afrin Aysha H | hfafrin2003@gmail.com | CSE1 | 0 | 0 | 0 | 0 |
Malesh Kumar V | 21CS053@psr.edu.in | CSE2 | 0 | 0 | 0 | 0 |
Raabiyathul Misria R | raabiyathulmisria2004@gmail.com | CSE2 | 1 | 51 | 20 | 71 |
Siva Sakthi M | sakthi09msv@gmail.com | CSE2 | 1 | 37 | 10 | 47 |
Sriwaugh S | sriwaugh0987@gmail.com | CSE2 | 2 | 39 | 20 | 59 |
RABIN M | mrabinma11022004@gmail.com | CSE2 | 0 | 0 | 0 | 0 |
Nova S | jegannova2174@gmail.com | CSE2 | 0 | 0 | 0 | 0 |
Lavanya V | lavanyavv03@gmail.com | CSE2 | 1 | 49 | 0 | 49 |
VARSHA S | varshasubbu1709@gmail.com | CSE2 | 2 | 21 | 0 | 21 |
Vijayasri R | srivijaya798@gmail.com | ECE1 | 1 | 38 | 20 | 58 |
Srikanth R | srikanthrajan003@gmil.com | CSE2 | 0 | 0 | 0 | 0 |
Aishwarya S | aishwaryaa2105@gmail.com | CSE1 | 1 | 44 | 20 | 64 |
Lakshmana Pandian P | lakshmanapandian777@gmail.com | CSE1 | 0 | 0 | 0 | 0 |
Dharshini | dharshinibalamurugan934@gmail.com | CSE2 | 0 | 0 | 0 | 0 |
Abinaya A | abiananthi66@gmail.com | CSE2 | 0 | 0 | 0 | 0 |
Jusvanthraja J | jusvanth175@gmail.com | CSE2 | 1 | 48 | 20 | 68 |
Amirthaa.M | mamirtha2002@gmail.com | CSE2 | 1 | 32 | 0 | 32 |
Abinesh S | abiselva254@gmail.com | CSE2 | 0 | 0 | 0 | 0 |
Revathi Vengatasamy | csrevathiv@gmail.com | CSE2 | 1 | 40 | 0 | 40 |
Sudha S | sudhaganesan2003@gmail.com | CSE2 | 1 | 0 | 0 | 0 |
Sattanathan P | sattanathanpalanivel@gmail.com | CSE2 | 2 | 0 | 0 | 0 |
S SHAHANA | shahana87780@gmail.com | CSE2 | 1 | 40 | 0 | 40 |
NANDHINI R | csnandhinir@gmail.com | CSE2 | 1 | 0 | 10 | 10 |
A.Deepa Lakshmi | dd0426600@gmail.com | CSE2 | 2 | 0 | 10 | 10 |
Nagajothi R | jothir239@gmail.com | CSE2 | 1 | 45 | 10 | 55 |
Dhivya Sri P | dhivyasrisamy28@gmail.com | CSE2 | 0 | 0 | 0 | 0 |
Nihariha K | nihariha1824@gmail.com | CSE2 | 1 | 0 | 0 | 0 |
J Mary Nivetha | jmarynivetha24@gmail.com | CSE1 | 1 | 45 | 20 | 65 |
Vijaya Bala V | 21ec115@psr.edu.in | ECE1 | 1 | 45 | 0 | 45 |
S Archana | archanashanmugavel5@gmail.com | CSE2 | 0 | 0 | 0 | 0 |
Siva Sankari R | 21ec088@psr.edu.in | ECE1 | 1 | 15 | 0 | 15 |
Ashokkumar C | 21ec011@psr.edu.in | ECE1 | 1 | 28 | 10 | 38 |
Balavignesh K | 21ec015@psr.edu.in | ECE2 | 1 | 40 | 0 | 40 |
Mohamed saalik | 21ec064@psr.edu.in | ECE1 | 1 | 40 | 10 | 50 |
Dharani V | edharaniv@gmail.com | ECE2 | 0 | 0 | 0 | 0 |
Rishikumar | 21ec081@psr.edu.in | ECE1 | 1 | 42 | 0 | 42 |
Metha Manaswini B | methamanaswini@gmail.com | CSE2 | 1 | 39 | 0 | 39 |
Vinoth Kumar.G | 21ec120@psr.edu.in | ECE1 | 1 | 27 | 0 | 27 |
Keerthika | 21ec045@psr.edu.in | ECE2 | 2 | 32 | 0 | 32 |
Sathya | 21ec084@psr.edu.in | ECE1 | 0 | 0 | 0 | 0 |
Nagendhiran.M | 21ec069@psr.edu.in | ECE1 | 1 | 52 | 0 | 52 |
Mahesh R | 21ec053@psr.edu.in | ECE1 | 1 | 28 | 0 | 28 |
JEYA KRISHNAN R | 21ec036@psr.edu.in | ECE2 | 2 | 47 | 10 | 57 |
Subramani k | subramani20040104@gmail.com | ECE1 | 0 | 0 | 0 | 0 |
Antony vasanth J | antonyvasanth3092@gmail.com | ECE2 | 1 | 37 | 0 | 37 |
Rajkumar V | rajkumarcse18@gmail.com | CSE2 | 1 | 54 | 10 | 64 |
Malesh Kumar V | maleshkumar0707@gmail.com | CSE2 | 1 | 36 | 20 | 56 |
Jeyasudha K | jeyasudha424321@gmail.com | CSE1 | 0 | 0 | 0 | 0 |
Arun kumar D | 21ec009@psr.edu.in | ECE1 | 1 | 49 | 0 | 49 |
Haritha M | mharitha2604@gmail.com | Morning | 2 | 0 | 20 | 20 |
RABIN M | mrabin11022004@gmail.com | CSE2 | 0 | 0 | 0 | 0 |
Meena M | 21ec062@psr.edu.in | ECE1 | 2 | 29 | 0 | 29 |
Suriyakumar V | 21ec100@psr.edu.in | ECE1 | 0 | 0 | 0 | 0 |
Malathi K | 21ec056@psr.edu.in | ECE2 | 1 | 27 | 0 | 27 |
Deepshiha Narayan | deepshiha2021@gmail.com | CSE1 | 1 | 45 | 20 | 65 |
Narmatha M | 2003narmatham@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Roshan | sparklestar2504@gmail.com | CSE2 | 0 | 0 | 0 | 0 |
Abirami.K | krishnamoorthyabirami27@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Anantha priya | ananthapriya855@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
A. Vadivel narayanan | 21ec105@psr.edu.in | ECE1 | 1 | 21 | 0 | 21 |
kartheeswaran k | keswaran186@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Mergelin | nmegelin@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Syed Mohammed Safi | safi22052004@gmail.com | CSE2 | 0 | 0 | 0 | 0 |
Venkateshwaran m | 21ec111@psr.edu.in | ECE1 | 1 | 41 | 0 | 41 |
KRISHNAKUMAR M | krishna742004@gmail.com | ECE1 | 1 | 36 | 10 | 46 |
Gokul S | psrgokul238@gmail.com | CSE2 | 1 | 46 | 0 | 46 |
Indhumathi M | indhumathimariyappan21@gmail.com | CSE1 | 0 | 0 | 0 | 0 |
RAMAR V | ramramar27022004@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Akshayamirtha S | 21ec004@psr.edu.in | ECE2 | 1 | 44 | 0 | 44 |
surendhar ji.B | 21ec098@psr.edu.in | ECE1 | 1 | 40 | 0 | 40 |
Sathya | rockingsathya2@gmail.com | ECE1 | 0 | 0 | 0 | 0 |
G.Nanthini | gurunandhini28@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Dharani V | 21ec019@psr.edu.in | ECE2 | 1 | 34 | 10 | 44 |
Sheereen Fathima | shereen.fathima03@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Ajay R | 21ec003@psr.edu.in | 0 | 0 | 0 | 0 | |
P MUTHU KANNAN | muthukannan883@gmail.com | CSE1 | 3 | 35 | 0 | 35 |
MUKESHKANNA | saimukeshkannadr21@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Mohit S | 21ee032@psr.edu.in | BIOEEE | 1 | 35 | 0 | 35 |
Dhars | sudhabalakvp@gmail.com | CSE2 | 1 | 0 | 0 | 0 |
MATHEW ABISHAK | mathew2001hero@gmail.com | CSE1 | 1 | 71 | 0 | 71 |
A. Vadivel narayanan | vadivelarumugam95@gmail.com | ECE1 | 0 | 0 | 0 | 0 |
Angala Eswari B | 21EC006@psr.edu.in | ECE1 | 1 | 35 | 0 | 35 |
PALANI KUMAR | karthipmk998@gmail.com | CSE2 | 0 | 0 | 0 | 0 |
Krishnamoorthy M | krishnamoorthym2003@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
GNANAJOTHI G | 21ec022@psr.edu.in | ECE1 | 1 | 43 | 0 | 43 |
Mukesh S | 21ec066@psr.edu.in | ECE1 | 1 | 37 | 0 | 37 |
Subramani k | subramani2004k@gmail.com | ECE1 | 0 | 0 | 0 | 0 |
Madhavan S | 21ec050@psr.edu.in | ECE2 | 2 | 57 | 0 | 57 |
Daniel Prince D | d.danielprince2003@gmail.com | CSE1 | 1 | 56 | 20 | 76 |
CHANDRABOSE G | bossc0724@gmail.com | CSE1 | 0 | 0 | 0 | 0 |
Ragu sanjai R | 21CS082@psr.edu.in | CSE2 | 1 | 39 | 20 | 59 |
DHULA S | 21ec020@psr.edu.in | Morning | 0 | 0 | 0 | 0 |
Srikanth R | srikanthrajan003@gmail.com | CSE2 | 3 | 0 | 20 | 20 |
Kiruthick Balu K | 21bt010@psr.edu.in | BIOEEE | 0 | 0 | 0 | 0 |
Suvaraj | 21ec101@psr.edu.in | ECE2 | 1 | 30 | 0 | 30 |
Sathya | sathyaanand084@gmail.com | ECE1 | 0 | 0 | 0 | 0 |
Kaleeswaran S | Kaleeswaran722004@gmail.com | CSE1 | 3 | 41 | 0 | 41 |
JanakiramB | 21ec030@psr.edu.in | ECE2 | 1 | 33 | 0 | 33 |
Ponnukutti K | ponnukutti52@gmail.com | CSE2 | 2 | 43 | 10 | 53 |
Sameem Ahamed M I | ahamedsameem66@gmail.com | CSE2 | 1 | 36 | 10 | 46 |
Jinosan k | praveenjinosan@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Aravinth B | aravind242003@gmail.com | CSE1 | 2 | 0 | 10 | 10 |
Parameshwaran | Parameshwaran310@gmail.com | CSE2 | 0 | 0 | 0 | 0 |
Shenbagaraj k | shenbagarajbm@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Eric Micheal A | ericmichealantony@gmail.com | CSE1 | 1 | 47 | 20 | 67 |
Joshin singh | joshinsingh8733@gmail.com | CSE2 | 1 | 42 | 0 | 42 |
Naveen Kumar | 21ec071@psr.edu.in | ECE2 | 1 | 46 | 0 | 46 |
karthikeyan P | karthikeyan4112004@gmail.com | 0 | 0 | 0 | 0 | |
Somu Raj | somuraj388@gmail.com | CSE2 | 3 | 19 | 0 | 19 |
Naresh | rn86615@gmail.com | CSE2 | 1 | 36 | 0 | 36 |
Thabeeba | thabeebabme03@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
yogalakshmi | yogabm051@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Sakthivelmari A | sakthivelmari2021@gmail.com | CSE2 | 0 | 0 | 0 | 0 |
Dhayanithi K | 21bm010@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
solaikannan A | 21ec092@psr.edu.in | ECE2 | 1 | 26 | 10 | 36 |
Mugesh V | mugeshv33@gmail.com | CSE2 | 1 | 45 | 20 | 65 |
CHANDRABOSE G | gchandrabose10@gmail.com | CSE1 | 1 | 45 | 20 | 65 |
Murugananth | murugananth2003@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Rakesh Krishna | rakeshsark007@gmail.com | CSE1 | 0 | 53 | 20 | 73 |
Deepesh kumar | deepeshkumar.p2004@gmail.com | CSE1 | 1 | 46 | 20 | 66 |
Karthikeyan B | karthikn20042023@gmail.com | CSE1 | 0 | 0 | 0 | 0 |
Abivarshan | abivarshank@gmail.com | CSE1 | 1 | 31 | 0 | 31 |
Thanga Nithan Prabhu | nithanprabhu158@gmail.com | CSE1 | 1 | 54 | 0 | 54 |
Mergelin | 21ee031@psr.edu.in | BIOEEE | 0 | 0 | 0 | 0 |
Praveen raj | praveenraj18022004@gmail.com | CSE2 | 1 | 35 | 0 | 35 |
Inbaraj M | inbarajeee2003@gmail.com | BIOEEE | 1 | 47 | 0 | 47 |
Thilagaraj.M | thilagarajeee2003@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
gayathri | gayathrigayathri88350@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Aadhavan S | aadhavan2906@gmail.com | CSE1 | 1 | 36 | 10 | 46 |
Ariharan | ariharangm7@gmail.com | CSE2 | 2 | 0 | 0 | 0 |
Yogesh Kannan | ykblissfull@gmail.com | CSE1 | 3 | 40 | 0 | 40 |
PRAKASH RAJ P | prakash7jar@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Rajamuniyandi M | rajamuniya43@gmail.com | CSE2 | 1 | 36 | 20 | 56 |
Rajapandi B | 21cs084@psr.edu.in | CSE2 | 1 | 46 | 0 | 46 |
Aravinth B | massaravind248@gmail.com | CSE1 | 0 | 0 | 0 | 0 |
Malesh Kumar V | maleshkumar0928@gmail.com | CSE2 | 0 | 0 | 0 | 0 |
Kirthick Sakthi V | kirthickprince@gmail.com | CSE2 | 1 | 53 | 10 | 63 |
Muthuraja | muthurajakm162@gmail.com | CSE1 | 0 | 0 | 0 | 0 |
Raja Sekar S | 21ec078@psr.edu.in | ECE2 | 0 | 0 | 0 | 0 |
Jayasri R | jayasri2540@gmail.com | ECE2 | 1 | 38 | 0 | 38 |
Sailaesh A | plptsailaesh@gmail.com | ECE2 | 1 | 36 | 0 | 36 |
Manokar.M | mano37072@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Sivakumar | 9597siva@gmail.com | CSE2 | 2 | 0 | 0 | 0 |
Muthu Saravanan M | sachinsaravana1427@gmail.com | CSE2 | 1 | 28 | 0 | 28 |
Naren Karthik.s | manjulanarenkarthik@gmail.com | CSE2 | 1 | 43 | 0 | 43 |
Yuvaraja | yuvarajanarayanan33@gmail.com | CSE2 | 1 | 43 | 10 | 53 |
Sangili Arumugam E | sangiliarumugam2003@gmail.com | CSE2 | 0 | 0 | 0 | 0 |
R.VENKATESH | 21ec110@psr.edu.in | 0 | 0 | 0 | 0 | |
Saravanan | saravananbala410@gmail.com | CSE1 | 0 | 0 | 0 | 0 |
Suresh Kumar M | suresh9952582603@gmail.com | CSE2 | 0 | 0 | 0 | 0 |
Jeyasuriya k | jeyasuriya3545@gmail.com | CSE1 | 3 | 43 | 0 | 43 |
Gokulraj A | gokulrajlab32@gmail.com | CSE1 | 1 | 47 | 0 | 47 |
MANOJKUMAR K | manojkandasamy26@gmail.com | CSE1 | 0 | 0 | 0 | 0 |
Vijayalakshmi A | 21ec116@psr.edu.in | ECE2 | 1 | 45 | 0 | 45 |
Karthikeyan B | keyan4305@gmail.com | CSE1 | 1 | 51 | 20 | 71 |
Dhulasi Kumar A | dhulasikumar2930@gmail.com | CSE1 | 0 | 0 | 0 | 0 |
AZHAGIRIRAJAN R | 21ee010@psr.edu.in | BIOEEE | 0 | 0 | 0 | 0 |
Manikandan L | manikandanmk7305@gmail.com | CSE1 | 1 | 43 | 20 | 63 |
Abivarshan | abibro553@gmail.com | CSE1 | 0 | 0 | 0 | 0 |
Sangili Arumugam E | sangili2025g@gmail.com | CSE2 | 0 | 0 | 0 | 0 |
RENGARAJAN S | rengasvpr@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
N.Nikila | nikila2710@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Thiyagarajan | thiyagarajan93333@gmail.com | CSE2 | 2 | 32 | 0 | 32 |
Aadhavan | 21CS001@psr.edu.in | CSE1 | 0 | 0 | 0 | 0 |
Sailaesh A | 22lec06@psr.edu.in | ECE2 | 0 | 0 | 0 | 0 |
Ulagammalabinaya M | ulagammalm820@gmail.com | ECE2 | 1 | 32 | 0 | 32 |
Ram Kumar M | 21bm033@psr.edu.in | BIOEEE | 0 | 0 | 0 | 0 |
Mathana Ganeshan T | 21ec061@psr.edu.in | ECE2 | 2 | 14 | 10 | 24 |
Ilakkiya G | Ilakkiyamahes7@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Tamilarasi M | tamilarasibe2004@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Amreetha | amreetha2002v@gmail.com | BIOEEE | 1 | 51 | 0 | 51 |
Vishnu J | 2002vishnu2111@gmail.com | ECE2 | 0 | 0 | 0 | 0 |
D.Nandhini | nanthunandhu44@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Paramashwari | paramu2710@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Dhayanithi K | 21bm010@psr.edu.in | BIOEEE | 0 | 0 | 0 | 0 |
Anandharaj A | anandhalagarcse@gmail.com | CSE2 | 1 | 44 | 0 | 44 |
Yasmin Fathima | fathimayasmin37@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Kathirvel | kathirvels4238@gmail.com | CSE2 | 2 | 38 | 0 | 38 |
Palaniammal S | 22lec04@psr.edu.in | ECE2 | 1 | 21 | 0 | 21 |
SARAVANA SELVAM M | saravanaselvam2004@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Amirthalakshmi A | amirthaannasamy@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Jayasri R | 21ec034@psr.edu.in | ECE2 | 0 | 0 | 0 | 0 |
Dhayanithi K | dhayancpt111@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
venisha M | venishamcs@gmail.com | CSE2 | 1 | 0 | 0 | 0 |
Subramani k | subrama456@gmail.com | ECE1 | 1 | 33 | 0 | 33 |
G.Veeragopal | 21ec106@psr.edu.in | ECE2 | 1 | 29 | 10 | 39 |
Haridass T | 21ec026@psr.edu.in | ECE1 | 1 | 47 | 0 | 47 |
VETRIVEL M | vetrivelswaminathan2@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
PERIYAKALIYAPPAN | vighneshpk031@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
VIMAL G | 21EC118@psr.edu.in | ECE2 | 1 | 32 | 0 | 32 |
Pothiraj K | 21ec077@psr.edu.in | ECE2 | 2 | 35 | 0 | 35 |
Krishnakumar M | 21ec048@psr.edu.in | ECE2 | 1 | 36 | 0 | 36 |
ANGELSAHAYAM B | angelbillu2004@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Karthikeyan S | 21ec042@psr.edu.in | ECE2 | 2 | 22 | 0 | 22 |
Jayaram B | 21ec032@psr.edu.in | ECE2 | 4 | 0 | 0 | 0 |
S,M.Subramania kumar | manikumar22489@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Sakthivel | sakthivelrammohan@gmail.com | CSE2 | 0 | 0 | 0 | 0 |
Prakash | balanmuthuprakash@gamil.com | CSE2 | 0 | 0 | 0 | 0 |
Bhuvaneshwari P | bhuvaneshwarip0108@gmail.com | BIOEEE | 1 | 19 | 0 | 19 |
Sangeetha S | ssangeetha1508@gmail.com | CSE2 | 1 | 26 | 0 | 26 |
Swetha G | swethagurusamy10@gmail.com | ECE2 | 1 | 41 | 0 | 41 |
C.Hema navanethem | hemanavaneetham563@gmail.com | ECE2 | 1 | 25 | 0 | 25 |
Vinitha | svinitha2330@gmail.com | ECE2 | 1 | 36 | 0 | 36 |
Baburaj S | babu18052004@gmail.com | ECE2 | 0 | 0 | 0 | 0 |
Justus Ziegenbalg J | jjziegenbalg15@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Rubesha | 21ee043@psr.edu.in | BIOEEE | 0 | 0 | 0 | 0 |
Kavitha M | kavisamy0508@gmail.com | CSE2 | 1 | 27 | 0 | 27 |
vigneshkumar s | vigneshkumar8902@gmail.com | 0 | 0 | 0 | 0 | |
Arun kumar S | 21ec010@psr.edu.in | ECE2 | 1 | 23 | 20 | 43 |
KALIRAJ R | 21ee021@psr.edu.in | BIOEEE | 0 | 0 | 0 | 0 |
R.VENKATESH | venkatesh8270295900@gmail.com | ECE2 | 0 | 23 | 0 | 23 |
C.Hema navanethem | 21ec028@psr.edu.in | ECE2 | 0 | 0 | 0 | 0 |
Abinayasundari | abinayasundari2004@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
ANGELSAHAYAM B | 21BM005@psr.edu.in | BIOEEE | 0 | 0 | 0 | 0 |
G. Vignesh | g.vignesh03122000@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
vishnu j | 22LEC10@psr.edu.in | ECE2 | 1 | 35 | 0 | 35 |
divyaeswari | 22lec01@psr.edu.in | ECE2 | 0 | 32 | 0 | 32 |
S.SORNAMALYA | selvampriya8778920@gmail.com | 0 | 0 | 0 | 0 | |
Harshitha S | harsitha822@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Dharshini | dharshinishankar05@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
GNANASUBRAMANIYAM | gnanasubramani423@gmail.com | ECE2 | 0 | 0 | 0 | 0 |
Gowtham M | 21ec025@psr.edu.in | ECE2 | 1 | 24 | 0 | 24 |
Rahul | 21ee040@psr.edu.in | BIOEEE | 0 | 0 | 0 | 0 |
kishore kumar A | 21ec046@psr.edu.in | ECE2 | 1 | 37 | 0 | 37 |
JanakiramB | bjanakiram723@gmail.com | ECE2 | 0 | 0 | 0 | 0 |
Jayaganesan J | 21ee016@psr.edu.in | BIOEEE | 0 | 0 | 0 | 0 |
Chandru G | 21ec017@psr.edu.in | ECE2 | 1 | 21 | 10 | 31 |
Abivarshan | lakshpandya027@gmail.com | CSE1 | 0 | 0 | 0 | 0 |
JEYABALAJI L | 21ec037@psr.edu.in | ECE2 | 1 | 27 | 10 | 37 |
Sugantha | ssugantha43@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Prakash | balanmuthuprakash@gmail.com | CSE2 | 0 | 0 | 0 | 0 |
Ramkumar | rram06432@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
ANGELSAHAYAM B | mbilavendran29@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Maharaja k | mahakingmahaking2oo4@gmail.com | BIOEEE | 1 | 28 | 0 | 28 |
Arunprakash J | arunpraksh0403@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Ramamoorthi | ramamoorthikarunanithi586@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
karthikeyan P | karthikey4112004@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Muthu Divya Lakshmi M | 21ec68@psr.edu.in | ECE2 | 0 | 0 | 0 | 0 |
Muthu Divya Lakshmi M | divipavi0620@gmail.com | ECE2 | 3 | 33 | 0 | 33 |
Vignesh J | 21ec112@psr.edu.in | ECE2 | 1 | 45 | 0 | 45 |
Madhavan | Mad636985@gmail.com | BIOEEE | 2 | 21 | 0 | 21 |
Nithyasri A | 21ec073@psr.edu.in | ECE1 | 1 | 44 | 0 | 44 |
Raabiyathul Misria R | raabiyathulmisria1604@gmail.com | CSE2 | 0 | 0 | 0 | 0 |
Merlin Esther I | merlinesther115@gmail.com | ECE1 | 0 | 0 | 0 | 0 |
Renuka Devi s | renukaseenivasan1103@gmail.com | ECE1 | 0 | 0 | 0 | 0 |
Shanmugapriya M | shanmugapriya28504@gmail.com | ECE2 | 1 | 32 | 0 | 32 |
Rathika | 21ec080@psr.edu.in | ECE2 | 1 | 25 | 0 | 25 |
Sudha SA | sudhasaran2002@gmail.com | ECE2 | 0 | 0 | 0 | 0 |
Sudha SA | 21ec096@psr.edu.in | ECE2 | 1 | 51 | 0 | 51 |
Nova | 21cs074@psr.edu.in | CSE2 | 0 | 0 | 0 | 0 |
Nagarajan | 21ee035@psr.edu.in | BIOEEE | 0 | 0 | 0 | 0 |
Mohamedsaalik | mohamedsaalikece@gmail.com | ECE1 | 0 | 0 | 0 | 0 |
Nagarajan | nagarajanbalamurugan6380@gmail.com | BIOEEE | 1 | 41 | 0 | 41 |
shiyamala | shiyamala2912@gmail.com | CSE1 | 0 | 0 | 0 | 0 |
shiyamala | shiyamala2912@gmail.com | CSE1 | 0 | 0 | 0 | 0 |
Abinaya A | 21cs002@psr.edu.in | CSE2 | 1 | 31 | 0 | 31 |
Harikrishnan T | 21CS034@psr.edu.in | CSE1 | 0 | 0 | 0 | 0 |
roshan | 21cs089@psr.edu.in | CSE2 | 1 | 34 | 0 | 34 |
Pandiaraj S | 21ec074@psr.edu.in | ECE1 | 1 | 41 | 0 | 41 |
naresh | 21CS070@psr.edu.in | CSE2 | 0 | 0 | 0 | 0 |
Kannan | 21cs042@psr.edu.in | CSE2 | 0 | 0 | 0 | 0 |
Nova | rajajega00@gmail.com | CSE2 | 2 | 33 | 20 | 53 |
Mariselvam P | 21ec060@psr.edu.in | ECE2 | 1 | 0 | 0 | 0 |
Narayani M | 22lec03@psr.edu.in | ECE2 | 1 | 46 | 0 | 46 |
harish | 21ec027@psr.edu.in | ECE2 | 0 | 0 | 0 | 0 |
sanjay G | sanjay51moorthy@gmail.com | ECE2 | 1 | 24 | 0 | 24 |
harish | harish.m0705@gmail.com | ECE2 | 1 | 31 | 0 | 31 |
NANDHINI R | 21CS068@psr.edu.in | CSE2 | 0 | 0 | 0 | 0 |
Sivasridharan A | 21ec091@psr.edu.in | ECE2 | 1 | 29 | 0 | 29 |
sathya | 21ec084@par.edu.in | ECE1 | 0 | 0 | 0 | 0 |
karthikraja G | 21ec043@psr.edu.in | ECE2 | 0 | 0 | 0 | 0 |
Jeyapriya K | jeyapriyajeyapriya4@gmail.com | ECE2 | 1 | 41 | 10 | 51 |
M.sathya | neverevergaming8@gmail.com | ECE1 | 2 | 0 | 0 | 0 |
ABITHA SHREE K | abithashreekalidass23@gmail.com | ECE1 | 1 | 29 | 0 | 29 |
gnanasubramaniyam | gnanasubramani2345@gmail.com | ECE2 | 1 | 39 | 0 | 39 |
kannan | kkannan95827@gmail.com | CSE2 | 0 | 0 | 0 | 0 |
HARIDASS T | haridass19102003@gmail.com | ECE1 | 0 | 0 | 0 | 0 |
harish | harish.m0706@gmail.com | ECE2 | 0 | 0 | 0 | 0 |
harish | harish.m0707@gmail.com | ECE2 | 0 | 0 | 0 | 0 |
Karthikeyan S | kkeyan4486@gmail.com | ECE2 | 0 | 0 | 0 | 0 |
Karthikeyan S | kkeyan4486@gmail.com | ECE2 | 0 | 0 | 0 | 0 |
harish | klempir0@gmail.com | ECE2 | 0 | 0 | 0 | 0 |
Ajay R | ajayajay8838231339@psr.edu.in | ECE2 | 0 | 0 | 0 | 0 |
SRI JAYA JOTHI M | srijayajothimariappan@gmail.com | PSRR | 0 | 0 | 0 | 0 |
BHANUSRI G | 21ece001@psr.edu.in | PSRR | 0 | 0 | 0 | 0 |
BRINDHA R A | brindhajay2003@gmail.com | PSRR | 0 | 0 | 0 | 0 |
DIVIYA B | bdhiviya653@gmail.com | PSRR | 0 | 0 | 0 | 0 |
Majeetha Banu K.H | 21cse024@psr.edu.in | PSRR | 0 | 0 | 0 | 0 |
SATHYA S | 21cse038*@psr.edu.in | PSRR | 0 | 0 | 0 | 0 |
NANDHINI P | nandhiniperiyanayagam@gmail.com | PSRR | 0 | 0 | 0 | 0 |
PRISHA SIVASANKARI B | prishakavya04@gmail.com | PSRR | 0 | 0 | 0 | 0 |
Karthikeyan S | 21ec042@gmail.com | ECE2 | 0 | 0 | 0 | 0 |
BHANUSRI G | gbsri2004@gmail.com | PSRR | 0 | 0 | 0 | 0 |
NIRMALADEVI K | nirmaladevikannan5@gmail.com | PSRR | 0 | 0 | 0 | 0 |
Divya varshini T | divya.varsh810@gmail.com | PSRR | 0 | 0 | 0 | 0 |
SHIVANI R | 21cse039@psr.edu.in | PSRR | 0 | 0 | 0 | 0 |
vigneshkumar s | vickyviji8902@gmail.com | ECE2 | 1 | 23 | 0 | 23 |
BHAVANI | bhava2025@gmail.com | PSRR | 0 | 0 | 0 | 0 |
MANJULADEVI | 21ece004@psr.edu.in | PSRR | 0 | 0 | 0 | 0 |
DEEPIKA M | 21cse007@psr.edu.in | PSRR | 0 | 0 | 0 | 0 |
GAYATHRI S | 21cse010@psr.edu.in | PSRR | 0 | 0 | 0 | 0 |
ANITHAKUMARI G | 21cse001@psr.edu.in | PSRR | 0 | 0 | 0 | 0 |
K.Shyamala Devi | 21cse040@psr.edu.in | PSRR | 0 | 0 | 0 | 0 |
VIGNESHWARI S | 21cse043@psr.edu.in | PSRR | 0 | 0 | 0 | 0 |
Yuvaraja | thunderjackie07@gmail.com | CSE2 | 0 | 0 | 0 | 0 |
SATHYA S | sathyasolaiyappan222@gmail.com | PSRR | 0 | 0 | 0 | 0 |
Ayesha S | 21cse004@psr.edu.in | PSRR | 0 | 0 | 0 | 0 |
MANJULADEVI | manju1172004@gmail.com | PSRR | 0 | 0 | 0 | 0 |
DEEPA S | 21csee006@psr.edu.in | PSRR | 0 | 0 | 0 | 0 |
Malesh Kumar V | maleshkuar0707@gmail.com | CSE2 | 0 | 0 | 0 | 0 |
JOTHILAKSHMI R | 21cse016@psr.edu.in | PSRR | 0 | 0 | 0 | 0 |
kartheeswaran k | keswaran186@gamil.com | BIOEEE | 0 | 0 | 0 | 0 |
ARUNA DEVI G | 21cse002@psr.edu.in | PSRR | 0 | 0 | 0 | 0 |
kartheeswaran k | 21ee022@psr.edu.in | BIOEEE | 0 | 0 | 0 | 0 |
SNEKA V | 21cse042@psr.edu.in | PSRR | 1 | 0 | 0 | 0 |
RAGAMMAL S | 21cse032@psr.edu.in | PSRR | 0 | 0 | 0 | 0 |
BRINDHA R A | 21ece002@psr.edu.in | PSRR | 0 | 0 | 0 | 0 |
DEEPIKA V | 21cse008@psr.edu.in | PSRR | 0 | 0 | 0 | 0 |
SWETHA G | swethaganesan910@gmail.com | PSRR | 0 | 0 | 0 | 0 |
K.Shyamala Devi | shyamalakannan04@gmail.com | PSRR | 0 | 0 | 0 | 0 |
ANITHAKUMARI G | anithaaakash3@gmaill.com | PSRR | 0 | 0 | 0 | 0 |
ANITHAKUMARI G | ragammalseenivasan@gmail.com | PSRR | 0 | 0 | 0 | 0 |
GURUSATHIYA T | 21cse012@psrr.edu.in | PSRR | 0 | 0 | 0 | 0 |
GURUSATHIYA T | 21gcse012@psrr.edu.in | PSRR | 0 | 0 | 0 | 0 |
GURUSATHIYA T | gurusathiya04@gmail.com | PSRR | 0 | 0 | 0 | 0 |
JEYANTHI V | 21cse015@psr.edu.in | PSRR | 0 | 0 | 0 | 0 |
thangamari | thangamari.94@gmail.com | PSRR | 0 | 0 | 0 | 0 |
Malini | maliniraj563@gmail.com | CSE2 | 0 | 0 | 0 | 0 |
Karuppasamy K | 21ec044@psr.edu.in | ECE1 | 0 | 0 | 0 | 0 |
SATHYA S | sathyapinky2004@gmail.com | PSRR | 0 | 0 | 0 | 0 |
Muthulakshmi M | 21cse027@psr.edu.in | PSRR | 0 | 0 | 0 | 0 |
Muthulakshmi M | 21cse026@psrr.edu.in | PSRR | 0 | 0 | 0 | 0 |
MUTHU CHITRA U.S | muthuchitrau31@gmail.com | PSRR | 0 | 0 | 0 | 0 |
DEEPA | deepa2362004@gmail.com | PSRR | 0 | 0 | 0 | 0 |
DIVIYA B | comedyworld2311@gmail.com | PSRR | 0 | 0 | 0 | 0 |
Maheswaran D | dmaheswaran17112003@gmail.com | ECE1 | 0 | 0 | 0 | 0 |
Maheswaran D | dmaheswarn@gmail.com | ECE1 | 0 | 0 | 0 | 0 |
Kaleeswari R | kaleeswari090204@gmail.com | PSRR | 0 | 0 | 0 | 0 |
Nirmaladevi K | 21cse029@psrr.edu.in | PSRR | 0 | 0 | 0 | 0 |
Nirmaladevi K | nirmaladevikannan9@gmail.com | PSRR | 0 | 0 | 0 | 0 |
DHULA S | abishekdhula@gmail.com | ECE2 | 1 | 30 | 0 | 30 |
DHULA S | dhulamaha25@gmail.com | ECE2 | 0 | 0 | 0 | 0 |
S.SORNAMALYA | s1elvampriya8778920@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
KANIKA G | kanika2832004@gmail.com | PSRR | 0 | 0 | 0 | 0 |
Lakshmi Priya | bk5634074@gmail.com | PSRR | 0 | 0 | 0 | 0 |
Aravinth B | aravindbeemaraj24@gmail.com | CSE1 | 4 | 0 | 0 | 0 |
RAGAMMAL S | ramyaseenivasa23@gmail.com | PSRR | 0 | 0 | 0 | 0 |
Loga sakthi | 21cse023*@psr.edu.in | PSRR | 0 | 0 | 0 | 0 |
JENIFER I | jenifer200418@gmail.com | PSRR | 0 | 0 | 0 | 0 |
JENIFER I | jeniferi18022004@gmail.com | PSRR | 0 | 0 | 0 | 0 |
Genga Parameswari | 21cse011@psr.edu.in | PSRR | 0 | 0 | 0 | 0 |
Genga Parameswari | gengakasi@gmail.com | PSRR | 0 | 0 | 0 | 0 |
DIVYA VARSHINI T | divya.thayanithi810@gmail.com | PSRR | 0 | 0 | 0 | 0 |
MALINI M | malinimurugan1912@gmail.com | PSRR | 0 | 0 | 0 | 0 |
SAKTHIVEENA M | 21cse036@psr.edu.in | PSRR | 0 | 0 | 0 | 0 |
MALINI M | 21cse025@psr.edu.in | PSRR | 0 | 0 | 0 | 0 |
SAKTHIVEENA M | skthi10vna@gmail.com | PSRR | 0 | 0 | 0 | 0 |
veerapandian | 21ec107@psr.edu.in | ECE1 | 1 | 48 | 0 | 48 |
KAVITHA S | kavitha181003@gmail.com | PSRR | 0 | 0 | 0 | 0 |
Narmatha A | narmatha0110004@gmail.com | PSRR | 0 | 0 | 0 | 0 |
veerapandian | vijay.n2004g@gmail.com | ECE1 | 0 | 0 | 0 | 0 |
INDHUJA M | 21ec029@psr.edu.in | ECE1 | 1 | 50 | 0 | 50 |
JAYASRI M | 21ec033@psr.edu.in | ECE1 | 0 | 0 | 0 | 0 |
Nagarajan A | nagarajan21ee035@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Majeetha Banu K.H | hasanmajeetha@gmail.com | PSRR | 0 | 0 | 0 | 0 |
Majeetha Banu K.H | hasanmajeetha@gmail.com | PSRR | 0 | 0 | 0 | 0 |
SIVAJOTHI M | sivajothi152004@gmail.com | PSRR | 0 | 0 | 0 | 0 |
SARANI R | saranir458@gmail.com | PSRR | 0 | 0 | 0 | 0 |
MUTHULAKSHMI M | muthulakshmi152004@gmail.com | PSRR | 0 | 0 | 0 | 0 |
MALINI M | 21cse025@gmail.com | PSRR | 0 | 0 | 0 | 0 |
KAVITHA S | 21cse021psrr@edu.in | PSRR | 0 | 0 | 0 | 0 |
Jayaram B | jayaramchiyaan@gmai.com | ECE2 | 2 | 0 | 0 | 0 |
S.SORNAMALYA | 21bm042@psr.edu.in | BIOEEE | 0 | 0 | 0 | 0 |
Loga sakthi | 21cse023@psr.edu.in | PSRR | 0 | 0 | 0 | 0 |
sakthivel | 22lcs10@psr.edu.in | CSE2 | 1 | 36 | 0 | 36 |
Raja Priya.M | priya400230@gmail.com | PSRR | 0 | 0 | 0 | 0 |
Ajay | ajayajay8838231339@gmail.com | ECE2 | 3 | 0 | 0 | 0 |
Loga sakthi | logasakthi7@gmail.com | PSRR | 0 | 0 | 0 | 0 |
Tharshini S | tharshinis460@gmail.com | CSE1 | 0 | 0 | 0 | 0 |
Pandeeswari K | pandeeswari1502@gmail.com | CSE1 | 0 | 0 | 0 | 0 |
BHAVANI | bhavab016@gmail.com | PSRR | 0 | 0 | 0 | 0 |
AVANTHIYA J | avanthiyaj@gmail.com | CSE1 | 0 | 0 | 0 | 0 |
Saravanan | 21cs095@psr.edu.in | CSE1 | 1 | 36 | 0 | 36 |
DEEPA S | 21cse006@gmail.com | PSRR | 0 | 0 | 0 | 0 |
KAVITHA S | kavi181003@gmail.com | PSRR | 0 | 0 | 0 | 0 |
MALINI M | kavipriya1814@gmail.com | PSRR | 0 | 0 | 0 | 0 |
DEEPA S | 21cse006@psr.edu.in | PSRR | 0 | 0 | 0 | 0 |
S.SORNAMALYA | selvamsornamalya@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
m.suresh | 21ec099@psr.edu.in | ECE2 | 0 | 26 | 0 | 26 |
Arun kumar S | arunsubburaj27@gmail.com | ECE2 | 0 | 0 | 0 | 0 |
SATHYA S | sathyayazhini04@gmail.com | PSRR | 0 | 0 | 0 | 0 |
Somu Raj s | somuraj@gmail.com | CSE2 | 0 | 0 | 0 | 0 |
Jeyaseelan I | 21cs037@psr.edu.in | CSE1 | 0 | 0 | 0 | 0 |
sundharakumar s | sundharsuresh0408@gmail.com | CSE1 | 1 | 36 | 0 | 36 |
venkateshwaran | mvenkateshwaran6340@gmail.com | ECE1 | 0 | 0 | 0 | 0 |
Balavignesh K | balavignesh090204@gmail.com | ECE2 | 0 | 0 | 0 | 0 |
harini sri | 21cse013@psrr.edu.in | PSRR | 0 | 0 | 0 | 0 |
harini sri | 21cse013psrr@gmail.com | PSRR | 0 | 0 | 0 | 0 |
harini sri | sri333hhh@gmail.com | PSRR | 0 | 0 | 0 | 0 |
Raabiyathul Misria R | 21cs080@psr.edu.in | CSE2 | 0 | 0 | 0 | 0 |
Thilagavathi D | 21cs113@psr.edu.in | CSE1 | 0 | 0 | 0 | 0 |
Thiyagarajan | 22LCS13@psr.edu.in | CSE2 | 0 | 0 | 0 | 0 |
Manojkumr K | 21cs056@psr.edu.in | CSE1 | 1 | 46 | 10 | 56 |
Kannan | skannan4112003@gmail.com | CSE1 | 0 | 0 | 0 | 0 |
Kannan | kannans4112003@gmail.com | CSE1 | 1 | 41 | 0 | 41 |
Suresh Kumar m | suresh777789@gmail.com | CSE2 | 2 | 19 | 0 | 19 |
Vijayalakshmi.A | 21ec116@psr.eduin | ECE2 | 0 | 0 | 0 | 0 |
Shunmugalakshmi | 21ec087@psr.edu.in | ECE2 | 1 | 42 | 0 | 42 |
MANOJKUMAR K | 21ec058@psr.edu.in | ECE1 | 1 | 41 | 10 | 51 |
Gowsika M | 21ec024@psr.edu.in | 0 | 0 | 0 | 0 | |
Vigneshkumar | 21ec114@psr.edu.in | 1 | 0 | 0 | 0 | |
AYYANAR A | 21ec013@psr.edu.in | ECE1 | 2 | 25 | 0 | 25 |
AYYANAR A | ayyanarak44@gmail.com | ECE1 | 0 | 0 | 0 | 0 |
Ariharan | 21CS015@psr.edu.in | CSE2 | 0 | 0 | 0 | 0 |
somuraj | somuraj388@gamil.com | CSE2 | 0 | 0 | 0 | 0 |
Renuka Devi | 22lec05@psr.edu.in | ECE1 | 0 | 0 | 0 | 0 |
Sangili Arumugam E | 21cs094@psr.edu.in | CSE2 | 0 | 0 | 0 | 0 |
karthikraja G | klempir6@gmail.com | ECE2 | 1 | 24 | 0 | 24 |
Mahalakshmi R | 21ec051@psr.edu.in | ECE1 | 1 | 27 | 0 | 27 |
ARCHANA A | 21ec008@psr.edu.in | ECE1 | 1 | 45 | 0 | 45 |
Somuraj | rocksomu388@gmail.com | CSE2 | 0 | 0 | 0 | 0 |
Vignesh M | 21EC113@psr.edu.in | ECE1 | 1 | 36 | 20 | 56 |
RABIN M | rabinma11022004@gmail.com | CSE2 | 1 | 60 | 10 | 70 |
Mahesh Kumar S | 21ec054@psr.edu.in | ECE1 | 2 | 44 | 20 | 64 |
Vijayaraj R | vijayrajramakrishnan@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Kalimuthu | 21ec040@psr.edu.in | ECE1 | 2 | 24 | 0 | 24 |
Sangili Arumugam E | sangiliarumugamesakki2003@gmail.com | CSE2 | 2 | 45 | 10 | 55 |
jeyasuriya k | 22lcs01@psr.edu.in | CSE1 | 0 | 0 | 0 | 0 |
Prakash raj | prakashraj8205@gmail.com | BIOEEE | 0 | 0 | 0 | 0 |
Gowsika M | mgowshika2003@gmail.com | ECE1 | 1 | 34 | 0 | 34 |
gnanasubramani34@gmail.com | gnanasubramani34@gmail.com | ECE2 | 0 | 0 | 0 | 0 |
Mahendran M | 21cs052@psr.edu.in | CSE1 | 0 | 0 | 0 | 0 |
Gokul S | 21cs031@psr.edu.in | CSE2 | 0 | 0 | 0 | 0 |
Rajesh | 22LCS08@psr.edu.in | CSE1 | 0 | 0 | 0 | 0 |
Aravinth B | 21CS013@psr.edu.in | CSE1 | 0 | 0 | 0 | 0 |
Aravinth B | cofalef403@inpsur.com | CSE1 | 0 | 0 | 0 | 0 |
Vigneshkumar V | vigneshkumarvj04@gmail.com | ECE1 | 1 | 32 | 0 | 32 |
Subramani k | subrama456k@gmail.com | ECE2 | 0 | 0 | 0 | 0 |
Sivaprakasam | 21EC090@psr.edu.in | ECE2 | 0 | 0 | 0 | 0 |
Mahesh a | 21ec052@psr.edu.in | ECE1 | 3 | 0 | 0 | 0 |
Sivaprakasam | ssivaprakasam003@gmail.com | ECE2 | 1 | 20 | 0 | 20 |
If 5x3y = 225 x 405, find the value of x2y-3x
A metallic spherical shell has internal and external diameters as 40 cm and 30 cm, respectively. It is melted and recast into a number of solid cones of 5 cm and height 4 cm each. The number of cones obtained is
A trader allows a 20% discount on the marked price of the article and gains 11 1/9%. If the cost price increases by 20%, how much discount price should he now give on the same marked price to get the same profit percentage as before?
If 54 persons can complete ⅜ the part of a task in 36 days, then how many more persons are required to complete ⅔ rd part of the same task in 48 days?
What is the mean of the mode and median of the data 18, 11, 15, 14, 19, 16, 13, 16, 11, 13, 16, 12, 11, 17, 12, 15, 16, 14?
Amita earns 18% profit by selling an article. If she increases the price of the article by INR60.50, her gain percent increases to 29%. If she sells it for INR 530.75, then gain/loss percent is
In 2018, Madhu saved 26% of her annual income. In 2019, she earned 20% more than she earned last year and saved 25% of her annual income. The amount spent in 2019 is what percent more than in 2018? (Correct to one decimal space)
Pipes A and B can empty a full tank in 12 hours and 18 hours respectively and C is a filling pipe which can fill the empty tank in k hours. When all the three pipes are opened together then 1/9 th part of the tank was emptied in 1 hour. What is the value of K?
Two solutions A and B contain spirit and water in the ratio 5:6 and 7:4 respectively. They are mixed in the ratio 3:5 in a vessel. In 220 ml of the solution in the vessel, how much water(in ml) should be added to make it a solution in which the ratio of spirit and water is 25:27?
The time taken by a boat to go to a certain distance against the current is the same as to go the double distance along the current. The speed of the current is 3km/h. How much time will the boat take to travel 57.6Km in still water?
The ratio of two numbers is 8:5. If 18 is added to the first number and 15 is subtracted from the second number then the number becomes 3:1. If 12 is subtracted from the first number and 5 is added to the second number then the ratio of the given numbers will be
A certain sum amounts to INR 16590 in 4 ½ years at 8.5% p.a at S.I. The same sum amounts to INR x in 2 years at 15% p.a when the interest is compounded 8-monthly. The value of x is
A field is in the shape of a trapezium whose parallel sides are 104 m and 40 m and other non-parallel sides are each of length 50 m. The area (in m2) of the field is
The total production of type B cars in 2015 and 2017 and type D cars in 2016 and 2019 is what percent more than the total production of type A cars in 2014 and 2018 and type C cars in 2015 and 2019? (Correct to one decimal place)
If x is the lower limit of the median class and y is the class mark of the modal class, then the value of (3x - y) is
A loan of INR 19125 is to be paid back in two equal half yearly instalments. If the rate of interest is 8% p.a and the interest is compounded half yearly, then how much is each instalment (in INR)?
Two sarees and three shirts cost INR 5400. With the same money, one can buy one saree and six shirts. Abhi buys 3 sarees and 5 shirts. If he had INR 8500 with him, how much money (in rupees) is left with him after purchase?
If (x + 10)%of 240 is 60% more than x%of 180, then 15% of (x + 20) is what percent less than 25% of x?
Mr. Ramu invested Rs. 9000 at a certain rate of interest compounded annually for three years. If it amounts to Rs. 10,890 at the end of the second year, what will be the interest for the third year?
The population of a town is 1,21,000. If it increases at the rate of 10% per annum, what is the difference between the population 3 years hence and that of 2 years ago?
For the sentence (S1 to S4) paragraph below, sentences S1 to S4 are given. From the options P, Q, R, choose the appropriate sentences from S1 and S3 respectively. S1: Readability rates the text's condexity in terms of words and grammar, but we're actually more interested in the text’s difficulty in terms of reader comprehension of the content. S2. S3. S4: In addition to pure literacy skills, comprehension depends on a mix of 10, education, and background knowledge. Options: P. Take for example, the following two sentences: He waved his hands and He waived his rights where both score well in readability formulae: simple work in short sentences. Q. Examinees need to study medicine, law, engineering and rocket science in order to do well in comprehension tests But whereas everybody understands what the first sentence describes, you might need a law degree to fully comprehend the implications of the second sentence. A. PQ B. RQ C. RP D. PR
Choose the most appropriate word to complete the sentence correctly: Being a doctor, he displays extremely rare quantities of being diligent and kind.
One part of the sentence below may contain an error. Identify the part. I have to been asked / to keep quiet, / and that too,/ in stern terms
One part of the sentence below may contain an error. Identify the part. Being a child, / I often went/ to the park with my reluctant father, / who is a busy man.
Choose the most appropriate word to complete the sentence correctly: She would have waited for you, __ you were coming home.
The following three sentences can be revised into one better sentence. Choose the sentence that is the best revised. It was already afternoon. The delegates returned. The discussion was resumed.
Arrange the different segments to frame a meaningful sentence. (A) a national flag / (B) in the highest esteem by every patriot / (C) and as such it is held / (D) is a symbol of honour and ideal.
Complete the following sentence by filling in the blanks (1 and 2) with the right words from the options given below: Some scientists believed that the dinosaurs died because over a period of time their bodies became too big to be operated by their small brains. Large dinosaurs required vast amounts of food and could have stripped bare all the vegetation in their habitat. But this theory was soon __ 1 __. If dinosaurs’ brains had been too small to be __ 2 __, they would not have flourished for 10 million years. Blank 1: Blank 2:
For the four sentence (S1 to S4) paragraph given below, sentences S1 & S4 are given. From the options P, Q, and R, choose appropriate sentences for S2 & S3 respectively. S1: INS Vikrant was the first aircraft carrier to be designed by the directorate of Naval design of the Indian Navy. S2: S3: S4: Due to this, it became the first ship to be built completely using domestically produced steel. P. The Keel for Vikrant was laid by the Defence Minister at the Cochin shipyard on 28th February 2009. Q. It took a long time to build a warship which was indigenously built by the Cochin shipyard. R. About 26,000 tons of different types of steel were manufactured by the Bhilai steel plant, Chhattisgarh and Rourkela Steel plant, Odisha.
One part of the sentence below may contain an error. Identify the part. Something about the way he spoke stuck a bell in Lauren’s mind.
Complete the following sentences by filling the blanks (1 & 2) with the right word from the options given below: Compared with conventional agriculture, organic farming uses fewer pesticides, reduces soil erosion, decreases nitrate leaching into groundwater and surface water, and __1__ animal wastes back into the form. These benefits are __2__ by higher food costs for consumers and generally lower yields. 1.: 2.:
For the four sentence (S1 to S4) paragraph given below, sentences S1 & S4 are given. From the options P, Q, and R, choose appropriate sentences for S2 & S3 respectively. S1: With increased globalization comes the likelihood that infectious diseases appearing in one country will spread rapidly to another as was the case with the SARS which broke out in Hongkong a few years ago. S2: S3: S4: Therefore understanding factors that led to the impact of SARS might help to deal with the possible impact and management of such infectious disease outbreaks. P. Although it infected some 10,000 individuals, killing around 1000, that did not lead to the devastation of health impact as many people feared. Q. The rapid spread of infectious diseases is not as great a threat as its impact on the global economy. R. Outbreaks of more serious diseases could cause catastrophic impacts on the global economy.
One sentence has been removed from the text below. Read the text then match the missing sentence to fill up the blank: With its 26 million people, Delhi has been described as a microcosm of India, with trappings from the country’s many cultures, religions and traditions. Centuries of global trade, conquest and colonisation have made the city one of the world’s most multicultural. ___. This is the term residents often call themselves, originating from the phrase ‘Dilwalo ki Dilli’, the place where the people with big hearts live.
Choose the most appropriate word to complete the sentence correctly: The opposition has lost its advantage due to its endless ___.
Q15. What is the theme of the passage? Our screens are pervasive, so it’s inevitable that our children pick up on this quickly, easily and intuitively. My baby even knew – almost as if by instinct – that by swiping my phone, something would light up. Before he even turned one, he seemed to have picked up on this. We know screens are extremely addictive too, they shape our children’s minds in ways we are now slowly starting to understand. It’s not all bad, but it’s far from good either, and learning how to use screens better, or knowing when to stop, will have lasting positive consequences. How outside influences might warp our children’s thoughts is not a new worry. Similar worries appeared ever since televisions became a staple in family homes. While we know reading is beneficial for a range of cognitive abilities, at the same time, children are growing up in a world where screens are everywhere. Their screen use therefore paints a somewhat worrying picture. Estimates suggest that children aged 0 to two years engage in more than three hours of screen time per day, a figure that has doubled in the past two decades. Another study showed that for school-aged children, 49% had more than two hours screen time, and 16% had over four hours. Screen time can come at the cost of reduced physical activity, increased BMI, and fewer family meals together. It is also linked to less sleep in children as well as adults. Children who have a TV in their room have been found to sleep 31 minutes less per day, for instance. On first glance all this seems alarming, but it turns out that not all TV is the same and watching some educational shows can actually benefit children, but only those aged two and older. Below 2 years, screen time does not have a positive value. Educational TV content has been shown to help improve behaviour, literacy and cognitive skills for three to five year olds.
Q16. Which of the following statements is not true? Our screens are pervasive, so it’s inevitable that our children pick up on this quickly, easily and intuitively. My baby even knew – almost as if by instinct – that by swiping my phone, something would light up. Before he even turned one, he seemed to have picked up on this. We know screens are extremely addictive too, they shape our children’s minds in ways we are now slowly starting to understand. It’s not all bad, but it’s far from good either, and learning how to use screens better, or knowing when to stop, will have lasting positive consequences. How outside influences might warp our children’s thoughts is not a new worry. Similar worries appeared ever since televisions became a staple in family homes. While we know reading is beneficial for a range of cognitive abilities, at the same time, children are growing up in a world where screens are everywhere. Their screen use therefore paints a somewhat worrying picture. Estimates suggest that children aged 0 to two years engage in more than three hours of screen time per day, a figure that has doubled in the past two decades. Another study showed that for school-aged children, 49% had more than two hours screen time, and 16% had over four hours. Screen time can come at the cost of reduced physical activity, increased BMI, and fewer family meals together. It is also linked to less sleep in children as well as adults. Children who have a TV in their room have been found to sleep 31 minutes less per day, for instance. On first glance all this seems alarming, but it turns out that not all TV is the same and watching some educational shows can actually benefit children, but only those aged two and older. Below 2 years, screen time does not have a positive value. Educational TV content has been shown to help improve behaviour, literacy and cognitive skills for three to five year olds.
Q17. Twenty years ago, how much time were children spending on watching screens? Our screens are pervasive, so it’s inevitable that our children pick up on this quickly, easily and intuitively. My baby even knew – almost as if by instinct – that by swiping my phone, something would light up. Before he even turned one, he seemed to have picked up on this. We know screens are extremely addictive too, they shape our children’s minds in ways we are now slowly starting to understand. It’s not all bad, but it’s far from good either, and learning how to use screens better, or knowing when to stop, will have lasting positive consequences. How outside influences might warp our children’s thoughts is not a new worry. Similar worries appeared ever since televisions became a staple in family homes. While we know reading is beneficial for a range of cognitive abilities, at the same time, children are growing up in a world where screens are everywhere. Their screen use therefore paints a somewhat worrying picture. Estimates suggest that children aged 0 to two years engage in more than three hours of screen time per day, a figure that has doubled in the past two decades. Another study showed that for school-aged children, 49% had more than two hours screen time, and 16% had over four hours. Screen time can come at the cost of reduced physical activity, increased BMI, and fewer family meals together. It is also linked to less sleep in children as well as adults. Children who have a TV in their room have been found to sleep 31 minutes less per day, for instance. On first glance all this seems alarming, but it turns out that not all TV is the same and watching some educational shows can actually benefit children, but only those aged two and older. Below 2 years, screen time does not have a positive value. Educational TV content has been shown to help improve behaviour, literacy and cognitive skills for three to five year olds.
Q18. Which word is closest in meaning to the word ‘pervasive’? Our screens are pervasive, so it’s inevitable that our children pick up on this quickly, easily and intuitively. My baby even knew – almost as if by instinct – that by swiping my phone, something would light up. Before he even turned one, he seemed to have picked up on this. We know screens are extremely addictive too, they shape our children’s minds in ways we are now slowly starting to understand. It’s not all bad, but it’s far from good either, and learning how to use screens better, or knowing when to stop, will have lasting positive consequences. How outside influences might warp our children’s thoughts is not a new worry. Similar worries appeared ever since televisions became a staple in family homes. While we know reading is beneficial for a range of cognitive abilities, at the same time, children are growing up in a world where screens are everywhere. Their screen use therefore paints a somewhat worrying picture. Estimates suggest that children aged 0 to two years engage in more than three hours of screen time per day, a figure that has doubled in the past two decades. Another study showed that for school-aged children, 49% had more than two hours screen time, and 16% had over four hours. Screen time can come at the cost of reduced physical activity, increased BMI, and fewer family meals together. It is also linked to less sleep in children as well as adults. Children who have a TV in their room have been found to sleep 31 minutes less per day, for instance. On first glance all this seems alarming, but it turns out that not all TV is the same and watching some educational shows can actually benefit children, but only those aged two and older. Below 2 years, screen time does not have a positive value. Educational TV content has been shown to help improve behaviour, literacy and cognitive skills for three to five year olds.
What did the painter do ___ himself from falling? When he felt the ladder, ___ he grabbed the gutter to save himself from falling.
___, but could not get it to start this morning.
In the following question, two statements are given. You have to decide whether the data provided in the statements is sufficient to answer the question. Who is elder Mukesh or Mohan? I. Mohan is twice as old as his sister. II. Mukesh was born in the year 1985 and is five years younger than Mohan's sister.
A cube is made by folding the given sheet. In the cube so formed, which letter/symbol will be on the opposite face to the face having the symbol ‘%’?
Three statements are given followed by three conclusions numbered 1, 2 and 3. Assuming the statements to be true, even if they seem to be at variance with commonly known facts, decide which of the conclusions logically follow(s) from the statements. Statements: A. All pinks are flowers B. All flowers are bees Conclusions: 1. Some flowers are pinks 2. Some pinks are not bees 3. All bees are flowers
Three statements are given followed by three conclusions numbered 1, 2 and 3. Assuming the statements to be true, even if they seem to be at variance with commonly known facts, decide which of the conclusions logically follow(s) from the statements. Statements: A. Some keys are locks B. Some locks are chains C. All chains are ropes Conclusions: 1. Some ropes are locks 2. Some chains are keys 3. Some locks are keys
Which of the following means atmosphere in a certain code language, if: 1. ‘san pa chan’ means extremely polluted atmosphere 2. ‘han chan an’ means ‘atmosphere is clear’
In each of the five pairs of letter-clusters, the letters in the second term is a rearranged/transformed form of the letters in the first term in a particular pattern. In which two pairs, has the transformation been done the same way? P. MASON : AMNOS Q. PARTY : APRYT R. FAULT : AFTLU S. LODGE : DOLEG T. CARGO : ACOGS
Two statements are given followed by two conclusions numbered 1 and 2. Assuming the statements to be true, even if they seem to be at variance with commonly known facts, decide which of the conclusions logically follow(s) from the statements. Statements: 1. All birds are plants 2. Some plants are houses Conclusions: 1. All plants are birds 2. Some houses are birds
If ‘A x B’ means A is the mother of B, ‘A-B’ means A is the sister of B, ‘A/B’ means A is the father of B, ‘A + B’ means A is the husband of B, and ‘A % B’ means A is the wife of B. Then how is P related to G in G%Q/R-S+P x T?
Based on the information given below, answer the following question: The percentage expenditure by a school in different categories is given. It spends 30% on staff salary, 25% on school maintenance, 20% on furniture and other resources, 15% on electricity, and 10% on transportation. Total expenditure is Rs. 13,89,200. How much money is spent on electricity and transport together if the total expenditure is increased by Rs. 36,000 (given, percentage of expenditure on each category remains the same)?
Statements: A. Some apples are reds. B. All cherries are reds. Conclusions: I. Some reds are cherries. II. Some reds are apples.
Six friends Poonam, Madhav, Ravi, Neelam, Jaya, and Vineet are sitting around a circular table facing towards the centre. What is Madhav’s position with respect to Vineet? I. Madhav is to the immediate right of Neelam. There are only two friends between Madhav and Poonam. Vineet is an immediate neighbour of Poonam but not of Neelam. II. Only two friends sit between Ravi and Jaya. Vineet is second to left of Jaya. Neelam and Madhav are immediate neighbours of each other.
Read the given information carefully and answer the following question. A. 'P/Q' means 'P' is the son of 'Q'. B. 'P+Q' means 'P' is the father of 'Q'. C. 'P*Q' means 'P' is the wife of 'Q'. D. 'P x Q' means 'P' is the sister of 'Q'. E. 'P-Q' means 'P' is the mother of 'Q'. Which among the following expressions is true, if 'M' is the son of 'L' is definitely false?
Seven professionals: a Doctor, an Engineer, a Teacher, a Pharmacist, a Lawyer, an Architect, and a Musician live in a hill station, an industrial city, and a historical city. Their houses are painted with different colors like blue, red, green, yellow, black, pink, and brown. The Engineer's and the Lawyer's houses are small in size and located in the industrial city. There are only two houses that are small in size. Only one big house is located at the historical city and the teacher lives there. Musician lives in the industrial city and his big house is painted in brown color. The environment of all three hill stations is very pure and clean. The Doctor, the Pharmacist, and the Architect live in blue, yellow, and pink painted houses respectively. Red and black painted houses are small in size. What will be the specifications of the teacher's house?
There are five friends Anjali, Avinash, Gargi, James, and Mohit having six subjects: Biology, English, Hindi, Mathematics, Physics, and Statistics. Only one passes in all six subjects. Gargi and Anjali fail in Hindi but not Avinash. All friends pass in Biology except Gargi and Avinash. Three friends Mohit, Avinash, and Anjali fail in Physics and Mathematics. All friends pass in English except Mohit. All friends fail in Physics except James. Only Avinash fails in Statistics. Only two friends pass in Hindi and Mathematics. Who does pass in Biology and Statistics only?
There are five friends Anjali, Avinash, Gargi, James, and Mohit having six subjects: Biology, English, Hindi, Mathematics, Physics, and Statistics. Only one passes in all six subjects. Gargi and Anjali fail in Hindi but not Avinash. All friends pass in Biology except Gargi and Avinash. Three friends Mohit, Avinash, and Anjali fail in Physics and Mathematics. All friends pass in English except Mohit. All friends fail in Physics except James. Only Avinash fails in Statistics. Only two friends pass in Hindi and Mathematics. Who does pass in all six subjects?
Which of the following is an operating system?
What is the main function of the operating system?
Which part of the operating system handles the scheduling of processes?
What does the term 'virtual memory' refer to?
Which of the following is NOT a type of operating system?
What is a 'deadlock' in operating systems?
In which layer of the OSI model does the operating system primarily operate?
What is the role of a 'file system' in an operating system?
Which command in Unix-based systems is used to list files and directories?
What is the purpose of 'paging' in memory management?
Which of the following is a type of malware that replicates itself to spread to other systems?
In a computer network, what does 'TCP/IP' stand for?
What is a 'system call'?
What does the acronym 'BIOS' stand for?
Which of the following is a primary function of an operating system's kernel?
What is 'multitasking' in an operating system?
What does the term 'I/O device' refer to?
In the context of computer fundamentals, what is 'cache memory'?
What is the main advantage of using 'SSD' over 'HDD'?
What does 'GUI' stand for in the context of operating systems?
What is 'defragmentation' in the context of file systems?
Which of the following is NOT a common type of file system?
What does the 'kernel' of an operating system do?
Which of the following is a function of 'DMA' (Direct Memory Access)?
What is 'virtualization' in computer systems?
In computer networks, what does 'DNS' stand for?
Which of the following is a feature of 'UNIX' operating system?
What is 'bootstrapping' in the context of operating systems?
What is 'multiprocessing'?
What does 'RAID' stand for in storage systems?
What is 'system software'?
What is the purpose of an 'interrupt' in a computer system?
Which of the following is a primary function of a device driver?
What does 'BIOS' do during the boot process?
What is the function of 'swap space' in an operating system?
No | Name | Department | Attempts | MCQ Marks | |
1 | Admin | ag.nawfal619@gmail.com | CSE1 | 0 | 0 |
2 | Admin | admin@evorieainfotechpvtltd.com | CSE1 | 0 | 0 |
3 | Maheswaran D | 21ec055@psr.edu.in | ECE1 | 1 | 34 |
4 | MANOJ E | 21EC057@PSR.EDU.IN | ECE1 | 1 | 46 |
5 | Sivakumar K | 21ec089@psr.edu.in | ECE1 | 1 | 38 |
6 | Johnson J | johnj092004@gmail.com | ECE1 | 11 | 0 |
7 | Veera Vignesh | 21ec108@psr.edu.in | ECE1 | 0 | 0 |
8 | Alex christopher J B | 21ec005@psr.edu.in | ECE1 | 0 | 0 |
9 | SRIHARAN M | msriharan2003@gmail.com | ECE1 | 1 | 44 |
10 | KRISHNAKUMAR M | 21ec047@psr.edu.in | ECE1 | 0 | 0 |
11 | sanjai | sanjairajsanjai587@gmail.com | ECE1 | 2 | 27 |
12 | Jayasurya K | 21ec031@psr.edu.in | ECE1 | 1 | 54 |
13 | jeyasuriya k | jeyasuriya7676@gmail.com | Morning | 0 | 0 |
14 | Asvini G | 21ec012@psr.edu.in | ECE1 | 2 | 0 |
15 | Benazeer Fathima M | 21ec016@psr.edu.in | ECE1 | 1 | 39 |
16 | Nithish kumar | 21ec072@psr.edu.in | ECE1 | 1 | 35 |
17 | J.Pavithra | 21ec076@psr.edu.in | ECE1 | 1 | 33 |
18 | Rajavarshini | 21ec079@psr.edu.in | ECE1 | 1 | 28 |
19 | L.Mohanapriya | 21ec065@psr.edu.in | ECE1 | 1 | 34 |
20 | Deepa | deepa652003@gmail.com | ECE1 | 1 | 40 |
21 | Thirumala | thirumala0312@gmail.com | ECE1 | 1 | 56 |
22 | Venisuvetha A | venisuvetha@gmail.com | ECE1 | 1 | 52 |
23 | Hemanth A | srigowtham1415@gmail.com | ECE1 | 1 | 47 |
24 | Saran | 21ec083@psr.edu.in | ECE1 | 1 | 43 |
25 | Durga Devi S | 21ec021@psr.edu.in | ECE1 | 1 | 35 |
26 | Narmatha B | 21ec070@psr.edu.in | ECE1 | 1 | 28 |
27 | Sriram Babu T | 21cs106@psr.edu.in | CSE2 | 0 | 0 |
28 | Ashokkumar.S | 21CS017@psr.edu.in | CSE1 | 0 | 0 |
29 | Sridhar Perumal M | 21ec094@psr.edu.in | ECE1 | 1 | 24 |
30 | Parveenkumar M | 21ec075@psr.edu.in | ECE1 | 1 | 31 |
31 | Revathi Vengatasamy | 21cs088@psr.edu.in | CSE2 | 0 | 0 |
32 | Balasubramanian s | bala.psr.2022@gmail.com | CSE1 | 1 | 48 |
33 | shiyamala | shiyamala0606@gmail.com | CSE1 | 2 | 0 |
34 | Rajeswari K | rajii205125@gmail.com | CSE1 | 1 | 46 |
35 | Ashokkumar S | ronalashok2004@gmail.com | CSE1 | 1 | 37 |
36 | Balajothi K | kbalajothi644@gmail.com | CSE1 | 1 | 36 |
37 | Sathyavathi S | 21ec085@psr.edu.in | ECE1 | 1 | 46 |
38 | Rajesh K | diocrazy95@gmail.com | CSE1 | 1 | 33 |
39 | Jothika R | jothikajothika170@gmail.com | CSE1 | 1 | 0 |
40 | Ashwin T | ashwin979149@gmail.com | CSE1 | 1 | 47 |
41 | Gokul R | rgokul3112@gmail.com | CSE1 | 1 | 42 |
42 | NANDHINI M | nanthininanthini708@gmail.com | CSE1 | 2 | 41 |
43 | Muthumuni S | muthumuni2003@gmail.com | CSE1 | 2 | 40 |
44 | Nivetha R | rnivetha003@gmail.com | CSE1 | 1 | 45 |
45 | Harikrishnan T | harikrishnan73832@gmail.com | CSE1 | 1 | 41 |
46 | Amutha | amuthavenkat178@gmail.com | CSE1 | 1 | 40 |
47 | M. Loga Parvatha Rajakumari | arasasuthamathi@gmail.com | CSE1 | 1 | 37 |
48 | Arul Chelliah | arul123an@gmail.com | CSE1 | 1 | 27 |
49 | Vignesh Abranantham T | vigneshabranantham@gmail.com | CSE1 | 1 | 43 |
50 | Mohanraj M | mohanrj7904@gmail.com | CSE2 | 1 | 44 |
51 | Mathumitha T | thiruppathimathu2004@gmail.com | CSE1 | 1 | 47 |
52 | Nihariha K | 21cs072@psr.edu.in | CSE2 | 0 | 0 |
53 | Akash L | akashlakshmanan1304@gmail.com | CSE1 | 1 | 45 |
54 | Indhumathi M | indhumathi.mm212004@gmail.com | CSE1 | 1 | 40 |
55 | Sriram Babu T | srisreerambabu03@gmail.com | CSE2 | 0 | 41 |
56 | Latha Rishi Mathi S | rishimathi1210@gmail.com | CSE1 | 1 | 47 |
57 | S SHAHANA | 21cs098@psr.edu.in | CSE2 | 0 | 0 |
58 | Syed Mohammed Safi | 21cs111@psr.edu.in | CSE2 | 1 | 39 |
59 | Archana S | 21cs014@psr.edu.in | CSE2 | 0 | 0 |
60 | Madhumathi | rmadhuvenus@gmail.com | CSE1 | 1 | 32 |
61 | Suvalakshmi M | subaavm2020@gmail.com | CSE1 | 1 | 33 |
62 | Priyadharshini R | priyadhrashini1403@gmail.com | CSE1 | 1 | 43 |
63 | Sriwaugh | 21cs103@psr.edu.in | CSE2 | 0 | 0 |
64 | Dhivya Sri P | 21cs027@psr.edu.in | CSE2 | 0 | 0 |
65 | Gowsalya P | gowsalya30032004@gmail.com | CSE1 | 0 | 0 |
66 | Thilagavathi D | thilaga04112003@gmail.com | CSE2 | 2 | 33 |
67 | Manasha G | minshooky136@gmail.com | CSE1 | 1 | 45 |
68 | Abinesh S | 21cs003@psr.edu.in | CSE2 | 1 | 22 |
69 | Sadhiesh Krishnan | satheshkrishnan53565@gmail.com | CSE1 | 0 | 0 |
70 | sneka | sinegagomathi03@gmail.com | CSE1 | 1 | 26 |
71 | AJITHKUMAR M | ajithapple13@gmail.com | CSE1 | 1 | 37 |
72 | Afrin Aysha H | hfafrin2003@gmail.com | CSE1 | 1 | 38 |
73 | Malesh Kumar V | 21CS053@psr.edu.in | CSE2 | 0 | 0 |
74 | Raabiyathul Misria R | raabiyathulmisria2004@gmail.com | CSE2 | 1 | 52 |
75 | Siva Sakthi M | sakthi09msv@gmail.com | CSE2 | 1 | 42 |
76 | Sriwaugh S | sriwaugh0987@gmail.com | CSE2 | 1 | 42 |
77 | RABIN M | mrabinma11022004@gmail.com | CSE2 | 0 | 0 |
78 | Nova S | jegannova2174@gmail.com | CSE2 | 0 | 0 |
79 | Lavanya V | lavanyavv03@gmail.com | CSE2 | 2 | 0 |
80 | VARSHA S | varshasubbu1709@gmail.com | CSE2 | 1 | 29 |
81 | Vijayasri R | srivijaya798@gmail.com | ECE1 | 1 | 53 |
82 | Srikanth R | srikanthrajan003@gmil.com | CSE2 | 0 | 0 |
83 | Aishwarya S | aishwaryaa2105@gmail.com | CSE1 | 2 | 41 |
84 | Lakshmana Pandian P | lakshmanapandian777@gmail.com | CSE1 | 1 | 41 |
85 | Dharshini | dharshinibalamurugan934@gmail.com | CSE2 | 0 | 0 |
86 | Abinaya A | abiananthi66@gmail.com | CSE2 | 0 | 0 |
87 | Jusvanthraja J | jusvanth175@gmail.com | CSE2 | 2 | 41 |
88 | Amirthaa.M | mamirtha2002@gmail.com | CSE2 | 1 | 36 |
89 | Abinesh S | abiselva254@gmail.com | CSE2 | 0 | 0 |
90 | Revathi Vengatasamy | csrevathiv@gmail.com | CSE2 | 1 | 26 |
91 | Sudha S | sudhaganesan2003@gmail.com | CSE2 | 1 | 31 |
92 | Sattanathan P | sattanathanpalanivel@gmail.com | CSE2 | 1 | 29 |
93 | S SHAHANA | shahana87780@gmail.com | CSE2 | 1 | 45 |
94 | NANDHINI R | csnandhinir@gmail.com | CSE2 | 1 | 0 |
95 | A.Deepa Lakshmi | dd0426600@gmail.com | CSE2 | 0 | 0 |
96 | Nagajothi R | jothir239@gmail.com | CSE2 | 1 | 37 |
97 | Dhivya Sri P | dhivyasrisamy28@gmail.com | CSE2 | 2 | 0 |
98 | Nihariha K | nihariha1824@gmail.com | CSE2 | 1 | 38 |
99 | J Mary Nivetha | jmarynivetha24@gmail.com | CSE1 | 1 | 38 |
100 | Vijaya Bala V | 21ec115@psr.edu.in | ECE1 | 1 | 47 |
101 | S Archana | archanashanmugavel5@gmail.com | CSE2 | 0 | 0 |
102 | Siva Sankari R | 21ec088@psr.edu.in | ECE1 | 1 | 18 |
103 | Ashokkumar C | 21ec011@psr.edu.in | ECE1 | 1 | 25 |
104 | Balavignesh K | 21ec015@psr.edu.in | ECE2 | 1 | 34 |
105 | Mohamed saalik | 21ec064@psr.edu.in | ECE1 | 1 | 41 |
106 | Dharani V | edharaniv@gmail.com | ECE2 | 0 | 0 |
107 | Rishikumar | 21ec081@psr.edu.in | ECE1 | 1 | 54 |
108 | Metha Manaswini B | methamanaswini@gmail.com | CSE2 | 1 | 32 |
109 | Vinoth Kumar.G | 21ec120@psr.edu.in | ECE1 | 1 | 27 |
110 | Keerthika | 21ec045@psr.edu.in | ECE2 | 1 | 40 |
111 | Sathya | 21ec084@psr.edu.in | ECE1 | 0 | 0 |
112 | Nagendhiran.M | 21ec069@psr.edu.in | ECE1 | 1 | 39 |
113 | Mahesh R | 21ec053@psr.edu.in | ECE1 | 2 | 40 |
114 | JEYA KRISHNAN R | 21ec036@psr.edu.in | ECE2 | 1 | 45 |
115 | Subramani k | subramani20040104@gmail.com | ECE1 | 0 | 0 |
116 | Antony vasanth J | antonyvasanth3092@gmail.com | ECE2 | 1 | 0 |
117 | Rajkumar V | rajkumarcse18@gmail.com | CSE2 | 1 | 47 |
118 | Malesh Kumar V | maleshkumar0707@gmail.com | CSE2 | 1 | 35 |
119 | Jeyasudha K | jeyasudha424321@gmail.com | CSE1 | 1 | 46 |
120 | Arun kumar D | 21ec009@psr.edu.in | ECE1 | 1 | 45 |
121 | Haritha M | mharitha2604@gmail.com | Morning | 1 | 44 |
122 | RABIN M | mrabin11022004@gmail.com | CSE2 | 0 | 0 |
123 | Meena M | 21ec062@psr.edu.in | ECE1 | 1 | 34 |
124 | Suriyakumar V | 21ec100@psr.edu.in | ECE1 | 0 | 0 |
125 | Malathi K | 21ec056@psr.edu.in | ECE2 | 1 | 39 |
126 | Deepshiha Narayan | deepshiha2021@gmail.com | CSE1 | 1 | 40 |
127 | Narmatha M | 2003narmatham@gmail.com | BIOEEE | 0 | 0 |
128 | Roshan | sparklestar2504@gmail.com | CSE2 | 0 | 0 |
129 | Abirami.K | krishnamoorthyabirami27@gmail.com | BIOEEE | 0 | 0 |
130 | Anantha priya | ananthapriya855@gmail.com | BIOEEE | 0 | 0 |
131 | A. Vadivel narayanan | 21ec105@psr.edu.in | ECE1 | 1 | 22 |
132 | kartheeswaran k | keswaran186@gmail.com | BIOEEE | 0 | 0 |
133 | Mergelin | nmegelin@gmail.com | BIOEEE | 0 | 0 |
134 | Syed Mohammed Safi | safi22052004@gmail.com | CSE2 | 0 | 0 |
135 | Venkateshwaran m | 21ec111@psr.edu.in | ECE1 | 1 | 36 |
136 | KRISHNAKUMAR M | krishna742004@gmail.com | ECE1 | 1 | 36 |
137 | Gokul S | psrgokul238@gmail.com | CSE2 | 1 | 29 |
138 | Indhumathi M | indhumathimariyappan21@gmail.com | CSE1 | 0 | 0 |
139 | RAMAR V | ramramar27022004@gmail.com | BIOEEE | 0 | 0 |
140 | Akshayamirtha S | 21ec004@psr.edu.in | ECE2 | 1 | 40 |
141 | surendhar ji.B | 21ec098@psr.edu.in | ECE1 | 1 | 34 |
142 | Sathya | rockingsathya2@gmail.com | ECE1 | 1 | 56 |
143 | G.Nanthini | gurunandhini28@gmail.com | BIOEEE | 0 | 0 |
144 | Dharani V | 21ec019@psr.edu.in | ECE2 | 1 | 31 |
145 | Sheereen Fathima | shereen.fathima03@gmail.com | BIOEEE | 0 | 0 |
146 | Ajay R | 21ec003@psr.edu.in | 0 | 0 | |
147 | P MUTHU KANNAN | muthukannan883@gmail.com | CSE1 | 1 | 34 |
148 | MUKESHKANNA | saimukeshkannadr21@gmail.com | BIOEEE | 0 | 0 |
149 | Mohit S | 21ee032@psr.edu.in | BIOEEE | 0 | 0 |
150 | Dhars | sudhabalakvp@gmail.com | CSE2 | 1 | 0 |
151 | MATHEW ABISHAK | mathew2001hero@gmail.com | CSE1 | 1 | 49 |
152 | A. Vadivel narayanan | vadivelarumugam95@gmail.com | ECE1 | 0 | 0 |
153 | Angala Eswari B | 21EC006@psr.edu.in | ECE1 | 1 | 34 |
154 | PALANI KUMAR | karthipmk998@gmail.com | CSE2 | 0 | 0 |
155 | Krishnamoorthy M | krishnamoorthym2003@gmail.com | BIOEEE | 0 | 0 |
156 | GNANAJOTHI G | 21ec022@psr.edu.in | ECE1 | 1 | 33 |
157 | Mukesh S | 21ec066@psr.edu.in | ECE1 | 1 | 35 |
158 | Subramani k | subramani2004k@gmail.com | ECE1 | 0 | 0 |
159 | Madhavan S | 21ec050@psr.edu.in | ECE2 | 1 | 59 |
160 | Daniel Prince D | d.danielprince2003@gmail.com | CSE1 | 1 | 0 |
161 | CHANDRABOSE G | bossc0724@gmail.com | CSE1 | 0 | 0 |
162 | Ragu sanjai R | 21CS082@psr.edu.in | CSE2 | 1 | 30 |
163 | DHULA S | 21ec020@psr.edu.in | Morning | 0 | 0 |
164 | Srikanth R | srikanthrajan003@gmail.com | CSE2 | 1 | 37 |
165 | Kiruthick Balu K | 21bt010@psr.edu.in | BIOEEE | 0 | 0 |
166 | Suvaraj | 21ec101@psr.edu.in | ECE2 | 9 | 30 |
167 | Sathya | sathyaanand084@gmail.com | ECE1 | 0 | 0 |
168 | Kaleeswaran S | Kaleeswaran722004@gmail.com | CSE1 | 1 | 32 |
169 | JanakiramB | 21ec030@psr.edu.in | ECE2 | 1 | 45 |
170 | Ponnukutti K | ponnukutti52@gmail.com | CSE2 | 2 | 38 |
171 | Sameem Ahamed M I | ahamedsameem66@gmail.com | CSE2 | 1 | 39 |
172 | Jinosan k | praveenjinosan@gmail.com | BIOEEE | 0 | 0 |
173 | Aravinth B | aravind242003@gmail.com | CSE1 | 0 | 0 |
174 | Parameshwaran | Parameshwaran310@gmail.com | CSE2 | 2 | 22 |
175 | Shenbagaraj k | shenbagarajbm@gmail.com | BIOEEE | 0 | 0 |
176 | Eric Micheal A | ericmichealantony@gmail.com | CSE1 | 1 | 44 |
177 | Joshin singh | joshinsingh8733@gmail.com | CSE2 | 1 | 52 |
178 | Naveen Kumar | 21ec071@psr.edu.in | ECE2 | 1 | 0 |
179 | karthikeyan P | karthikeyan4112004@gmail.com | 0 | 0 | |
180 | Somu Raj | somuraj388@gmail.com | CSE2 | 0 | 0 |
181 | Naresh | rn86615@gmail.com | CSE2 | 5 | 42 |
182 | Thabeeba | thabeebabme03@gmail.com | BIOEEE | 0 | 0 |
183 | yogalakshmi | yogabm051@gmail.com | BIOEEE | 0 | 0 |
184 | Sakthivelmari A | sakthivelmari2021@gmail.com | CSE2 | 1 | 34 |
185 | Dhayanithi K | 21bm010@gmail.com | BIOEEE | 0 | 0 |
186 | solaikannan A | 21ec092@psr.edu.in | ECE2 | 1 | 34 |
187 | Mugesh V | mugeshv33@gmail.com | CSE2 | 1 | 40 |
188 | CHANDRABOSE G | gchandrabose10@gmail.com | CSE1 | 1 | 35 |
189 | Murugananth | murugananth2003@gmail.com | BIOEEE | 0 | 0 |
190 | Rakesh Krishna | rakeshsark007@gmail.com | CSE1 | 3 | 0 |
191 | Deepesh kumar | deepeshkumar.p2004@gmail.com | CSE1 | 1 | 43 |
192 | Karthikeyan B | karthikn20042023@gmail.com | CSE1 | 0 | 0 |
193 | Abivarshan | abivarshank@gmail.com | CSE1 | 1 | 43 |
194 | Thanga Nithan Prabhu | nithanprabhu158@gmail.com | CSE1 | 1 | 48 |
195 | Mergelin | 21ee031@psr.edu.in | BIOEEE | 0 | 0 |
196 | Praveen raj | praveenraj18022004@gmail.com | CSE2 | 1 | 24 |
197 | Inbaraj M | inbarajeee2003@gmail.com | BIOEEE | 0 | 0 |
198 | Thilagaraj.M | thilagarajeee2003@gmail.com | BIOEEE | 0 | 0 |
199 | gayathri | gayathrigayathri88350@gmail.com | BIOEEE | 0 | 0 |
200 | Aadhavan S | aadhavan2906@gmail.com | CSE1 | 1 | 53 |
201 | Ariharan | ariharangm7@gmail.com | CSE2 | 1 | 34 |
202 | Yogesh Kannan | ykblissfull@gmail.com | CSE1 | 1 | 36 |
203 | PRAKASH RAJ P | prakash7jar@gmail.com | BIOEEE | 0 | 0 |
204 | Rajamuniyandi M | rajamuniya43@gmail.com | CSE2 | 1 | 45 |
205 | Rajapandi B | 21cs084@psr.edu.in | CSE2 | 1 | 42 |
206 | Aravinth B | massaravind248@gmail.com | CSE1 | 0 | 0 |
207 | Malesh Kumar V | maleshkumar0928@gmail.com | CSE2 | 0 | 0 |
208 | Kirthick Sakthi V | kirthickprince@gmail.com | CSE2 | 0 | 42 |
209 | Muthuraja | muthurajakm162@gmail.com | CSE1 | 2 | 40 |
210 | Raja Sekar S | 21ec078@psr.edu.in | ECE2 | 1 | 26 |
211 | Jayasri R | jayasri2540@gmail.com | ECE2 | 1 | 35 |
212 | Sailaesh A | plptsailaesh@gmail.com | ECE2 | 1 | 23 |
213 | Manokar.M | mano37072@gmail.com | BIOEEE | 0 | 0 |
214 | Sivakumar | 9597siva@gmail.com | CSE2 | 1 | 63 |
215 | Muthu Saravanan M | sachinsaravana1427@gmail.com | CSE2 | 2 | 33 |
216 | Naren Karthik.s | manjulanarenkarthik@gmail.com | CSE2 | 1 | 47 |
217 | Yuvaraja | yuvarajanarayanan33@gmail.com | CSE2 | 0 | 0 |
218 | Sangili Arumugam E | sangiliarumugam2003@gmail.com | CSE2 | 0 | 0 |
219 | R.VENKATESH | 21ec110@psr.edu.in | 0 | 0 | |
220 | Saravanan | saravananbala410@gmail.com | CSE1 | 2 | 0 |
221 | Suresh Kumar M | suresh9952582603@gmail.com | CSE2 | 0 | 0 |
222 | Jeyasuriya k | jeyasuriya3545@gmail.com | CSE1 | 1 | 33 |
223 | Gokulraj A | gokulrajlab32@gmail.com | CSE1 | 1 | 50 |
224 | MANOJKUMAR K | manojkandasamy26@gmail.com | CSE1 | 0 | 0 |
225 | Vijayalakshmi A | 21ec116@psr.edu.in | ECE2 | 1 | 40 |
226 | Karthikeyan B | keyan4305@gmail.com | CSE1 | 1 | 50 |
227 | Dhulasi Kumar A | dhulasikumar2930@gmail.com | CSE1 | 2 | 40 |
228 | AZHAGIRIRAJAN R | 21ee010@psr.edu.in | BIOEEE | 0 | 0 |
229 | Manikandan L | manikandanmk7305@gmail.com | CSE1 | 1 | 41 |
230 | Abivarshan | abibro553@gmail.com | CSE1 | 0 | 0 |
231 | Sangili Arumugam E | sangili2025g@gmail.com | CSE2 | 0 | 0 |
232 | RENGARAJAN S | rengasvpr@gmail.com | BIOEEE | 0 | 0 |
233 | N.Nikila | nikila2710@gmail.com | BIOEEE | 0 | 0 |
234 | Thiyagarajan | thiyagarajan93333@gmail.com | CSE2 | 0 | 46 |
235 | Aadhavan | 21CS001@psr.edu.in | CSE1 | 0 | 0 |
236 | Sailaesh A | 22lec06@psr.edu.in | ECE2 | 0 | 0 |
237 | Ulagammalabinaya M | ulagammalm820@gmail.com | ECE2 | 1 | 28 |
238 | Ram Kumar M | 21bm033@psr.edu.in | BIOEEE | 0 | 0 |
239 | Mathana Ganeshan T | 21ec061@psr.edu.in | ECE2 | 3 | 0 |
240 | Ilakkiya G | Ilakkiyamahes7@gmail.com | BIOEEE | 0 | 0 |
241 | Tamilarasi M | tamilarasibe2004@gmail.com | BIOEEE | 0 | 0 |
242 | Amreetha | amreetha2002v@gmail.com | BIOEEE | 0 | 0 |
243 | Vishnu J | 2002vishnu2111@gmail.com | ECE2 | 0 | 0 |
244 | D.Nandhini | nanthunandhu44@gmail.com | BIOEEE | 0 | 0 |
245 | Paramashwari | paramu2710@gmail.com | BIOEEE | 0 | 0 |
246 | Dhayanithi K | 21bm010@psr.edu.in | BIOEEE | 0 | 0 |
247 | Anandharaj A | anandhalagarcse@gmail.com | CSE2 | 1 | 28 |
248 | Yasmin Fathima | fathimayasmin37@gmail.com | BIOEEE | 0 | 0 |
249 | Kathirvel | kathirvels4238@gmail.com | CSE2 | 1 | 48 |
250 | Palaniammal S | 22lec04@psr.edu.in | ECE2 | 1 | 29 |
251 | SARAVANA SELVAM M | saravanaselvam2004@gmail.com | BIOEEE | 0 | 0 |
252 | Amirthalakshmi A | amirthaannasamy@gmail.com | BIOEEE | 0 | 0 |
253 | Jayasri R | 21ec034@psr.edu.in | ECE2 | 0 | 0 |
254 | Dhayanithi K | dhayancpt111@gmail.com | BIOEEE | 0 | 0 |
255 | venisha M | venishamcs@gmail.com | CSE2 | 1 | 31 |
256 | Subramani k | subrama456@gmail.com | ECE1 | 0 | 0 |
257 | G.Veeragopal | 21ec106@psr.edu.in | ECE2 | 1 | 34 |
258 | Haridass T | 21ec026@psr.edu.in | ECE1 | 1 | 47 |
259 | VETRIVEL M | vetrivelswaminathan2@gmail.com | BIOEEE | 0 | 0 |
260 | PERIYAKALIYAPPAN | vighneshpk031@gmail.com | BIOEEE | 0 | 0 |
261 | VIMAL G | 21EC118@psr.edu.in | ECE2 | 1 | 0 |
262 | Pothiraj K | 21ec077@psr.edu.in | ECE2 | 1 | 0 |
263 | Krishnakumar M | 21ec048@psr.edu.in | ECE2 | 1 | 0 |
264 | ANGELSAHAYAM B | angelbillu2004@gmail.com | BIOEEE | 0 | 0 |
265 | Karthikeyan S | 21ec042@psr.edu.in | ECE2 | 2 | 52 |
266 | Jayaram B | 21ec032@psr.edu.in | ECE2 | 3 | 0 |
267 | S,M.Subramania kumar | manikumar22489@gmail.com | BIOEEE | 0 | 0 |
268 | Sakthivel | sakthivelrammohan@gmail.com | CSE2 | 0 | 0 |
269 | Prakash | balanmuthuprakash@gamil.com | CSE2 | 0 | 0 |
270 | Bhuvaneshwari P | bhuvaneshwarip0108@gmail.com | BIOEEE | 0 | 0 |
271 | Sangeetha S | ssangeetha1508@gmail.com | CSE2 | 1 | 28 |
272 | Swetha G | swethagurusamy10@gmail.com | ECE2 | 1 | 25 |
273 | C.Hema navanethem | hemanavaneetham563@gmail.com | ECE2 | 1 | 33 |
274 | Vinitha | svinitha2330@gmail.com | ECE2 | 1 | 34 |
275 | Baburaj S | babu18052004@gmail.com | ECE2 | 2 | 36 |
276 | Justus Ziegenbalg J | jjziegenbalg15@gmail.com | BIOEEE | 0 | 0 |
277 | Rubesha | 21ee043@psr.edu.in | BIOEEE | 0 | 0 |
278 | Kavitha M | kavisamy0508@gmail.com | CSE2 | 2 | 31 |
279 | vigneshkumar s | vigneshkumar8902@gmail.com | 2 | 0 | |
280 | Arun kumar S | 21ec010@psr.edu.in | ECE2 | 1 | 0 |
281 | KALIRAJ R | 21ee021@psr.edu.in | BIOEEE | 0 | 0 |
282 | R.VENKATESH | venkatesh8270295900@gmail.com | ECE2 | 1 | 41 |
283 | C.Hema navanethem | 21ec028@psr.edu.in | ECE2 | 0 | 0 |
284 | Abinayasundari | abinayasundari2004@gmail.com | BIOEEE | 0 | 0 |
285 | ANGELSAHAYAM B | 21BM005@psr.edu.in | BIOEEE | 0 | 0 |
286 | G. Vignesh | g.vignesh03122000@gmail.com | BIOEEE | 0 | 0 |
287 | vishnu j | 22LEC10@psr.edu.in | ECE2 | 3 | 0 |
288 | divyaeswari | 22lec01@psr.edu.in | ECE2 | 1 | 22 |
289 | S.SORNAMALYA | selvampriya8778920@gmail.com | 0 | 0 | |
290 | Harshitha S | harsitha822@gmail.com | BIOEEE | 0 | 0 |
291 | Dharshini | dharshinishankar05@gmail.com | BIOEEE | 0 | 0 |
292 | GNANASUBRAMANIYAM | gnanasubramani423@gmail.com | ECE2 | 0 | 0 |
293 | Gowtham M | 21ec025@psr.edu.in | ECE2 | 4 | 23 |
294 | Rahul | 21ee040@psr.edu.in | BIOEEE | 0 | 0 |
295 | kishore kumar A | 21ec046@psr.edu.in | ECE2 | 1 | 30 |
296 | JanakiramB | bjanakiram723@gmail.com | ECE2 | 0 | 0 |
297 | Jayaganesan J | 21ee016@psr.edu.in | BIOEEE | 0 | 0 |
298 | Chandru G | 21ec017@psr.edu.in | ECE2 | 2 | 25 |
299 | Abivarshan | lakshpandya027@gmail.com | CSE1 | 0 | 0 |
300 | JEYABALAJI L | 21ec037@psr.edu.in | ECE2 | 1 | 28 |
301 | Sugantha | ssugantha43@gmail.com | BIOEEE | 0 | 0 |
302 | Prakash | balanmuthuprakash@gmail.com | CSE2 | 4 | 0 |
303 | Ramkumar | rram06432@gmail.com | BIOEEE | 0 | 0 |
304 | ANGELSAHAYAM B | mbilavendran29@gmail.com | BIOEEE | 0 | 0 |
305 | Maharaja k | mahakingmahaking2oo4@gmail.com | BIOEEE | 1 | 32 |
306 | Arunprakash J | arunpraksh0403@gmail.com | BIOEEE | 0 | 0 |
307 | Ramamoorthi | ramamoorthikarunanithi586@gmail.com | BIOEEE | 0 | 0 |
308 | karthikeyan P | karthikey4112004@gmail.com | BIOEEE | 0 | 0 |
309 | Muthu Divya Lakshmi M | 21ec68@psr.edu.in | ECE2 | 0 | 0 |
310 | Muthu Divya Lakshmi M | divipavi0620@gmail.com | ECE2 | 1 | 30 |
311 | Vignesh J | 21ec112@psr.edu.in | ECE2 | 1 | 44 |
312 | Madhavan | Mad636985@gmail.com | BIOEEE | 0 | 0 |
313 | Nithyasri A | 21ec073@psr.edu.in | ECE1 | 0 | 0 |
314 | Raabiyathul Misria R | raabiyathulmisria1604@gmail.com | CSE2 | 0 | 0 |
315 | Merlin Esther I | merlinesther115@gmail.com | ECE1 | 0 | 0 |
316 | Renuka Devi s | renukaseenivasan1103@gmail.com | ECE1 | 2 | 33 |
317 | Shanmugapriya M | shanmugapriya28504@gmail.com | ECE2 | 1 | 37 |
318 | Rathika | 21ec080@psr.edu.in | ECE2 | 1 | 29 |
319 | Sudha SA | sudhasaran2002@gmail.com | ECE2 | 0 | 0 |
320 | Sudha SA | 21ec096@psr.edu.in | ECE2 | 2 | 0 |
321 | Nova | 21cs074@psr.edu.in | CSE2 | 0 | 0 |
322 | Nagarajan | 21ee035@psr.edu.in | BIOEEE | 0 | 0 |
323 | Mohamedsaalik | mohamedsaalikece@gmail.com | ECE1 | 0 | 0 |
324 | Nagarajan | nagarajanbalamurugan6380@gmail.com | BIOEEE | 0 | 0 |
325 | shiyamala | shiyamala2912@gmail.com | CSE1 | 0 | 0 |
326 | shiyamala | shiyamala2912@gmail.com | CSE1 | 0 | 0 |
327 | Abinaya A | 21cs002@psr.edu.in | CSE2 | 1 | 30 |
328 | Harikrishnan T | 21CS034@psr.edu.in | CSE1 | 0 | 0 |
329 | roshan | 21cs089@psr.edu.in | CSE2 | 1 | 39 |
330 | Pandiaraj S | 21ec074@psr.edu.in | ECE1 | 2 | 31 |
331 | naresh | 21CS070@psr.edu.in | CSE2 | 0 | 0 |
332 | Kannan | 21cs042@psr.edu.in | CSE2 | 0 | 0 |
333 | Nova | rajajega00@gmail.com | CSE2 | 1 | 43 |
334 | Mariselvam P | 21ec060@psr.edu.in | ECE2 | 1 | 32 |
335 | Narayani M | 22lec03@psr.edu.in | ECE2 | 1 | 0 |
336 | harish | 21ec027@psr.edu.in | ECE2 | 0 | 0 |
337 | sanjay G | sanjay51moorthy@gmail.com | ECE2 | 2 | 24 |
338 | harish | harish.m0705@gmail.com | ECE2 | 1 | 33 |
339 | NANDHINI R | 21CS068@psr.edu.in | CSE2 | 0 | 0 |
340 | Sivasridharan A | 21ec091@psr.edu.in | ECE2 | 1 | 37 |
341 | sathya | 21ec084@par.edu.in | ECE1 | 0 | 0 |
342 | karthikraja G | 21ec043@psr.edu.in | ECE2 | 0 | 0 |
343 | Jeyapriya K | jeyapriyajeyapriya4@gmail.com | ECE2 | 1 | 32 |
344 | M.sathya | neverevergaming8@gmail.com | ECE1 | 3 | 0 |
345 | ABITHA SHREE K | abithashreekalidass23@gmail.com | ECE1 | 1 | 37 |
346 | gnanasubramaniyam | gnanasubramani2345@gmail.com | ECE2 | 0 | 0 |
347 | kannan | kkannan95827@gmail.com | CSE2 | 1 | 47 |
348 | HARIDASS T | haridass19102003@gmail.com | ECE1 | 0 | 0 |
349 | harish | harish.m0706@gmail.com | ECE2 | 0 | 0 |
350 | harish | harish.m0707@gmail.com | ECE2 | 0 | 0 |
351 | Karthikeyan S | kkeyan4486@gmail.com | ECE2 | 0 | 0 |
352 | Karthikeyan S | kkeyan4486@gmail.com | ECE2 | 0 | 0 |
353 | harish | klempir0@gmail.com | ECE2 | 0 | 0 |
354 | Ajay R | ajayajay8838231339@psr.edu.in | ECE2 | 0 | 0 |
355 | SRI JAYA JOTHI M | srijayajothimariappan@gmail.com | PSRR | 0 | 0 |
356 | BHANUSRI G | 21ece001@psr.edu.in | PSRR | 0 | 0 |
357 | BRINDHA R A | brindhajay2003@gmail.com | PSRR | 0 | 0 |
358 | DIVIYA B | bdhiviya653@gmail.com | PSRR | 0 | 0 |
359 | Majeetha Banu K.H | 21cse024@psr.edu.in | PSRR | 0 | 0 |
360 | SATHYA S | 21cse038*@psr.edu.in | PSRR | 0 | 0 |
361 | NANDHINI P | nandhiniperiyanayagam@gmail.com | PSRR | 0 | 0 |
362 | PRISHA SIVASANKARI B | prishakavya04@gmail.com | PSRR | 0 | 0 |
363 | Karthikeyan S | 21ec042@gmail.com | ECE2 | 0 | 0 |
364 | BHANUSRI G | gbsri2004@gmail.com | PSRR | 0 | 0 |
365 | NIRMALADEVI K | nirmaladevikannan5@gmail.com | PSRR | 0 | 0 |
366 | Divya varshini T | divya.varsh810@gmail.com | PSRR | 0 | 0 |
367 | SHIVANI R | 21cse039@psr.edu.in | PSRR | 0 | 0 |
368 | vigneshkumar s | vickyviji8902@gmail.com | ECE2 | 2 | 0 |
369 | BHAVANI | bhava2025@gmail.com | PSRR | 0 | 0 |
370 | MANJULADEVI | 21ece004@psr.edu.in | PSRR | 0 | 0 |
371 | DEEPIKA M | 21cse007@psr.edu.in | PSRR | 0 | 0 |
372 | GAYATHRI S | 21cse010@psr.edu.in | PSRR | 0 | 0 |
373 | ANITHAKUMARI G | 21cse001@psr.edu.in | PSRR | 0 | 0 |
374 | K.Shyamala Devi | 21cse040@psr.edu.in | PSRR | 0 | 0 |
375 | VIGNESHWARI S | 21cse043@psr.edu.in | PSRR | 0 | 0 |
376 | Yuvaraja | thunderjackie07@gmail.com | CSE2 | 0 | 0 |
377 | SATHYA S | sathyasolaiyappan222@gmail.com | PSRR | 0 | 0 |
378 | Ayesha S | 21cse004@psr.edu.in | PSRR | 0 | 0 |
379 | MANJULADEVI | manju1172004@gmail.com | PSRR | 0 | 0 |
380 | DEEPA S | 21csee006@psr.edu.in | PSRR | 0 | 0 |
381 | Malesh Kumar V | maleshkuar0707@gmail.com | CSE2 | 0 | 0 |
382 | JOTHILAKSHMI R | 21cse016@psr.edu.in | PSRR | 0 | 0 |
383 | kartheeswaran k | keswaran186@gamil.com | BIOEEE | 0 | 0 |
384 | ARUNA DEVI G | 21cse002@psr.edu.in | PSRR | 0 | 0 |
385 | kartheeswaran k | 21ee022@psr.edu.in | BIOEEE | 0 | 0 |
386 | SNEKA V | 21cse042@psr.edu.in | PSRR | 0 | 0 |
387 | RAGAMMAL S | 21cse032@psr.edu.in | PSRR | 0 | 0 |
388 | BRINDHA R A | 21ece002@psr.edu.in | PSRR | 0 | 0 |
389 | DEEPIKA V | 21cse008@psr.edu.in | PSRR | 0 | 0 |
390 | SWETHA G | swethaganesan910@gmail.com | PSRR | 0 | 0 |
391 | K.Shyamala Devi | shyamalakannan04@gmail.com | PSRR | 0 | 0 |
392 | ANITHAKUMARI G | anithaaakash3@gmaill.com | PSRR | 0 | 0 |
393 | ANITHAKUMARI G | ragammalseenivasan@gmail.com | PSRR | 0 | 0 |
394 | GURUSATHIYA T | 21cse012@psrr.edu.in | PSRR | 0 | 0 |
395 | GURUSATHIYA T | 21gcse012@psrr.edu.in | PSRR | 0 | 0 |
396 | GURUSATHIYA T | gurusathiya04@gmail.com | PSRR | 0 | 0 |
397 | JEYANTHI V | 21cse015@psr.edu.in | PSRR | 0 | 0 |
398 | thangamari | thangamari.94@gmail.com | PSRR | 0 | 0 |
399 | Malini | maliniraj563@gmail.com | CSE2 | 0 | 0 |
400 | Karuppasamy K | 21ec044@psr.edu.in | ECE1 | 0 | 0 |
401 | SATHYA S | sathyapinky2004@gmail.com | PSRR | 0 | 0 |
402 | Muthulakshmi M | 21cse027@psr.edu.in | PSRR | 0 | 0 |
403 | Muthulakshmi M | 21cse026@psrr.edu.in | PSRR | 0 | 0 |
404 | MUTHU CHITRA U.S | muthuchitrau31@gmail.com | PSRR | 0 | 0 |
405 | DEEPA | deepa2362004@gmail.com | PSRR | 0 | 0 |
406 | DIVIYA B | comedyworld2311@gmail.com | PSRR | 0 | 0 |
407 | Maheswaran D | dmaheswaran17112003@gmail.com | ECE1 | 0 | 0 |
408 | Maheswaran D | dmaheswarn@gmail.com | ECE1 | 0 | 0 |
409 | Kaleeswari R | kaleeswari090204@gmail.com | PSRR | 0 | 0 |
410 | Nirmaladevi K | 21cse029@psrr.edu.in | PSRR | 0 | 0 |
411 | Nirmaladevi K | nirmaladevikannan9@gmail.com | PSRR | 0 | 0 |
412 | DHULA S | abishekdhula@gmail.com | ECE2 | 1 | 34 |
413 | DHULA S | dhulamaha25@gmail.com | ECE2 | 0 | 0 |
414 | S.SORNAMALYA | s1elvampriya8778920@gmail.com | BIOEEE | 0 | 0 |
415 | KANIKA G | kanika2832004@gmail.com | PSRR | 0 | 0 |
416 | Lakshmi Priya | bk5634074@gmail.com | PSRR | 0 | 0 |
417 | Aravinth B | aravindbeemaraj24@gmail.com | CSE1 | 2 | 0 |
418 | RAGAMMAL S | ramyaseenivasa23@gmail.com | PSRR | 0 | 0 |
419 | Loga sakthi | 21cse023*@psr.edu.in | PSRR | 0 | 0 |
420 | JENIFER I | jenifer200418@gmail.com | PSRR | 0 | 0 |
421 | JENIFER I | jeniferi18022004@gmail.com | PSRR | 0 | 0 |
422 | Genga Parameswari | 21cse011@psr.edu.in | PSRR | 0 | 0 |
423 | Genga Parameswari | gengakasi@gmail.com | PSRR | 0 | 0 |
424 | DIVYA VARSHINI T | divya.thayanithi810@gmail.com | PSRR | 0 | 0 |
425 | MALINI M | malinimurugan1912@gmail.com | PSRR | 0 | 0 |
426 | SAKTHIVEENA M | 21cse036@psr.edu.in | PSRR | 0 | 0 |
427 | MALINI M | 21cse025@psr.edu.in | PSRR | 0 | 0 |
428 | SAKTHIVEENA M | skthi10vna@gmail.com | PSRR | 0 | 0 |
429 | veerapandian | 21ec107@psr.edu.in | ECE1 | 2 | 30 |
430 | KAVITHA S | kavitha181003@gmail.com | PSRR | 0 | 0 |
431 | Narmatha A | narmatha0110004@gmail.com | PSRR | 0 | 0 |
432 | veerapandian | vijay.n2004g@gmail.com | ECE1 | 0 | 0 |
433 | INDHUJA M | 21ec029@psr.edu.in | ECE1 | 1 | 39 |
434 | JAYASRI M | 21ec033@psr.edu.in | ECE1 | 1 | 26 |
435 | Nagarajan A | nagarajan21ee035@gmail.com | BIOEEE | 0 | 0 |
436 | Majeetha Banu K.H | hasanmajeetha@gmail.com | PSRR | 0 | 0 |
437 | Majeetha Banu K.H | hasanmajeetha@gmail.com | PSRR | 0 | 0 |
438 | SIVAJOTHI M | sivajothi152004@gmail.com | PSRR | 0 | 0 |
439 | SARANI R | saranir458@gmail.com | PSRR | 0 | 0 |
440 | MUTHULAKSHMI M | muthulakshmi152004@gmail.com | PSRR | 0 | 0 |
441 | MALINI M | 21cse025@gmail.com | PSRR | 0 | 0 |
442 | KAVITHA S | 21cse021psrr@edu.in | PSRR | 0 | 0 |
443 | Jayaram B | jayaramchiyaan@gmai.com | ECE2 | 0 | 0 |
444 | S.SORNAMALYA | 21bm042@psr.edu.in | BIOEEE | 0 | 0 |
445 | Loga sakthi | 21cse023@psr.edu.in | PSRR | 0 | 0 |
446 | sakthivel | 22lcs10@psr.edu.in | CSE2 | 2 | 32 |
447 | Raja Priya.M | priya400230@gmail.com | PSRR | 0 | 0 |
448 | Ajay | ajayajay8838231339@gmail.com | ECE2 | 3 | 0 |
449 | Loga sakthi | logasakthi7@gmail.com | PSRR | 0 | 0 |
450 | Tharshini S | tharshinis460@gmail.com | CSE1 | 0 | 0 |
451 | Pandeeswari K | pandeeswari1502@gmail.com | CSE1 | 0 | 0 |
452 | BHAVANI | bhavab016@gmail.com | PSRR | 0 | 0 |
453 | AVANTHIYA J | avanthiyaj@gmail.com | CSE1 | 0 | 0 |
454 | Saravanan | 21cs095@psr.edu.in | CSE1 | 3 | 0 |
455 | DEEPA S | 21cse006@gmail.com | PSRR | 0 | 0 |
456 | KAVITHA S | kavi181003@gmail.com | PSRR | 0 | 0 |
457 | MALINI M | kavipriya1814@gmail.com | PSRR | 0 | 0 |
458 | DEEPA S | 21cse006@psr.edu.in | PSRR | 0 | 0 |
459 | S.SORNAMALYA | selvamsornamalya@gmail.com | BIOEEE | 0 | 0 |
460 | m.suresh | 21ec099@psr.edu.in | ECE2 | 2 | 0 |
461 | Arun kumar S | arunsubburaj27@gmail.com | ECE2 | 0 | 0 |
462 | SATHYA S | sathyayazhini04@gmail.com | PSRR | 0 | 0 |
463 | Somu Raj s | somuraj@gmail.com | CSE2 | 0 | 0 |
464 | Jeyaseelan I | 21cs037@psr.edu.in | CSE1 | 2 | 40 |
465 | sundharakumar s | sundharsuresh0408@gmail.com | CSE1 | 1 | 34 |
466 | venkateshwaran | mvenkateshwaran6340@gmail.com | ECE1 | 0 | 0 |
467 | Balavignesh K | balavignesh090204@gmail.com | ECE2 | 0 | 0 |
468 | harini sri | 21cse013@psrr.edu.in | PSRR | 0 | 0 |
469 | harini sri | 21cse013psrr@gmail.com | PSRR | 0 | 0 |
470 | harini sri | sri333hhh@gmail.com | PSRR | 0 | 0 |
471 | Raabiyathul Misria R | 21cs080@psr.edu.in | CSE2 | 0 | 0 |
472 | Thilagavathi D | 21cs113@psr.edu.in | CSE1 | 0 | 0 |
473 | Thiyagarajan | 22LCS13@psr.edu.in | CSE2 | 0 | 0 |
474 | Manojkumr K | 21cs056@psr.edu.in | CSE1 | 1 | 53 |
475 | Kannan | skannan4112003@gmail.com | CSE1 | 0 | 0 |
476 | Kannan | kannans4112003@gmail.com | CSE1 | 3 | 0 |
477 | Suresh Kumar m | suresh777789@gmail.com | CSE2 | 2 | 30 |
478 | Vijayalakshmi.A | 21ec116@psr.eduin | ECE2 | 0 | 0 |
479 | Shunmugalakshmi | 21ec087@psr.edu.in | ECE2 | 1 | 46 |
480 | MANOJKUMAR K | 21ec058@psr.edu.in | ECE1 | 2 | 30 |
481 | Gowsika M | 21ec024@psr.edu.in | 0 | 0 | |
482 | Vigneshkumar | 21ec114@psr.edu.in | 0 | 0 | |
483 | AYYANAR A | 21ec013@psr.edu.in | ECE1 | 1 | 26 |
484 | AYYANAR A | ayyanarak44@gmail.com | ECE1 | 0 | 0 |
485 | Ariharan | 21CS015@psr.edu.in | CSE2 | 0 | 0 |
486 | somuraj | somuraj388@gamil.com | CSE2 | 0 | 0 |
487 | Renuka Devi | 22lec05@psr.edu.in | ECE1 | 0 | 0 |
488 | Sangili Arumugam E | 21cs094@psr.edu.in | CSE2 | 0 | 0 |
489 | karthikraja G | klempir6@gmail.com | ECE2 | 3 | 0 |
490 | Mahalakshmi R | 21ec051@psr.edu.in | ECE1 | 1 | 35 |
491 | ARCHANA A | 21ec008@psr.edu.in | ECE1 | 1 | 33 |
492 | Somuraj | rocksomu388@gmail.com | CSE2 | 0 | 0 |
493 | Vignesh M | 21EC113@psr.edu.in | ECE1 | 2 | 41 |
494 | RABIN M | rabinma11022004@gmail.com | CSE2 | 1 | 63 |
495 | Mahesh Kumar S | 21ec054@psr.edu.in | ECE1 | 2 | 0 |
496 | Vijayaraj R | vijayrajramakrishnan@gmail.com | BIOEEE | 0 | 0 |
497 | Kalimuthu | 21ec040@psr.edu.in | ECE1 | 1 | 37 |
498 | Sangili Arumugam E | sangiliarumugamesakki2003@gmail.com | CSE2 | 1 | 32 |
499 | jeyasuriya k | 22lcs01@psr.edu.in | CSE1 | 0 | 0 |
500 | Prakash raj | prakashraj8205@gmail.com | BIOEEE | 0 | 0 |
501 | Gowsika M | mgowshika2003@gmail.com | ECE1 | 1 | 36 |
502 | gnanasubramani34@gmail.com | gnanasubramani34@gmail.com | ECE2 | 1 | 26 |
503 | Mahendran M | 21cs052@psr.edu.in | CSE1 | 0 | 0 |
504 | Gokul S | 21cs031@psr.edu.in | CSE2 | 0 | 0 |
505 | Rajesh | 22LCS08@psr.edu.in | CSE1 | 0 | 0 |
506 | Aravinth B | 21CS013@psr.edu.in | CSE1 | 0 | 0 |
507 | Aravinth B | cofalef403@inpsur.com | CSE1 | 0 | 0 |
508 | Vigneshkumar V | vigneshkumarvj04@gmail.com | ECE1 | 3 | 31 |
509 | Subramani k | subrama456k@gmail.com | ECE2 | 0 | 0 |
510 | Sivaprakasam | 21EC090@psr.edu.in | ECE2 | 0 | 0 |
511 | Mahesh a | 21ec052@psr.edu.in | ECE1 | 0 | 0 |
512 | Sivaprakasam | ssivaprakasam003@gmail.com | ECE2 | 1 | 19 |
513 | panner | 21cs075@psr.edu.in | CSE1 | 2 | 44 |
514 | Narmatha | narmatharengasamy2004@gmail.com | CSE2 | 1 | 37 |
515 | Johnson J | jkjohn092004@gmail.com | ECE1 | 1 | 51 |
516 | A. Mahesh | mageshalex41@gmail.com | ECE1 | 1 | 20 |