IRA Python
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
Start Your Exam at 6:45 PM
Join this for IRA Exam
πππ
https://t.me/Coding_solution_0
https://t.me/Coding_solution_0
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
Start Your Exam at 6:45 PM
Join this for IRA Exam
πππ
https://t.me/Coding_solution_0
https://t.me/Coding_solution_0
Guys IRA Rescheduled
See you Tomorrow
ππ
https://t.me/Coding_solution_0
https://t.me/Coding_solution_0
See you Tomorrow
ππ
https://t.me/Coding_solution_0
https://t.me/Coding_solution_0
Forwarded from Off Campus job Updates- Placement Material
π―Cognizant- Infra Off Campus
Post Name: Graduate Trainee/Engineer Trainee
Salary : βΉ 2,52,000.00 β βΉ 4,00,000.00 per Annum
*Apply link:* https://jobforfreshar.in/index.php/cognizant-infra/
JOIN Us For Moreβ€οΈβ€οΈ
https://t.me/offcampusjobs_0
Post Name: Graduate Trainee/Engineer Trainee
Salary : βΉ 2,52,000.00 β βΉ 4,00,000.00 per Annum
*Apply link:* https://jobforfreshar.in/index.php/cognizant-infra/
JOIN Us For Moreβ€οΈβ€οΈ
https://t.me/offcampusjobs_0
Forwarded from Off Campus job Updates- Placement Material
Tech Mahindra Off Campus | π2020/21 Batch | π°3.5LPA
β οΈ Deadline - 23rd Feb
registration.techmahindra.com/Candidate/Instructions.aspx
Telegram -
https://t.me/offcampusjobs_0
β οΈ Deadline - 23rd Feb
registration.techmahindra.com/Candidate/Instructions.aspx
Telegram -
https://t.me/offcampusjobs_0
def getprime(n):
sum = 0
for digit in str(n):
num=int(n)
if num > 1:
for i in range(2, int(num/2)+1):
if (num% i) == 0:
break
else:
sum += int(num)
Return sum
n = input()
Print (getprime(n))
Wipro Solution Available Hereππ
https://t.me/Coding_solution_0
https://t.me/Coding_solution_0
sum = 0
for digit in str(n):
num=int(n)
if num > 1:
for i in range(2, int(num/2)+1):
if (num% i) == 0:
break
else:
sum += int(num)
Return sum
n = input()
Print (getprime(n))
Wipro Solution Available Hereππ
https://t.me/Coding_solution_0
https://t.me/Coding_solution_0
num = 6172975
reversed_num = 0
while num != 0:
digit = num % 10
reversed_num = reversed_num * 10 + digit
num //= 10
print("Reversed Number: " + str(reversed_num))
Wipro Solution Available Hereππ
https://t.me/Coding_solution_0
https://t.me/Coding_solution_0
reversed_num = 0
while num != 0:
digit = num % 10
reversed_num = reversed_num * 10 + digit
num //= 10
print("Reversed Number: " + str(reversed_num))
Wipro Solution Available Hereππ
https://t.me/Coding_solution_0
https://t.me/Coding_solution_0
int main() {
char s[100];
int i;
printf("\nEnter a string : ");
gets(s);
for (i = 0; s[i]!='\0'; i++) {
if(s[i] >= 'a' && s[i] <= 'z') {
s[i] = s[i] - 32;
}
}
printf("\nString in Upper Case = %s", s);
return 0;
}
Warehouse Code
Wipro Solution Available Hereππ
https://t.me/Coding_solution_0
https://t.me/Coding_solution_0
char s[100];
int i;
printf("\nEnter a string : ");
gets(s);
for (i = 0; s[i]!='\0'; i++) {
if(s[i] >= 'a' && s[i] <= 'z') {
s[i] = s[i] - 32;
}
}
printf("\nString in Upper Case = %s", s);
return 0;
}
Warehouse Code
Wipro Solution Available Hereππ
https://t.me/Coding_solution_0
https://t.me/Coding_solution_0
#include<stdio.h>
#include<math.h>
int isPerfectSquare(int number)
{
int iVar;
float fVar;
fVar=pow(number,1.0/3.0);
iVar=(int)fVar;
if(iVar==fVar)
return number;
else
return 0;
}
int main()
{
int n;
scanf(β%dβ,&n);
int arr[n];
int i;
for(i = 0; i < n; i++)
{
scanf("%d",&arr[i]);
}
int count = 0;
for(i = 0; i < n; i++)
{
if(isPerfectSquare(arr[i]))
count++;
}
printf("%d",count);
return 0;
}
E-Commerce
β All cases passed no complicated errors β€οΈ
Wipro Solution Available Hereππ
https://t.me/Coding_solution_0
https://t.me/Coding_solution_0
#include<math.h>
int isPerfectSquare(int number)
{
int iVar;
float fVar;
fVar=pow(number,1.0/3.0);
iVar=(int)fVar;
if(iVar==fVar)
return number;
else
return 0;
}
int main()
{
int n;
scanf(β%dβ,&n);
int arr[n];
int i;
for(i = 0; i < n; i++)
{
scanf("%d",&arr[i]);
}
int count = 0;
for(i = 0; i < n; i++)
{
if(isPerfectSquare(arr[i]))
count++;
}
printf("%d",count);
return 0;
}
E-Commerce
β All cases passed no complicated errors β€οΈ
Wipro Solution Available Hereππ
https://t.me/Coding_solution_0
https://t.me/Coding_solution_0
Send the screenshot in big Group
Will share the solution β€οΈπ
Will share the solution β€οΈπ
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