Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Ocrolus East Hiring Data Verifier โค๏ธโค๏ธโค๏ธ
Job Role: Data Verifier
Qualifications: Any Graduate
Experience: 0-5 years
Job Type: Full Time
Location: Noida
Salary: 3 to 5 LPA
Skills/Requirements:
1. Review Documents of different formats and quality
2. Correct or Edit any incorrect details captured by the Ocrolus proprietary systems
3. Perform reconciliation of various amounts captured from reviewed documents to ensure high accuracy and identify discrepancies
4. Basic Understanding of financial documents and Terminologies.
5. Understanding basic accounting concepts would be an added advantage.
Date of offline Interview: 20th August, 2024
Time : 11.00 AM โ 2.00 PM
Address: Ocrolus East Private Limited, A-61, 2nd Floor, ASF Building, Sector 63, Noida- 201301
Job Role: Data Verifier
Qualifications: Any Graduate
Experience: 0-5 years
Job Type: Full Time
Location: Noida
Salary: 3 to 5 LPA
Skills/Requirements:
1. Review Documents of different formats and quality
2. Correct or Edit any incorrect details captured by the Ocrolus proprietary systems
3. Perform reconciliation of various amounts captured from reviewed documents to ensure high accuracy and identify discrepancies
4. Basic Understanding of financial documents and Terminologies.
5. Understanding basic accounting concepts would be an added advantage.
Date of offline Interview: 20th August, 2024
Time : 11.00 AM โ 2.00 PM
Address: Ocrolus East Private Limited, A-61, 2nd Floor, ASF Building, Sector 63, Noida- 201301
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
BITCS is hiring for Software Engineer Intern
2025 batch passouts
15 k per month intern + 6 - 8 LPA after PPO
Apply Fast : https://docs.google.com/forms/d/e/1FAIpQLSe9Puj1jZF968qKYIgwNYn6SOmyNn75gp7eCoOhk_bNvmPqJw/viewform?pli=1
2025 batch passouts
15 k per month intern + 6 - 8 LPA after PPO
Apply Fast : https://docs.google.com/forms/d/e/1FAIpQLSe9Puj1jZF968qKYIgwNYn6SOmyNn75gp7eCoOhk_bNvmPqJw/viewform?pli=1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Anthology Hiring !!
Exp - 0 to 2 year
Role - Associate Software Engineer
https://jobs.jobvite.com/anthology/job/ovv9ufwn?__jvst=Job%20Board
Exp - 0 to 2 year
Role - Associate Software Engineer
https://jobs.jobvite.com/anthology/job/ovv9ufwn?__jvst=Job%20Board
๐2
Happy Independence Day ๐ฎ๐ณ
โค7๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company โ Payinstacard Private Limited
Role โ Artificial Intelligence (AI) Intern
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/details/part-time-artificial-intelligence-ai-internship-in-hyderabad-at-payinstacard-private-limited1723443866?utm_source=cp_link&referral=web_share
Company โ Bilateral Solutions Private Limited
Role โ Machine Learning Internship
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/details/machine-learning-internship-in-mandi-at-bilateral-solutions-private-limited1723470090?utm_source=cp_link&referral=web_share
Company โ EcoRatings
Role โ Associate Data Scientist
Exp. โ 0-2 yrs
Apply Here โ https://www.linkedin.com/jobs/view/3996441253
Role โ Artificial Intelligence (AI) Intern
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/details/part-time-artificial-intelligence-ai-internship-in-hyderabad-at-payinstacard-private-limited1723443866?utm_source=cp_link&referral=web_share
Company โ Bilateral Solutions Private Limited
Role โ Machine Learning Internship
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/details/machine-learning-internship-in-mandi-at-bilateral-solutions-private-limited1723470090?utm_source=cp_link&referral=web_share
Company โ EcoRatings
Role โ Associate Data Scientist
Exp. โ 0-2 yrs
Apply Here โ https://www.linkedin.com/jobs/view/3996441253
Internshala
Artificial Intelligence (AI) Part Time Internship at Payinstacard Private Limited, Hyderabad
We are seeking talented and experienced Chatbot Developers to join our team. The ideal candidates should have a strong background in building custom bots using platforms such as Dialogueflow or IBM Watson Assistant, coupled with excellent integration skillsโฆ
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Sign Up | LinkedIn
500 million+ members | Manage your professional identity. Build and engage with your professional network. Access knowledge, insights and opportunities.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: ServiceNow
Role: Software Engineer
Batch eligible: 2022/2023/2024 grads
Apply: https://careers.servicenow.com/en/jobs/744000006685565/software-engineer/?trid=2d92f286-613b-4daf-9dfa-6340ffbecf73
Role: Software Engineer
Batch eligible: 2022/2023/2024 grads
Apply: https://careers.servicenow.com/en/jobs/744000006685565/software-engineer/?trid=2d92f286-613b-4daf-9dfa-6340ffbecf73
๐1
#include <string>
#include <algorithm>
string solution(const string& a, const string& b) {
string result = "";
int lenA = a.length();
int lenB = b.length();
int maxLength = max(lenA, lenB);
for (int i = 0; i < maxLength; ++i) {
int digitA = (i < lenA) ? (a[lenA - 1 - i] - '0') : 0;
int digitB = (i < lenB) ? (b[lenB - 1 - i] - '0') : 0;
int sum = digitA + digitB;
result = to_string(sum)+result;
}
return result;
}
Databrick โ
int getDistinctPairs(vector<int> stocksProfit, int target)
{
int n = stocksProfit.size();
unordered_map<int, int> m;
int count = 0;
for (int i = 0; i < n; i++) {
if (m.find(target - stocksProfit[i]) != m.end()) {
count += m[target - stocksProfit[i]];
}
m[stocksProfit[i]]++;
}
return count;
}
Amazon(intern)โ
vector<vector<int>> findOverlappingTimes(vector<vector<int>>& intervals) {
if (intervals.empty()) {
return {};
}
sort(intervals.begin(), intervals.end());
vector<vector<int>> merged;
merged.push_back(intervals[0]);
for (int i = 1; i < intervals.size(); i++) {
if (merged.back()[1] >= intervals[i][0]) {
merged.back()[1] = max(merged.back()[1], intervals[i][1]);
} else {
merged.push_back(intervals[i]);
}
}
return merged;
}
Amazon (intern) โ
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Progress is hiring Software Engineer Intern
3 - 6 LPA
https://jobs.jobvite.com/careers/progress/job/ofbjufwX
3 - 6 LPA
https://jobs.jobvite.com/careers/progress/job/ofbjufwX
def solve1(number):
digits = [int(d) for d in str(number)]
sum_digits = sum(digits)
max_digit = max(digits)
return (sum_digits - max_digit) == max_digit
def solve2(X, Y):
total_savings = 0
for number in range(X, Y + 1):
if solve1(number):
total_savings += number
return total_savings
X, Y = map(int, input().split())
print(solve2(X, Y))
MasterCard โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <bits/stdc++.h>
using namespace std;
int stockLounge(vector<int> onHand, vector<int> supplier, int demand) {
sort(onHand.begin(), onHand.end());
sort(supplier.begin(), supplier.end());
int totalSupplierUsed = 0;
int n = onHand.size(), m = supplier.size();
for (int i = 0; i < n; i++) {
demand -= min(demand, 1);
}
for (int i = 0; i < m; i++) {
if (demand > 0) {
int canTake = min(supplier[i], demand);
totalSupplierUsed += canTake;
demand -= canTake;
}
}
return totalSupplierUsed;
}
BNY Mellon โ