PYTHON
========
1.Robotics
2.True
3.all of the above
4. Value
5. Inexpensive
6. 13 4
7. option B
8. A&b
9. Prioritize.....
10. Interest level of the users
11. D
12. A
13. B
14.C
15.c
16.b
17. Inner
18. B
19.c
20.B
21.A
22. B
23. B
24. D
25. B
26. A
27. B
28. apple
29. A
30. C
31. A
32. B
33. A
34. C
35. B
36. Error
37. n
38. A
39. A
40. A
41. 5
42. [('123', 'Ayansh'), ('125', 'Aadil'), ('126', 'Barkha')]
43. HELLO
44. [76,54,99]
45. Error
46. {3,a}
47. b
48. a
49. 1
50. 3210.
https://t.me/Coding_solution_0
========
1.Robotics
2.True
3.all of the above
4. Value
5. Inexpensive
6. 13 4
7. option B
8. A&b
9. Prioritize.....
10. Interest level of the users
11. D
12. A
13. B
14.C
15.c
16.b
17. Inner
18. B
19.c
20.B
21.A
22. B
23. B
24. D
25. B
26. A
27. B
28. apple
29. A
30. C
31. A
32. B
33. A
34. C
35. B
36. Error
37. n
38. A
39. A
40. A
41. 5
42. [('123', 'Ayansh'), ('125', 'Aadil'), ('126', 'Barkha')]
43. HELLO
44. [76,54,99]
45. Error
46. {3,a}
47. b
48. a
49. 1
50. 3210.
https://t.me/Coding_solution_0
Tcs IRA java.answers:
-----------------------------------
1.)All of the Above
2.)Volume,velocity,variety
,veracity
3.)veracity.
4.)True
5.)50
6.)offering others.....productivity.
7.)white socks are seen....
8.Trap of assumptions
9.)cluster all products....
10.)The project proposals should be...
11.)C.)Tata consultancy services ...
12.)Error
13.)....Begin and end blocks
14.)grep myempid""FuncName"*
15.)awk-F" | " $1=222{print}`Student
16.)alter table employee alter assets int
17.)check
18.)False
19.)101,null,103
20.)*
25.)Sql%found
35.)<br>
36)local variables
37.)I only
38.)100
39.)line 1
https://t.me/Coding_solution_0
-----------------------------------
1.)All of the Above
2.)Volume,velocity,variety
,veracity
3.)veracity.
4.)True
5.)50
6.)offering others.....productivity.
7.)white socks are seen....
8.Trap of assumptions
9.)cluster all products....
10.)The project proposals should be...
11.)C.)Tata consultancy services ...
12.)Error
13.)....Begin and end blocks
14.)grep myempid""FuncName"*
15.)awk-F" | " $1=222{print}`Student
16.)alter table employee alter assets int
17.)check
18.)False
19.)101,null,103
20.)*
25.)Sql%found
35.)<br>
36)local variables
37.)I only
38.)100
39.)line 1
https://t.me/Coding_solution_0
Forwarded from Off Campus job Updates- Placement Material
*Its a fantastic News for Final Year Studentsπ, Graduatesπ¨π»βπ and people who have just started their career* .
π€―β’ Pay Only When you land a JOB. Yes, You are right!! Why pay hefty amount on courses Initially ?
π»β’ A 9 Months coding bootcamp on Web Development- Learn Full Stack development, DS and Algo, System Design and work on various course projects.
π΅. An Average Package of 7.8 Lakhs offered among all the batches of career camp.
πβ’ Get Your career Started in product based organisations like RazorPAy, Paytm, Snaphunt etc.
*Only few seats remain*!!
Register Now- https://bit.ly/3hah5VW
Last date for the registration- 27th Feb
π€―β’ Pay Only When you land a JOB. Yes, You are right!! Why pay hefty amount on courses Initially ?
π»β’ A 9 Months coding bootcamp on Web Development- Learn Full Stack development, DS and Algo, System Design and work on various course projects.
π΅. An Average Package of 7.8 Lakhs offered among all the batches of career camp.
πβ’ Get Your career Started in product based organisations like RazorPAy, Paytm, Snaphunt etc.
*Only few seats remain*!!
Register Now- https://bit.ly/3hah5VW
Last date for the registration- 27th Feb
Solution Available here β€οΈβ€οΈ
Join Now
https://t.me/offcampusjobs_0
https://t.me/offcampusjobs_0
Join Now
https://t.me/offcampusjobs_0
https://t.me/offcampusjobs_0
Forwarded from Off Campus job Updates- Placement Material
Capgemini Off Campus Drive | π2019/20/21 Batch | π°3LPAβ οΈ
Deadline - 25th Febapp.joinsuperset.com/join/#/signup/student/jobprofiles/77c7915f-c199-4f68-95fc-daca7bf3bc11
Telegram - https://t.me/offcampusjobs_0
Forwarded from Off Campus job Updates- Placement Material
Quick Heal | π2020/21/22 Batch | π°5.25LPAmatch.myanatomy.in/sc/620e22a09d97cf502c2a5b74/n
Telegram - https://t.me/offcampusjobs_0
# Enter your code here. Read input from STDIN. Print output to STDOUT
class Patient:
def init(self,code,name,age,counsellorName,billAmount):
self.code= code
self.name= name
self.age = age
self.counsellorName = counsellorName
self.billAmount = billAmount
class Counselllor:
def init(self,cn,ptList):
self.cn = cn
self.ptList = ptList
def findPatientWithMinimumAge(self):
if self.ptList!=[]:
return sorted(self.ptList,key=lambda x:x.age)[0]
else:
return None
def sortPatientByBillAmount(self):
if self.ptList!=[]:
return sorted(self.ptList,key=lambda x:x.billAmount)
else:
return None
ptList = []
for i in range(int(input())):
obj = Patient(input(),input(),int(input()),input(),float(input()))
ptList.append(obj)
p = Counselllor("Johny",ptList)
mV = p.findPatientWithMinimumAge()
if mV!=None:
print(mV.code)
print(mV.name)
print(mV.age)
print(mV.counsellorName)
print(mV.billAmount)
else:
print("No Data Found.")
s = p.sortPatientByBillAmount()
if s!=None:
for i in s:
print(i.billAmount)
else:
print("No Data Found.")
https://t.me/Coding_solution_0
class Patient:
def init(self,code,name,age,counsellorName,billAmount):
self.code= code
self.name= name
self.age = age
self.counsellorName = counsellorName
self.billAmount = billAmount
class Counselllor:
def init(self,cn,ptList):
self.cn = cn
self.ptList = ptList
def findPatientWithMinimumAge(self):
if self.ptList!=[]:
return sorted(self.ptList,key=lambda x:x.age)[0]
else:
return None
def sortPatientByBillAmount(self):
if self.ptList!=[]:
return sorted(self.ptList,key=lambda x:x.billAmount)
else:
return None
ptList = []
for i in range(int(input())):
obj = Patient(input(),input(),int(input()),input(),float(input()))
ptList.append(obj)
p = Counselllor("Johny",ptList)
mV = p.findPatientWithMinimumAge()
if mV!=None:
print(mV.code)
print(mV.name)
print(mV.age)
print(mV.counsellorName)
print(mV.billAmount)
else:
print("No Data Found.")
s = p.sortPatientByBillAmount()
if s!=None:
for i in s:
print(i.billAmount)
else:
print("No Data Found.")
https://t.me/Coding_solution_0
int main()
(
char name[20];
funcionally for event pas on grocery Gems A certain amount of reward points will be given the user if they use a credit card for the payment Reward points are calculated by the sum of all the add digits of the bill amount for the user.
10
return 0;
9
13
14
15
Write an algorithm which will calculate the reward points for the user based on the bill amount.
16
#include<stdio.h>
17
18
int main()
19
{
20
billAmount, representing the user's bill amount.
21
Output
Print an integer representing the reward points given to the user.
Example
Input:
1234567
Output:
16
23
}
// write output to STDOUT
*/
// Read input from STDIN
scanf("%s", name); printf("Hello %a", name);
11
12
// Warning: Printing unwanted or ill-formatted data to output will c
Input
The input consists of an integer
// Write your code here return 0;
https://t.me/Coding_solution_0
(
char name[20];
funcionally for event pas on grocery Gems A certain amount of reward points will be given the user if they use a credit card for the payment Reward points are calculated by the sum of all the add digits of the bill amount for the user.
10
return 0;
9
13
14
15
Write an algorithm which will calculate the reward points for the user based on the bill amount.
16
#include<stdio.h>
17
18
int main()
19
{
20
billAmount, representing the user's bill amount.
21
Output
Print an integer representing the reward points given to the user.
Example
Input:
1234567
Output:
16
23
}
// write output to STDOUT
*/
// Read input from STDIN
scanf("%s", name); printf("Hello %a", name);
11
12
// Warning: Printing unwanted or ill-formatted data to output will c
Input
The input consists of an integer
// Write your code here return 0;
https://t.me/Coding_solution_0
n=int(input())
n=n//2
l=list(map(int,input().split(" ")))
l.sort()
print(l[n-1]+l[n])
https://t.me/Coding_solution_0
n=n//2
l=list(map(int,input().split(" ")))
l.sort()
print(l[n-1]+l[n])
https://t.me/Coding_solution_0