Forwarded from Deleted Account
Pass bro thnk u
Channel name was changed to ยซTCS PRA PYTHON/JAVA APRIL 12th ๐คกยป
๐จ๐จ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
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
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
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
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 ๐คโ ๐
We will uplode all the IEVOLVE COURSE ANSWERS here ๐ฏ๐ฏ
All assessments answers too uploded here ๐
All assessments answers too uploded here ๐