target_idx += 1
sub_idx += 1
total_deletions = len(sub_str) - match_length
return match_length, total_deletions
def process_input():
inp = sys.stdin.read().splitlines()
pos = 0
num_strings = int(inp[pos].strip())
pos += 1
Office rostering code
#include <iostream>
#include <vector>
#include <set>
#include <algorithm>
using namespace std;
int main() {
int n, m, k, days = 1, activeCount = 0;
cin >> n >> m;
vector<set<int>> connections(n);
for (int i = 0, u, v; i < m; ++i) {
cin >> u >> v;
connections[u].insert(v);
connections[v].insert(u);
}
cin >> k;
vector<bool> active(n, true);
activeCount = n;
while (activeCount < k) {
vector<bool> nextState(n, false);
for (int i = 0; i < n; ++i) {
int neighborCount = 0;
for (int neighbor : connections[i]) {
neighborCount += active[neighbor];
}
if (active[i] && neighborCount == 3) {
nextState[i] = true;
} else if (!active[i] && neighborCount < 3) {
nextState[i] = true;
}
}
active = nextState;
activeCount += count(active.begin(), active.end(), true);
++days;
}
cout << days;
return 0;
}
BUZZ DAY SALE
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main() {
int n;
cin >> n;
vector<int> ids(n), costs(n);
for (int i = 0; i < n; i++) cin >> ids[i];
for (int i = 0; i < n; i++) cin >> costs[i];
int budget;
cin >> budget;
int maxItems = 0, minCost = 0;
for (int i = 0; i < n; i++) {
int itemCost = costs[i];
int quantity = budget / itemCost;
if (quantity > 0) {
int currentItems = 0, currentCost = 0;
for (int j = 0; j < n; j++) {
if (i != j && ids[i] % ids[j] == 0) {
currentItems += quantity;
currentCost += costs[j] * quantity;
}
}
if (currentItems > maxItems || (currentItems == maxItems && currentCost > minCost)) {
maxItems = currentItems;
minCost = currentCost;
}
}
}
cout << maxItems << " " << minCost << endl;
return 0;
}
Arrange map code
from collections import deque
import itertools
def shortest_path(grid, n):
start, end = None, None
for i in range(n):
for j in range(n):
if grid[i][j] == 'S':
start = (i, j)
elif grid[i][j] == 'D':
end = (i, j)
queue = deque([(start, 0)])
visited = {start}
while queue:
(x, y), distance = queue.popleft()
if (x, y) == end:
return distance
for nx, ny in [(x+1, y), (x-1, y), (x, y+1), (x, y-1)]:
if 0 <= nx < n and 0 <= ny < n and (nx, ny) not in visited and grid[nx][ny] != 'T':
visited.add((nx, ny))
queue.append(((nx, ny), distance + 1))
return float('inf')
def split_grid(grid, size, block):
sections = []
for i in range(0, size, block):
for j in range(0, size, block):
block_section = [grid[x][j:j+block] for x in range(i, i+block)]
sections.append(block_section)
return sections
def rebuild_grid(order, sections, size, block):
full_grid = [["" for _ in range(size)] for _ in range(size)]
num_blocks = size // block
for index, section_index in enumerate(order):
section = sections[section_index]
row_offset = (index // num_blocks) * block
col_offset = (index % num_blocks) * block
for i in range(block):
for j in range(block):
full_grid[row_offset + i][col_offset + j] = section[i][j]
return full_grid
def main():
size, block_size = map(int, input().split())
original_grid = [list(input().strip()) for _ in range(size)]
sections = split_grid(original_grid, size, block_size)
total_sections = (size // block_size
sub_idx += 1
total_deletions = len(sub_str) - match_length
return match_length, total_deletions
def process_input():
inp = sys.stdin.read().splitlines()
pos = 0
num_strings = int(inp[pos].strip())
pos += 1
Office rostering code
#include <iostream>
#include <vector>
#include <set>
#include <algorithm>
using namespace std;
int main() {
int n, m, k, days = 1, activeCount = 0;
cin >> n >> m;
vector<set<int>> connections(n);
for (int i = 0, u, v; i < m; ++i) {
cin >> u >> v;
connections[u].insert(v);
connections[v].insert(u);
}
cin >> k;
vector<bool> active(n, true);
activeCount = n;
while (activeCount < k) {
vector<bool> nextState(n, false);
for (int i = 0; i < n; ++i) {
int neighborCount = 0;
for (int neighbor : connections[i]) {
neighborCount += active[neighbor];
}
if (active[i] && neighborCount == 3) {
nextState[i] = true;
} else if (!active[i] && neighborCount < 3) {
nextState[i] = true;
}
}
active = nextState;
activeCount += count(active.begin(), active.end(), true);
++days;
}
cout << days;
return 0;
}
BUZZ DAY SALE
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main() {
int n;
cin >> n;
vector<int> ids(n), costs(n);
for (int i = 0; i < n; i++) cin >> ids[i];
for (int i = 0; i < n; i++) cin >> costs[i];
int budget;
cin >> budget;
int maxItems = 0, minCost = 0;
for (int i = 0; i < n; i++) {
int itemCost = costs[i];
int quantity = budget / itemCost;
if (quantity > 0) {
int currentItems = 0, currentCost = 0;
for (int j = 0; j < n; j++) {
if (i != j && ids[i] % ids[j] == 0) {
currentItems += quantity;
currentCost += costs[j] * quantity;
}
}
if (currentItems > maxItems || (currentItems == maxItems && currentCost > minCost)) {
maxItems = currentItems;
minCost = currentCost;
}
}
}
cout << maxItems << " " << minCost << endl;
return 0;
}
Arrange map code
from collections import deque
import itertools
def shortest_path(grid, n):
start, end = None, None
for i in range(n):
for j in range(n):
if grid[i][j] == 'S':
start = (i, j)
elif grid[i][j] == 'D':
end = (i, j)
queue = deque([(start, 0)])
visited = {start}
while queue:
(x, y), distance = queue.popleft()
if (x, y) == end:
return distance
for nx, ny in [(x+1, y), (x-1, y), (x, y+1), (x, y-1)]:
if 0 <= nx < n and 0 <= ny < n and (nx, ny) not in visited and grid[nx][ny] != 'T':
visited.add((nx, ny))
queue.append(((nx, ny), distance + 1))
return float('inf')
def split_grid(grid, size, block):
sections = []
for i in range(0, size, block):
for j in range(0, size, block):
block_section = [grid[x][j:j+block] for x in range(i, i+block)]
sections.append(block_section)
return sections
def rebuild_grid(order, sections, size, block):
full_grid = [["" for _ in range(size)] for _ in range(size)]
num_blocks = size // block
for index, section_index in enumerate(order):
section = sections[section_index]
row_offset = (index // num_blocks) * block
col_offset = (index % num_blocks) * block
for i in range(block):
for j in range(block):
full_grid[row_offset + i][col_offset + j] = section[i][j]
return full_grid
def main():
size, block_size = map(int, input().split())
original_grid = [list(input().strip()) for _ in range(size)]
sections = split_grid(original_grid, size, block_size)
total_sections = (size // block_size
) ** 2
start_section = end_section = None
for idx, section in enumerate(sections):
for row in section:
if 'S' in row:
start_section = idx
if 'D' in row:
end_section = idx
other_sections = [i for i in range(total_sections) if i not in {start_section, end_section}]
min_path = float('inf')
for perm in itertools.permutations(other_sections):
order = [start_section] + list(perm) + [end_section]
rebuilt_grid = rebuild_grid(order, sections, size, block_size)
min_path = min(min_path, shortest_path(rebuilt_grid, size))
return min_path
if name == "main":
print(main())
ALTERNATING STRING
import java.util.Scanner;
public class AlternatingStringProcessor {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
String binaryString = scanner.nextLine();
int length = binaryString.length();
int[] values = new int[length];
for (int i = 0; i < length; i++) {
values[i] = scanner.nextInt();
}
int result = 0;
int currentDigit = binaryString.charAt(0) - '0';
int lastValue = values[0];
for (int i = 1; i < length; i++) {
int nextDigit = binaryString.charAt(i) - '0';
if (nextDigit == currentDigit) {
result += Math.min(lastValue, values[i]);
lastValue = Math.max(lastValue, values[i]);
} else {
currentDigit = nextDigit;
lastValue = values[i];
}
}
System.out.println(result);
}
}
TCS CodeVita
@itjobsservices
start_section = end_section = None
for idx, section in enumerate(sections):
for row in section:
if 'S' in row:
start_section = idx
if 'D' in row:
end_section = idx
other_sections = [i for i in range(total_sections) if i not in {start_section, end_section}]
min_path = float('inf')
for perm in itertools.permutations(other_sections):
order = [start_section] + list(perm) + [end_section]
rebuilt_grid = rebuild_grid(order, sections, size, block_size)
min_path = min(min_path, shortest_path(rebuilt_grid, size))
return min_path
if name == "main":
print(main())
ALTERNATING STRING
import java.util.Scanner;
public class AlternatingStringProcessor {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
String binaryString = scanner.nextLine();
int length = binaryString.length();
int[] values = new int[length];
for (int i = 0; i < length; i++) {
values[i] = scanner.nextInt();
}
int result = 0;
int currentDigit = binaryString.charAt(0) - '0';
int lastValue = values[0];
for (int i = 1; i < length; i++) {
int nextDigit = binaryString.charAt(i) - '0';
if (nextDigit == currentDigit) {
result += Math.min(lastValue, values[i]);
lastValue = Math.max(lastValue, values[i]);
} else {
currentDigit = nextDigit;
lastValue = values[i];
}
}
System.out.println(result);
}
}
TCS CodeVita
@itjobsservices
*Trellix* is hiring for Software Engineer Role
*Roles:* Software Engineer (6+ years)
*Location:* Bangalore, IN
*Category:* Software Engineering
*Employment Type:* Full-time
*Link to Apply*
https://careers.trellix.com/jobs/software-engineer-java/
*Roles:* Software Engineer (6+ years)
*Location:* Bangalore, IN
*Category:* Software Engineering
*Employment Type:* Full-time
*Link to Apply*
https://careers.trellix.com/jobs/software-engineer-java/
Wipro
Eligibility criteria
10th Standard: Pass
12th Standard: Pass
Graduation โ 60% or 6.0 CGPA and above as applicable by the University guidelines
Year of Passing
2023, 2024
Qualification
Bachelor of Computer Application - BCA
Bachelor of Science- B.Sc. Eligible Streams-Computer Science, Information Technology, Mathematics, Statistics, Electronics, and Physics
Apply now:- https://app.joinsuperset.com/join/#/signup/student/jobprofiles/c10ac320-3871-4fb2-9053-d8a58b52ea18
Eligibility criteria
10th Standard: Pass
12th Standard: Pass
Graduation โ 60% or 6.0 CGPA and above as applicable by the University guidelines
Year of Passing
2023, 2024
Qualification
Bachelor of Computer Application - BCA
Bachelor of Science- B.Sc. Eligible Streams-Computer Science, Information Technology, Mathematics, Statistics, Electronics, and Physics
Apply now:- https://app.joinsuperset.com/join/#/signup/student/jobprofiles/c10ac320-3871-4fb2-9053-d8a58b52ea18
Company Name - AnyDesk
Job Role - Technical Support Associate
Location - Bengaluru
Batch - 2023/2024
Package - INR 5 - 8 LPA
Apply Here - https://job-boards.eu.greenhouse.io/anydesk/jobs/4473601101?gh_src=4913a0b2teu
Job Role - Technical Support Associate
Location - Bengaluru
Batch - 2023/2024
Package - INR 5 - 8 LPA
Apply Here - https://job-boards.eu.greenhouse.io/anydesk/jobs/4473601101?gh_src=4913a0b2teu
Amazon hiring for SDE l role
Exp : 1 year
Apply Link - https://www.amazon.jobs/jobs/2853673/software-dev-engineer-i-temp
Exp : 1 year
Apply Link - https://www.amazon.jobs/jobs/2853673/software-dev-engineer-i-temp
Today job updates
Company: DE Shaw
Role: Software Development Engineer
Apply across all openings via this form
Batch: 2024/2023 or previous batches
Apply: https://www.apply.deshawindia.com/ApplicationPage1.html?entity=DESIS&jobs=2614
Company: Bureau
Role: SWE Intern
Batch: 2025
6 Month Intern
https://jobs.bureau.id/?ashby_jid=7d547bf9-e182-4fbc-b026-d92093fe757a
Company Name: ServiceNow
Hiring for roles like Software Engineer, Senior Software Engineer, Technical Writer and more.
CTC for fresher is 25 LPA.
Batches: 2023 and before can apply.
Link : https://bit.ly/ArshGoyal_IG
EY hiring Associate Software Engineer
0-1 year experience
4-10 LPA CTC
Apply Here : https://unstop.com/jobs/associate-software-engineer-ey-1293246?lb=riTZ96J&utm_medium=Share&utm_source=shortUrl
https://eeho.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/job/270677/?utm_medium=jobboard&utm_source=LinkedIn
Company Name: Binmile
Batch : 2024/2023 passouts
Roles: React.js, Node.js, Servicenow
Link to apply : https://docs.google.com/forms/u/0/d/e/1FAIpQLSfu3hN0xPcFcO4l3WlvW6F-E6N0JtAsGem2lkWKacLypb053g/viewform?usp=send_form&pli=1
Company Name : Badho
Batch : 2024 passouts
Role : Software Engineer
Link : https://docs.google.com/forms/d/e/1FAIpQLSfpC8ZjXtvpWybrX2forSTiOG9UlC4myEG-bpNFGWMqBIy1tQ/viewform
๐Quest Global Hiring
Role: JAVA Developer
Qualification:
- Bachelor's degree in computer science engineering, or a related field
Location: Pune, Bangaluru
๐ปApply Link: https://careers.quest-global.com/global/en/job/QGRQGAGLOBALP101869EXTERNALENGLOBAL/Java-Developer
๐Keysight is hiring R&D Engineer
Location: Gurugram
Batch: 2022, 2023, 2024
Experience: 0 - 2 years
๐ปApply Link: https://jobs.keysight.com/external/jobs/46313?lang=en-us
JLL Internship!
Position: Specialist, Intern
Qualifications: Bachelorโs/ Masterโs Degree
Salary: Rs. 25,000 - 35,000 Per Month (Expected)
Batch: 2023/ 2024/ 2025/ 2026
Experience: Freshers
Location: Hyderabad; Mumbai, India
๐Apply Link: https://jll.wd1.myworkdayjobs.com/jllcareers/job/Hyderabad-TS/Specialist--Intern_REQ401144
Company Name: Deloitte
Role: Junior Associate
Qualification: Any Graduate
Salary: Upto 7 LPA
Experience: Freshers
Apply Link: https://usijobs.deloitte.com/careersUSI/JobDetail/USI-EH25-Consulting-CBO-CTO-ITOps-Jr-Associate-0-0-5-yrs-Project-Infinity/196377
Company Name: AnyDesk
Role: Technical Support Associate
Qualification: Any Graduate
Salary: Upto 8 LPA (Expected)
Apply Link: https://job-boards.eu.greenhouse.io/anydesk/jobs/4473601101?gh_src=4913a0b2teu
A few non-tech roles at Mesa School.
Associate, Founders Office, Senior Associate, Program Manager
2024 passouts and before.
Link to apply : https://docs.google.com/forms/u/0/d/e/1FAIpQLSdShF1BPxzMP-NTWX-QVmqGgt_kDH1qBs3ui3J3EvG13C9W9w/viewform?usp=send_form&pli=1
*Infor Hiring For ASE Role for 2025*
*Official Link:*
https://careers.infor.com/en_US/careers/JobDetail/Software-Engineer-Associate/15590#
*Qualifications:*
We currently offer Associate-level full-time opportunities. Here are the
*Eligibility criteria:*
*Academics:* Candidates with a BE/ME/BTech/MTech
*Year of Passing:* Graduates from 2025 are eligible.
Frontend Developer Intern Hiring Assignment
https://docs.google.com/forms/d/e/1FAIpQLSckEkG73EkkiiOjuyrristokbeFxvm5EwngDVJpnIRCMJofOQ/viewform
EY Hiring
Role: Associate Software Engineer
Batch: 2024
BE - B. Tech / (IT/ Computer Science/ Circuit branches)
๐ปApply Link: https://eyglobal.yello.co/jobs/hQQPL5j7MXwpBNVakXcM8A
https://www.linkedin.com/posts/ishika-goel-943708182_product-intern-activity-7275770160894881792-vS4m?utm_source=share&utm_medium=member_desktop
https://rockwellautomation.wd1.myworkdayjobs.com/External_Rockwell_Automation/job/India-New-Delhi-Noida/Graduate-Engineer-Trainee_R24-5941?source=LinkedIn
Company Name: S&P Global
Batch eligible: 2025 and 2026 grads
Apply: https://careers.spglobal.com/jobs/309540?lang=en-us
Company: DE Shaw
Role: Software Development Engineer
Apply across all openings via this form
Batch: 2024/2023 or previous batches
Apply: https://www.apply.deshawindia.com/ApplicationPage1.html?entity=DESIS&jobs=2614
Company: Bureau
Role: SWE Intern
Batch: 2025
6 Month Intern
https://jobs.bureau.id/?ashby_jid=7d547bf9-e182-4fbc-b026-d92093fe757a
Company Name: ServiceNow
Hiring for roles like Software Engineer, Senior Software Engineer, Technical Writer and more.
CTC for fresher is 25 LPA.
Batches: 2023 and before can apply.
Link : https://bit.ly/ArshGoyal_IG
EY hiring Associate Software Engineer
0-1 year experience
4-10 LPA CTC
Apply Here : https://unstop.com/jobs/associate-software-engineer-ey-1293246?lb=riTZ96J&utm_medium=Share&utm_source=shortUrl
https://eeho.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/job/270677/?utm_medium=jobboard&utm_source=LinkedIn
Company Name: Binmile
Batch : 2024/2023 passouts
Roles: React.js, Node.js, Servicenow
Link to apply : https://docs.google.com/forms/u/0/d/e/1FAIpQLSfu3hN0xPcFcO4l3WlvW6F-E6N0JtAsGem2lkWKacLypb053g/viewform?usp=send_form&pli=1
Company Name : Badho
Batch : 2024 passouts
Role : Software Engineer
Link : https://docs.google.com/forms/d/e/1FAIpQLSfpC8ZjXtvpWybrX2forSTiOG9UlC4myEG-bpNFGWMqBIy1tQ/viewform
๐Quest Global Hiring
Role: JAVA Developer
Qualification:
- Bachelor's degree in computer science engineering, or a related field
Location: Pune, Bangaluru
๐ปApply Link: https://careers.quest-global.com/global/en/job/QGRQGAGLOBALP101869EXTERNALENGLOBAL/Java-Developer
๐Keysight is hiring R&D Engineer
Location: Gurugram
Batch: 2022, 2023, 2024
Experience: 0 - 2 years
๐ปApply Link: https://jobs.keysight.com/external/jobs/46313?lang=en-us
JLL Internship!
Position: Specialist, Intern
Qualifications: Bachelorโs/ Masterโs Degree
Salary: Rs. 25,000 - 35,000 Per Month (Expected)
Batch: 2023/ 2024/ 2025/ 2026
Experience: Freshers
Location: Hyderabad; Mumbai, India
๐Apply Link: https://jll.wd1.myworkdayjobs.com/jllcareers/job/Hyderabad-TS/Specialist--Intern_REQ401144
Company Name: Deloitte
Role: Junior Associate
Qualification: Any Graduate
Salary: Upto 7 LPA
Experience: Freshers
Apply Link: https://usijobs.deloitte.com/careersUSI/JobDetail/USI-EH25-Consulting-CBO-CTO-ITOps-Jr-Associate-0-0-5-yrs-Project-Infinity/196377
Company Name: AnyDesk
Role: Technical Support Associate
Qualification: Any Graduate
Salary: Upto 8 LPA (Expected)
Apply Link: https://job-boards.eu.greenhouse.io/anydesk/jobs/4473601101?gh_src=4913a0b2teu
A few non-tech roles at Mesa School.
Associate, Founders Office, Senior Associate, Program Manager
2024 passouts and before.
Link to apply : https://docs.google.com/forms/u/0/d/e/1FAIpQLSdShF1BPxzMP-NTWX-QVmqGgt_kDH1qBs3ui3J3EvG13C9W9w/viewform?usp=send_form&pli=1
*Infor Hiring For ASE Role for 2025*
*Official Link:*
https://careers.infor.com/en_US/careers/JobDetail/Software-Engineer-Associate/15590#
*Qualifications:*
We currently offer Associate-level full-time opportunities. Here are the
*Eligibility criteria:*
*Academics:* Candidates with a BE/ME/BTech/MTech
*Year of Passing:* Graduates from 2025 are eligible.
Frontend Developer Intern Hiring Assignment
https://docs.google.com/forms/d/e/1FAIpQLSckEkG73EkkiiOjuyrristokbeFxvm5EwngDVJpnIRCMJofOQ/viewform
EY Hiring
Role: Associate Software Engineer
Batch: 2024
BE - B. Tech / (IT/ Computer Science/ Circuit branches)
๐ปApply Link: https://eyglobal.yello.co/jobs/hQQPL5j7MXwpBNVakXcM8A
https://www.linkedin.com/posts/ishika-goel-943708182_product-intern-activity-7275770160894881792-vS4m?utm_source=share&utm_medium=member_desktop
https://rockwellautomation.wd1.myworkdayjobs.com/External_Rockwell_Automation/job/India-New-Delhi-Noida/Graduate-Engineer-Trainee_R24-5941?source=LinkedIn
Company Name: S&P Global
Batch eligible: 2025 and 2026 grads
Apply: https://careers.spglobal.com/jobs/309540?lang=en-us
Deshawindia
Application - The D. E. Shaw Group
V&V Automation Off Campus Capgemini Exceller 2024
Job Function(s) Engineering
CTC INR 300,000.00 per Annum
Salary Break-up / Additional Info
Associate: 3.25 Lacs (3 LPA + 25k one-time incentive)
Apply now:- http://www.itjobs.services
Job Function(s) Engineering
CTC INR 300,000.00 per Annum
Salary Break-up / Additional Info
Associate: 3.25 Lacs (3 LPA + 25k one-time incentive)
Apply now:- http://www.itjobs.services
Cisco Hiring Software Development, Test and Automation Engineer:
Graduation Year: 2022 / 2023 / 2024
Salary: 15 LPA
Location: Bangalore
Apply Link: https://jobs.cisco.com/jobs/ProjectDetail/Software-Development-Test-and-Automation-Engineer-Wireless-Meraki/1431162
Graduation Year: 2022 / 2023 / 2024
Salary: 15 LPA
Location: Bangalore
Apply Link: https://jobs.cisco.com/jobs/ProjectDetail/Software-Development-Test-and-Automation-Engineer-Wireless-Meraki/1431162
Iris Software hiring .Net - GET
Apply link
https://careers.irissoftware.com/job/Noida-_NET-FullStack-Graduate-Engineer-Trainee-UP/33932344/
Apply link
https://careers.irissoftware.com/job/Noida-_NET-FullStack-Graduate-Engineer-Trainee-UP/33932344/
โ
GFG DSA COURSE
โ GFG INTERVIEW PREPARATION COURSE
โ GFG JAVA BACKEND WEB DEVELOPMENT
โ PROGRAMME LANGUAGE
Premium Paid Courses for Free โก๏ธ๐ฅ
๐ Java
๐Link :- @itjobsservices
๐ JavaScript
๐Link :- @itjobsservices
๐ Node.js
๐Link :- @itjobsservices
๐ Python
๐Link :- @itjobsservices
๐React
๐Link :- @itjobsservices
๐ React Native
๐Link :- @itjobsservices
๐ Redux
๐Link :- @itjobsservices
๐ SQL
๐Link :- @itjobsservices
๐-Xamarin Forms
๐Link :- @itjobsservices
โ GFG INTERVIEW PREPARATION COURSE
โ GFG JAVA BACKEND WEB DEVELOPMENT
โ PROGRAMME LANGUAGE
Premium Paid Courses for Free โก๏ธ๐ฅ
๐ Java
๐Link :- @itjobsservices
๐ JavaScript
๐Link :- @itjobsservices
๐ Node.js
๐Link :- @itjobsservices
๐ Python
๐Link :- @itjobsservices
๐React
๐Link :- @itjobsservices
๐ React Native
๐Link :- @itjobsservices
๐ Redux
๐Link :- @itjobsservices
๐ SQL
๐Link :- @itjobsservices
๐-Xamarin Forms
๐Link :- @itjobsservices
Infineon Hiring fresher with Expexted CTC - 10 lpa
Role - IT Engineer
0-2 years of experience in web application development.
Academic or project experience with Java, Spring Framework, andReact.js.
Basic understanding of HTML, CSS, and JavaScript.
Familiarity with RESTful APIs.
Link - https://jobs.infineon.com/careers/job/563808956784127?domain=infineon.com#!source=400
Role - IT Engineer
0-2 years of experience in web application development.
Academic or project experience with Java, Spring Framework, andReact.js.
Basic understanding of HTML, CSS, and JavaScript.
Familiarity with RESTful APIs.
Link - https://jobs.infineon.com/careers/job/563808956784127?domain=infineon.com#!source=400
Wipro WILP is hiring Fresher
Apply Now:-
https://app.joinsuperset.com/join/#/signup/student/jobprofiles/c10ac320-3871-4fb2-9053-d8a58b52ea18
Apply Now:-
https://app.joinsuperset.com/join/#/signup/student/jobprofiles/c10ac320-3871-4fb2-9053-d8a58b52ea18
Check out these free resources from Microsoft:
1. [Azure]
@itjobsservices
2. [Microsoft Cloud Blog]
@itjobsservices
3. [Visual Studio Code]
@itjobsservices
4. [Microsoft DevBlogs]
@itjobsservices
5. [Microsoft Developer]
@itjobsservices
6. [Microsoft Learn]
@itjobsservices
7. [MSDN Profile]
@itjobsservices
8. [Technet Profile]
@itjobsservices
9. [Microsoft Startups]
@itjobsservices
10.[TechCommunity]
@itjobsservices
1. [Azure]
@itjobsservices
2. [Microsoft Cloud Blog]
@itjobsservices
3. [Visual Studio Code]
@itjobsservices
4. [Microsoft DevBlogs]
@itjobsservices
5. [Microsoft Developer]
@itjobsservices
6. [Microsoft Learn]
@itjobsservices
7. [MSDN Profile]
@itjobsservices
8. [Technet Profile]
@itjobsservices
9. [Microsoft Startups]
@itjobsservices
10.[TechCommunity]
@itjobsservices
๐ฏ Infosys Walk-in Drive 2025 for Customer Support โ Voice | 10 January 2025
Apply Now:-
https://www.naukri.com/job-listings-we-are-hiring-walkin-for-customer-support-voice-kolkata-infosys-bpm-pune-0-to-4-years-080125023950?src=seo_srp&sid=1736397978204154_2&xp=3&px=5
Apply Now:-
https://www.naukri.com/job-listings-we-are-hiring-walkin-for-customer-support-voice-kolkata-infosys-bpm-pune-0-to-4-years-080125023950?src=seo_srp&sid=1736397978204154_2&xp=3&px=5
GlobalLogic is hiring Software Engineer
Apply now
https://www.globallogic.com/careers/associate-software-engineer-irc252546/
Apply now
https://www.globallogic.com/careers/associate-software-engineer-irc252546/
Goldman Sachs is hiring Associate Software Engineer
For 2022, 2023, 2024 gards
Location: Bangalore
Apply now:-
https://hdpc.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/LateralHiring/job/136320?mode=job&iis=LinkedIn
For 2022, 2023, 2024 gards
Location: Bangalore
Apply now:-
https://hdpc.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/LateralHiring/job/136320?mode=job&iis=LinkedIn
๐๐ฒ๐ป๐ฝ๐ฎ๐ฐ๐ ๐ฅ๐ฒ๐ฐ๐ฟ๐๐ถ๐๐บ๐ฒ๐ป๐ ๐๐ฟ๐ถ๐๐ฒ!
Position: Associate, Data Analyst
Qualification: Bachelorโs/ Masterโs Degree
Salary: 5 - 10 LPA (Expected)
Experienc๏ปฟe: Freshers/ Experienced
Location: Bangalore, India
๐Apply Now: https://genpact.taleo.net/careersection/sgy_external_career_section/jobdetail.ftl?job=ANA015927&tz=GMT%2B00%3A00&tzname=UTC
Position: Associate, Data Analyst
Qualification: Bachelorโs/ Masterโs Degree
Salary: 5 - 10 LPA (Expected)
Experienc๏ปฟe: Freshers/ Experienced
Location: Bangalore, India
๐Apply Now: https://genpact.taleo.net/careersection/sgy_external_career_section/jobdetail.ftl?job=ANA015927&tz=GMT%2B00%3A00&tzname=UTC
๐๐๐ ๐
๐๐๐ ๐๐๐ซ๐ญ๐ข๐๐ข๐๐๐ญ๐ข๐จ๐ง ๐๐จ๐ฎ๐ซ๐ฌ๐
Want to boost your career with AWS certifications but donโt want to spend a fortune?
Iโve got you covered! Here are FREE Amazon AWS certification courses that you can start today.
Learn cloud computing skills, ace those AWS exams, and open doors to top tech roles.
Apply now:- @itjobsservices
Enroll For FREE & Get
Want to boost your career with AWS certifications but donโt want to spend a fortune?
Iโve got you covered! Here are FREE Amazon AWS certification courses that you can start today.
Learn cloud computing skills, ace those AWS exams, and open doors to top tech roles.
Apply now:- @itjobsservices
Enroll For FREE & Get
Publicis Sapient is hiring Associate Software Engineer
Apply link ๐
https://careers.publicissapient.com/job-details/2024-90855-associate-software-development-engineer-1-gurgaon?mode=apply&iis=LinkedIn+Apply
Apply link ๐
https://careers.publicissapient.com/job-details/2024-90855-associate-software-development-engineer-1-gurgaon?mode=apply&iis=LinkedIn+Apply