🚨🚨Rules for PRA PYTHON 🚨🚨
👉👉Install telegram in laptop and pin it to taskbar for copy pasting the codes. Taskbar will be visible during exam. So you can open telegram from bottom and copy paste codes during code section.
👉👉Start pra exam 15minutes late that is at 9:15 am
👉👉 Do not share or forward my codes. Telegram has special feature to know this . If found i will block you immediately
👉👉 You need not to write the code unless told else you will be responsible for your failure. Just copy paste it.
👉👉Install telegram in laptop and pin it to taskbar for copy pasting the codes. Taskbar will be visible during exam. So you can open telegram from bottom and copy paste codes during code section.
👉👉Start pra exam 15minutes late that is at 9:15 am
👉👉 Do not share or forward my codes. Telegram has special feature to know this . If found i will block you immediately
👉👉 You need not to write the code unless told else you will be responsible for your failure. Just copy paste it.
copy paste like normal
dont type it takes time
1 warning we will get
accept and continue
dont type it takes time
1 warning we will get
accept and continue
Forwarded from 🃏EXAMCELL SOLUTIONS🤡 (exam Cracker)
⭐⭐ TCS PRA JAVA ⭐⭐
APRIL 12th 🔥
@examcell936 🃏
@examcracker 🤡
📌📌 Telegram :
https://t.me/examcellsolutions
https://t.me/examcellsolutions
APRIL 12th 🔥
@examcell936 🃏
@examcracker 🤡
📌📌 Telegram :
https://t.me/examcellsolutions
https://t.me/examcellsolutions
👍1
Forwarded from 🃏EXAMCELL SOLUTIONS🤡 (exam Cracker)
⭐⭐ TCS PRA PYTHON ⭐⭐
APRIL 12th 🔥
@examcell936 🃏
@examcracker 🤡
📌📌 Telegram :
https://t.me/examcellsolutions
https://t.me/examcellsolutions
APRIL 12th 🔥
@examcell936 🃏
@examcracker 🤡
📌📌 Telegram :
https://t.me/examcellsolutions
https://t.me/examcellsolutions
👍1
Forwarded from 🃏EXAMCELL SOLUTIONS🤡 (exam Cracker)
⭐⭐ TCS PRA JAVA ⭐⭐
APRIL 12th 🔥
@examcell936 🃏
@examcracker 🤡
📌📌 Telegram :
https://t.me/examcellsolutions
https://t.me/examcellsolutions
APRIL 12th 🔥
@examcell936 🃏
@examcracker 🤡
📌📌 Telegram :
https://t.me/examcellsolutions
https://t.me/examcellsolutions
class Toy:
def init(self,id,name,quantity):
self.id=id
self.name=name
self.quantity=quantity
class ToyStore:
def init(self,toyStoreName,toyList):
self.toyStoreName=toyStoreName
self.toyList=toyList
def findToyWithMaximumQuality(self):
if len(self.toyList)==0:
return None
else:
max_obj = max(self.toyList, key=lambda x:x.quantity)
return max_obj
def sortToyById(self):
if len(self.toyList)==0:
return None
else:
sorted_list = sorted(self.toyList, key=lambda x:x.id)
return sorted_list
n = int(input())
toyList = []
for i in range(n):
id = int(input())
name = (input())
quantity = float(input())
s = Toy(id,name,quantity)
toyList.append(s)
d = ToyStore("Dep1", toyList)
o1 = d.findToyWithMaximumQuality()
if o1==None:
print("No Data Found")
else:
print(o1.id)
print(o1.name)
print(o1.quantity)
o2 = d.sortToyById()
if o2==None:
print("No Data Found")
else:
for o in o2:
print(o.id)
PYTHON CODE
def init(self,id,name,quantity):
self.id=id
self.name=name
self.quantity=quantity
class ToyStore:
def init(self,toyStoreName,toyList):
self.toyStoreName=toyStoreName
self.toyList=toyList
def findToyWithMaximumQuality(self):
if len(self.toyList)==0:
return None
else:
max_obj = max(self.toyList, key=lambda x:x.quantity)
return max_obj
def sortToyById(self):
if len(self.toyList)==0:
return None
else:
sorted_list = sorted(self.toyList, key=lambda x:x.id)
return sorted_list
n = int(input())
toyList = []
for i in range(n):
id = int(input())
name = (input())
quantity = float(input())
s = Toy(id,name,quantity)
toyList.append(s)
d = ToyStore("Dep1", toyList)
o1 = d.findToyWithMaximumQuality()
if o1==None:
print("No Data Found")
else:
print(o1.id)
print(o1.name)
print(o1.quantity)
o2 = d.sortToyById()
if o2==None:
print("No Data Found")
else:
for o in o2:
print(o.id)
PYTHON CODE
awk 'BEGIN{FS="#";count=0;IGNORECASE=1}
{
if($4 > 300)count++;
}
END{
print "Total count: "count;
}'
Unix
{
if($4 > 300)count++;
}
END{
print "Total count: "count;
}'
Unix
class Toy:
def init(self,id,name,quantity):
self.id=id
self.name=name
self.quantity=quantity
class ToyStore:
def init(self,toyStoreName,toyList):
self.toyStoreName=toyStoreName
self.toyList=toyList
def findToyWithMaximumQuality(self):
if len(self.toyList)==0:
return None
else:
max_obj = max(self.toyList, key=lambda x:x.quantity)
return max_obj
def sortToyById(self):
if len(self.toyList)==0:
return None
else:
sorted_list = sorted(self.toyList, key=lambda x:x.id)
return sorted_list
n = int(input())
toyList = []
for i in range(n):
id = int(input())
name = (input())
quantity = float(input())
s = Toy(id,name,quantity)
toyList.append(s)
d = ToyStore("Dep1", toyList)
o1 = d.findToyWithMaximumQuality()
if o1==None:
print("No Data Found")
else:
print(o1.id)
print(o1.name)
print(o1.quantity)
o2 = d.sortToyById()
if o2==None:
print("No Data Found")
else:
for o in o2:
print(o.id)
def init(self,id,name,quantity):
self.id=id
self.name=name
self.quantity=quantity
class ToyStore:
def init(self,toyStoreName,toyList):
self.toyStoreName=toyStoreName
self.toyList=toyList
def findToyWithMaximumQuality(self):
if len(self.toyList)==0:
return None
else:
max_obj = max(self.toyList, key=lambda x:x.quantity)
return max_obj
def sortToyById(self):
if len(self.toyList)==0:
return None
else:
sorted_list = sorted(self.toyList, key=lambda x:x.id)
return sorted_list
n = int(input())
toyList = []
for i in range(n):
id = int(input())
name = (input())
quantity = float(input())
s = Toy(id,name,quantity)
toyList.append(s)
d = ToyStore("Dep1", toyList)
o1 = d.findToyWithMaximumQuality()
if o1==None:
print("No Data Found")
else:
print(o1.id)
print(o1.name)
print(o1.quantity)
o2 = d.sortToyById()
if o2==None:
print("No Data Found")
else:
for o in o2:
print(o.id)
class Toy:
def init__(self,id,name,quantity):
self.id=id @examcell
self.name=name
self.quantity=quantity
class ToyStore:
def init(self,toyStoreName,toyList):
self.toyStoreName=toyStoreName
self.toyList=toyList
def findToyWithMaximumQuality(self):
if len(self.toyList)==0:
return None
else:
max_obj = max(self.toyList, key=lambda x:x.quantity) @examcell936
return max_obj
def sortToyById(self):
if len(self.toyList)==0:
return None
else:
sorted_list = sorted(self.toyList, key=lambda x:x.id)
return sorted_list
n = int(input())
toyList = []
for i in range(n):
id = int(input())
name = (input())
quantity = float(input())
s = Toy(id,name,quantity)
toyList.append(s)
d = ToyStore("Dep1", toyList)
o1 = d.findToyWithMaximumQuality()
if o1==None:
print("No Data Found")
else:
print(o1.id)
print(o1.name)
print(o1.quantity)
o2 = d.sortToyById()
if o2==None:
print("No Data Found")
else:
for o in o2:
print(o.id)
PYTHON TOY CODE 💯💯
TCS PRA APRIL 12 🙌🙌
📌📌TELEGRAM :
https://t.me/examcellsolutions
https://t.me/examcellsolutions
def init__(self,id,name,quantity):
self.id=id @examcell
self.name=name
self.quantity=quantity
class ToyStore:
def init(self,toyStoreName,toyList):
self.toyStoreName=toyStoreName
self.toyList=toyList
def findToyWithMaximumQuality(self):
if len(self.toyList)==0:
return None
else:
max_obj = max(self.toyList, key=lambda x:x.quantity) @examcell936
return max_obj
def sortToyById(self):
if len(self.toyList)==0:
return None
else:
sorted_list = sorted(self.toyList, key=lambda x:x.id)
return sorted_list
n = int(input())
toyList = []
for i in range(n):
id = int(input())
name = (input())
quantity = float(input())
s = Toy(id,name,quantity)
toyList.append(s)
d = ToyStore("Dep1", toyList)
o1 = d.findToyWithMaximumQuality()
if o1==None:
print("No Data Found")
else:
print(o1.id)
print(o1.name)
print(o1.quantity)
o2 = d.sortToyById()
if o2==None:
print("No Data Found")
else:
for o in o2:
print(o.id)
PYTHON TOY CODE 💯💯
TCS PRA APRIL 12 🙌🙌
📌📌TELEGRAM :
https://t.me/examcellsolutions
https://t.me/examcellsolutions
👍1
class Toy:
def init__(self,id,name,quantity):
self.id=id @examcell
self.name=name
self.quantity=quantity
class ToyStore:
def init__(self,toyStoreName,toyList):
self.toyStoreName=toyStoreName
self.toyList=toyList
def findToyWithMaximumQuality(self):
if len(self.toyList)==0:
return None
else:
max_obj = max(self.toyList, key=lambda x:x.quantity) @examcell936
return max_obj
def sortToyById(self):
if len(self.toyList)==0:
return None
else:
sorted_list = sorted(self.toyList, key=lambda x:x.id)
return sorted_list
n = int(input())
toyList = []
for i in range(n):
id = int(input())
name = (input())
quantity = float(input())
s = Toy(id,name,quantity)
toyList.append(s)
d = ToyStore("Dep1", toyList)
o1 = d.findToyWithMaximumQuality()
if o1==None:
print("No Data Found")
else:
print(o1.id)
print(o1.name)
print(o1.quantity)
o2 = d.sortToyById()
if o2==None:
print("No Data Found")
else:
for o in o2:
print(o.id)
PYTHON TOY CODE 💯💯
TCS PRA APRIL 12 🙌🙌
📌📌TELEGRAM :
https://t.me/examcellsolutions
https://t.me/examcellsolutions
def init__(self,id,name,quantity):
self.id=id @examcell
self.name=name
self.quantity=quantity
class ToyStore:
def init__(self,toyStoreName,toyList):
self.toyStoreName=toyStoreName
self.toyList=toyList
def findToyWithMaximumQuality(self):
if len(self.toyList)==0:
return None
else:
max_obj = max(self.toyList, key=lambda x:x.quantity) @examcell936
return max_obj
def sortToyById(self):
if len(self.toyList)==0:
return None
else:
sorted_list = sorted(self.toyList, key=lambda x:x.id)
return sorted_list
n = int(input())
toyList = []
for i in range(n):
id = int(input())
name = (input())
quantity = float(input())
s = Toy(id,name,quantity)
toyList.append(s)
d = ToyStore("Dep1", toyList)
o1 = d.findToyWithMaximumQuality()
if o1==None:
print("No Data Found")
else:
print(o1.id)
print(o1.name)
print(o1.quantity)
o2 = d.sortToyById()
if o2==None:
print("No Data Found")
else:
for o in o2:
print(o.id)
PYTHON TOY CODE 💯💯
TCS PRA APRIL 12 🙌🙌
📌📌TELEGRAM :
https://t.me/examcellsolutions
https://t.me/examcellsolutions
Forwarded from 🃏EXAMCELL SOLUTIONS🤡 (BOSS)
Forwarded from bharath__yuvi_
Transformed Wings1_Associate_PDF.pdf
1.1 MB
HI TCSer's ❤️
🚨PRA MAY 10th and MAY 12th ✅
Slots are open ✅ 🚨🚨
👉 Guaranteed 80+ ✅✅
👉 All Mcqs + Unix code + Java/Python code will be provided 💯💯
👉 Scroll up 👆👆 to check our acchivements🎉🎉✅
Only Limited seats ⚠️⚠️
Book ur slot ASAP 🏃🏃🏃🏃
👇 For slot booking 👇
@codeguru63
@codeguru63
📌📌 Telegram:
https://t.me/tcsprajavapythonitis
https://t.me/tcsprajavapythonitis
🚨PRA MAY 10th and MAY 12th ✅
Slots are open ✅ 🚨🚨
👉 Guaranteed 80+ ✅✅
👉 All Mcqs + Unix code + Java/Python code will be provided 💯💯
👉 Scroll up 👆👆 to check our acchivements🎉🎉✅
Only Limited seats ⚠️⚠️
Book ur slot ASAP 🏃🏃🏃🏃
👇 For slot booking 👇
@codeguru63
@codeguru63
📌📌 Telegram:
https://t.me/tcsprajavapythonitis
https://t.me/tcsprajavapythonitis
👍1
Don't belive for fake person for ur PRA EXAM 🙌
Don't waste ur PRA attempt 😔
We promising u for ur Clearence of PRA PYTHON / JAVA in first attempt with 80+ clearence 💯💯💯✅
Don't go for fake persons Just belive on us 🤞✅🙌
Don't waste ur PRA attempt 😔
We promising u for ur Clearence of PRA PYTHON / JAVA in first attempt with 80+ clearence 💯💯💯✅
Don't go for fake persons Just belive on us 🤞✅🙌
👍1
We will uplode all the IEVOLVE COURSE ANSWERS here 💯💯
All assessments answers too uploded here 🙌
All assessments answers too uploded here 🙌