7 352
Subscribers
-224 hours
-217 days
-10630 days
Posts Archive
+1
TechMahindra ON-CAMPUS EXAM β
β
β
contact: @MLCODER2
*IBM Hiring for Associate Systems Engineer| 2024 - BE/BTECH/MCA/MTech/MSC-CS,IT,ECE,EEE Only |Location: Bangalore |Package: 4.5LPA + 25K*
*Only for 2024 Graduatesβ¦π*
*Official Links π:*
Registration Process:
β’ Step 1. Apply to the job opening below on
IBM career portal:
Link - https://ibm.biz/BdGs58
β’ Step 2. Note the Person ID which will be shared in an email from IBM Talent Acquisition < talent@ibm.com>. Ensure you keep this ID handy for the next step.
β’ Step 3. Go to the link below and complete the radancy form.
β’ β
Link - https://ibm.biz/BdGs5s
Kindly ensure that you provide accurate academic information in the Radancy form.
*Apply Asap π₯*
*Note: Apply asap. Donβt Delay*
n=int(input())
arr=[int(i) for i in input().split()]
k=int(input())
print(*(arr[-k:]+arr[:-k]))
+3
WIPRO 12PM SLOT DONE SUCCESSFULLY β
Contact: @MLCODER2
x,y,z=map(int,input().split())
print(sum(sorted([x,y,z])[1:]))
#sum_of_maximum_two_numbers
print(sum(int(i) for i in input().split() if int(i)<0))
#sum of negative numbers
n=int(input())
arr=[int(i) for i in input().split()]
p=[i for i in arr if i>0]
mid=len(p)//2
if mid%2==0:print(p[mid-1])
else:print(p[mid])
#positviemidindex
