Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Zoomcar is hiring for Data Science Interns
2025/2024 batch passouts eligible
Send resume to : srushti.pathrut@zoomcar.com
2025/2024 batch passouts eligible
Send resume to : srushti.pathrut@zoomcar.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Exotel Hiring Software Engineer 1
Bachelor's or Master's degree in computer science or equivalent.
Experience:6 months -1 year
Good knowledge of one of the OOP languages: Golang (preferred) / PHP (preferred)/Java / Ruby / Python / C++
Good understanding of data structures, multi-threading and concurrency concepts.
Strong analytical and problem-solving skills.
Excellent written and verbal communication skills.
Team player, flexible and able to work in a fast-paced environment.
A "DevOps" mindset. You own what you will develop.
Good to Haves
Familiarity with 3-Tier, microservices architecture
Familiarity of RESTful services
Familiarity with developing Linux-based applications, networking and scripting
Familiarity with different data stores, data modelling, SQL & NoSQL databases
Familiarity with elastic search queries and visualization tools like grafana, kibana
Familiarity with networking fundamentals: Firewalls, Proxies, DNS, Load Balancing, etc.
Hiring Process:
1. Online Test
Comprising of four sections: Abstract Reasoning, Numeric Reasoning, Verbal Reasoning, and Hands-on Programming.
2. Tech Interview: Tech Round comprising of Data Structures & Algorithms
3. Hiring Manager Interview
4. HR Interview
https://exotel.com/careers/#op-638137-software-engineer1immediate-joiners-only
Bachelor's or Master's degree in computer science or equivalent.
Experience:6 months -1 year
Good knowledge of one of the OOP languages: Golang (preferred) / PHP (preferred)/Java / Ruby / Python / C++
Good understanding of data structures, multi-threading and concurrency concepts.
Strong analytical and problem-solving skills.
Excellent written and verbal communication skills.
Team player, flexible and able to work in a fast-paced environment.
A "DevOps" mindset. You own what you will develop.
Good to Haves
Familiarity with 3-Tier, microservices architecture
Familiarity of RESTful services
Familiarity with developing Linux-based applications, networking and scripting
Familiarity with different data stores, data modelling, SQL & NoSQL databases
Familiarity with elastic search queries and visualization tools like grafana, kibana
Familiarity with networking fundamentals: Firewalls, Proxies, DNS, Load Balancing, etc.
Hiring Process:
1. Online Test
Comprising of four sections: Abstract Reasoning, Numeric Reasoning, Verbal Reasoning, and Hands-on Programming.
2. Tech Interview: Tech Round comprising of Data Structures & Algorithms
3. Hiring Manager Interview
4. HR Interview
https://exotel.com/careers/#op-638137-software-engineer1immediate-joiners-only
Exotel
Careers
Don't find a job but find a career at Exotel. We believe in working with the absolute best and having fun while we do the best work of our lives.
๐3
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <iostream>
#include <unordered_map>
#include <string>
using namespace std;
void find_most_frequent_ngram(const string& S, int N) {
unordered_map<string, int> a;
int w = 0;
string d;
for (int i = 0; i <= S.length() - N; ++i) {
string ngram = S.substr(i, N);
a[ngram]++;
if (a[ngram] > w) {
w = a[ngram];
d = ngram;
}
}
cout << d << " " << w << endl;
}
int main() {
string input, S;
int N;
getline(cin, input);
size_t space_pos = input.find_last_of(' ');
S = input.substr(0, space_pos);
N = stoi(input.substr(space_pos + 1));
find_most_frequent_ngram(S, N);
return 0;
}
๐1๐ฅ1
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
#include <iostream> #include <unordered_map> #include <string> using namespace std; void find_most_frequent_ngram(const string& S, int N) { unordered_map<string, int> a; int w = 0; string d; for (int i = 0; i <= S.length() - N; ++i) { โฆ
#include <iostream>
#include <string>
#include <unordered_map>
using namespace std;
pair<string, int> findMostFrequentNGram(const string &s, int n) {
unordered_map<string, int> freqMap;
int length = s.size();
if (n > length) {
return {"", 0};
}
for (int i = 0; i <= length - n; ++i) {
string nGram = s.substr(i, n);
freqMap[nGram]++;
}
string mostFrequent;
int maxCount = 0;
// bool found = false;
for (int i = 0; i <= length - n; ++i) {
string nGram = s.substr(i, n);
if (freqMap[nGram] > maxCount) {
mostFrequent = nGram;
maxCount = freqMap[nGram];
// found = true;
}
}
return {mostFrequent, maxCount};
}
int main() {
string s = "abcabcabc";
int n = 3;
auto result = findMostFrequentNGram(s, n);
cout << "Most frequent " << n << "-gram: " << result.first << endl;
cout << "Frequency: " << result.second << endl;
return 0;
}
#include <string>
#include <unordered_map>
using namespace std;
pair<string, int> findMostFrequentNGram(const string &s, int n) {
unordered_map<string, int> freqMap;
int length = s.size();
if (n > length) {
return {"", 0};
}
for (int i = 0; i <= length - n; ++i) {
string nGram = s.substr(i, n);
freqMap[nGram]++;
}
string mostFrequent;
int maxCount = 0;
// bool found = false;
for (int i = 0; i <= length - n; ++i) {
string nGram = s.substr(i, n);
if (freqMap[nGram] > maxCount) {
mostFrequent = nGram;
maxCount = freqMap[nGram];
// found = true;
}
}
return {mostFrequent, maxCount};
}
int main() {
string s = "abcabcabc";
int n = 3;
auto result = findMostFrequentNGram(s, n);
cout << "Most frequent " << n << "-gram: " << result.first << endl;
cout << "Frequency: " << result.second << endl;
return 0;
}
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <iostream>
#include <vector>
#include <algorithm>
#include <iomanip>
#include <queue>
#define fastio ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define rep(i, n) for (int i = 0; i < n; ++i)
using namespace std;
int main() {
fastio;
int t = 1;
while (t--) {
int n;
cin >> n;
vector<int> v(n);
rep(i, n) cin >> v[i];
vector<int> sum(n + 1, 0);
for (int i = 0; i < n; ++i) {
sum[i + 1] = sum[i] + v[i];
}
int maximum = 0;
for (int i = 1; i <= n; ++i) {
maximum = max(maximum, (sum[i] + i - 1) / i);
}
int q;
cin >> q;
rep(i, q) {
int x;
cin >> x;
if (x < maximum) {
cout << -1 << endl;
} else {
cout << (sum[n] + x - 1) / x << endl;
}
}
}
return 0;
}
Rivertown sequence โ
โค1๐1
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
def valueOfExpression(n):
if n <= 1:
return 0
count = 0
d = 2
while d * d <= n:
if n % d == 0:
count += 1
while n % d == 0:
n //= d
d += 1
if n > 1:
count += 1
return count
def fun(arr):
maxFactors = 0
result = 0
for num in arr:
factors = valueOfExpression(num)
if factors > maxFactors or (factors == maxFactors and num > result):
maxFactors = factors
result = num
return result
def solve(x, n, a):
result = float('inf')
for i in range(n - x + 1):
result = min(result, fun(a[i:i+x]))
return result
Value Of an expressionโ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Pixxel
Product Management Intern
Job Description
Role: Product Management Intern
Employment Type: Internship
Educational Qualification: B.tech
Work Experience: 0-6 months
Role Description: Function: Product Management
At Pixxel, Itโs not enough for us to just dump satellite images downโฆ
Role: Product Management Intern
Employment Type: Internship
Educational Qualification: B.tech
Work Experience: 0-6 months
Role Description: Function: Product Management
At Pixxel, Itโs not enough for us to just dump satellite images downโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Ericsson Hiring Software Developer
Qualification required B.E/ B.Tech/M.tech- 2023 or 2024 passed out with good communication
โข 6 months- 1 year of experience into Java : Core java, Spring, Springboot, Hibernate, Rest Web Services, Java Script, JQuery, Maven
โข Knowledge of Application Server, Deployment, troubleshooting
https://jobs.ericsson.com/careers/job/563121760839673?jobPipeline=LinkedIn&domain=ericsson.com
Qualification required B.E/ B.Tech/M.tech- 2023 or 2024 passed out with good communication
โข 6 months- 1 year of experience into Java : Core java, Spring, Springboot, Hibernate, Rest Web Services, Java Script, JQuery, Maven
โข Knowledge of Application Server, Deployment, troubleshooting
https://jobs.ericsson.com/careers/job/563121760839673?jobPipeline=LinkedIn&domain=ericsson.com
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
ION Group is hiring for C ++ Developer
Experience: 0 - 1 year's
Expected Salary: 12-18 LPA
Apply here:
https://jobs.lever.co/ion/38ae1a3d-7431-4741-915e-669f4d8e749f/
Experience: 0 - 1 year's
Expected Salary: 12-18 LPA
Apply here:
https://jobs.lever.co/ion/38ae1a3d-7431-4741-915e-669f4d8e749f/
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
CGI is hiring for Associate Software Engineer
Experience: 0 - 1 year's
Expected Salary: 4-6 LPA
Apply here:
https://cgi.njoyn.com/corp/xweb/xweb.asp?CLID=21001&page=jobdetails&JobID=J0724-1832&lang=1
Experience: 0 - 1 year's
Expected Salary: 4-6 LPA
Apply here:
https://cgi.njoyn.com/corp/xweb/xweb.asp?CLID=21001&page=jobdetails&JobID=J0724-1832&lang=1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Datacore hiring for Software Intern
2025 passouts
Apply Here : https://www.datacore.com/fr/careers/job/638029/
2025 passouts
Apply Here : https://www.datacore.com/fr/careers/job/638029/
DataCore Software
Offres d'emploi | DataCore Software
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
#hiring #jobs #rightfitso | Sumit Singh | 29 comments
hiring opportunity ๐จ
uptut.com is now hiring through rightfit.so for a frontend and UI intern!
location: fully remote
salary: โน20,000-30,000/monthโฆ | 29 comments on LinkedIn
uptut.com is now hiring through rightfit.so for a frontend and UI intern!
location: fully remote
salary: โน20,000-30,000/monthโฆ | 29 comments on LinkedIn
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
SmartBear is hiring DevOps Engineer
2024/2025 batch passouts
Apply Here : https://boards.greenhouse.io/smartbear/jobs/6095173003
2024/2025 batch passouts
Apply Here : https://boards.greenhouse.io/smartbear/jobs/6095173003
boards.greenhouse.io
SwaggerOS - DevopsEngineer
Bengaluru, Karnataka, India
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Hiring for multiple interns (Remote, Stipend 15-20K) | Sarang Purandare posted on the topic | LinkedIn
I'm hiring for multiple interns (Fully Remote, Stipend 15-20K)
- UI/UX : 1
- Flutter : 2
- GoLang : 2
- Product Management : 1 (one hard skill is mandatoryโฆ | 164 comments on LinkedIn
- UI/UX : 1
- Flutter : 2
- GoLang : 2
- Product Management : 1 (one hard skill is mandatoryโฆ | 164 comments on LinkedIn
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Jar hiring Backend Intern in Bengaluru, Karnataka, India | LinkedIn
Posted 10:40:47 AM. What is Jar?The Jar app is a habit-building micro-savings platform that helps users save fixedโฆSee this and similar jobs on LinkedIn.