๐ Customised-Technologies-Off-Campus-Drive-For-Freshers With 5 LPA
* Job Role : Software Engineer
* Qualification : B.E/B.Tech/BCA/MCA
* Experience : Freshers
* Job Location : Bangalore
* Package : 5 LPA
Apply Here
๐Direct & 100% Ads Free Links
โ Share with your friends
* Job Role : Software Engineer
* Qualification : B.E/B.Tech/BCA/MCA
* Experience : Freshers
* Job Location : Bangalore
* Package : 5 LPA
Apply Here
๐Direct & 100% Ads Free Links
โ Share with your friends
eLitmus
Embedded System Engg. / Software Engg. position at Customised Technologies (P) Ltd in Bangalore
About the company: Customised Technologies (P) Ltd. is a vertically integrated, R & D intensive company that designs, develops and manufactures a wide ra...
๐1
๐ Edveon Off Campus Drive 2022 : Hiring for Freshers as Engineer/HR With 6 LPA
* Job Role : Engineer/HR
* Qualification : B.E/B.Tech/MBA/Any Degree
* Batch : 2019/2020/2021/2022 Batches
* Experience : Freshers
* Salary : Rs. 4 โ 6 LPA
Apply here
๐Direct & 100% Ads Free Links
โ Share with your friends
* Job Role : Engineer/HR
* Qualification : B.E/B.Tech/MBA/Any Degree
* Batch : 2019/2020/2021/2022 Batches
* Experience : Freshers
* Salary : Rs. 4 โ 6 LPA
Apply here
๐Direct & 100% Ads Free Links
โ Share with your friends
Google Docs
Edveon (4 to 6 LPA ) - Campus Drive on 09th July'2022 ( Saturday )
Edveon is a fast-growing semiconductor services company with its headquarters in Santa Clara CA, USA, and with an offshore office in Chennai India. Our leadership team has decades of experience in the semiconductor industry.
Our team has been part of multipleโฆ
Our team has been part of multipleโฆ
๐4๐ฑ1
Cognizant interview experience.
Role : GencNext
Package: 6.75
1.Self introduction
2. What is java.
3. What is class.
4. What do u mean by abstract and abstract methods and classes.
5. Oops principles.
6. What is abstract.
7. What is interface.
8. Finally, final, finalize.
9.what is garbage collector.
10. Tell me the case where finally block doesn't get executed.
11. Types of inheritance.
12. Two pattern printing codes like pyramids
13. Sql.
14. Scenario based questions.
15. Multithreading.
16. Method overloading and method overriding.
17. Example of checked and unchecked exception.
18. Acid properties.
19. Commit and rollback.
20.Stack and linked list real life examples
21. Search an element in linked list.
Role : GencNext
Package: 6.75
1.Self introduction
2. What is java.
3. What is class.
4. What do u mean by abstract and abstract methods and classes.
5. Oops principles.
6. What is abstract.
7. What is interface.
8. Finally, final, finalize.
9.what is garbage collector.
10. Tell me the case where finally block doesn't get executed.
11. Types of inheritance.
12. Two pattern printing codes like pyramids
13. Sql.
14. Scenario based questions.
15. Multithreading.
16. Method overloading and method overriding.
17. Example of checked and unchecked exception.
18. Acid properties.
19. Commit and rollback.
20.Stack and linked list real life examples
21. Search an element in linked list.
๐7
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Atlassian
Software Development Engineer I, Backend
https://jobs.lever.co/atlassian/db4f7e89-091b-47c1-8971-0b8abd9f959c
Software Development Engineer I, Backend
https://jobs.lever.co/atlassian/db4f7e89-091b-47c1-8971-0b8abd9f959c
๐6๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐1
โ๏ธModel N OffCampus Driveโ๏ธ
๐ Batch - 2022
๐ฐ CTC - 7.25lpa + Bonus + Stock
๐ Link - bit.ly/3nPply1
๐ Batch - 2022
๐ฐ CTC - 7.25lpa + Bonus + Stock
๐ Link - bit.ly/3nPply1
match.myanatomy.in
MATCH (MyAnatomy Talent Convergence Horizon)
A Campus Recruitment Enabler, converging the Corporates, Candidates and Colleges in one single platform
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Amazon Interview experience :
Role : SDE 1
Technical interview 1
โข Introduction
โข Q1 delete all the leaf nodes from a binary tree with given target.
โข Q2 count all the triplets from an array with given sum.
โข Q3 convert sorted list to binary search tree.
Technical interview (2) was also same
2 questions were on Tree
And one on queue.
Role : SDE 1
Technical interview 1
โข Introduction
โข Q1 delete all the leaf nodes from a binary tree with given target.
โข Q2 count all the triplets from an array with given sum.
โข Q3 convert sorted list to binary search tree.
Technical interview (2) was also same
2 questions were on Tree
And one on queue.
โค4
TCS NQT 9 am Answers
1- X-5
2-14
3-8
4-50
5-91.2
6-735
7-166.66%
9-12000
10-4200
11-1900,2100
14-3
17-22 min
1- X-5
2-14
3-8
4-50
5-91.2
6-735
7-166.66%
9-12000
10-4200
11-1900,2100
14-3
17-22 min
๐2
public class SolutionClass {
public static void main(String[] args) {
int p=lenghtOfLongestAP(arr);
}
static int lenghtOfLongestAP(int set[])
{
int n=set.length;
if(n==0)
return -1;
if (n <= 2) return n;
int L[][] = new int[n][n];
int llap = 2;
for (int i = 0; i < n; i++)
L[i][n - 1] = 2;
for (int j = n - 2; j >= 1; j--)
{
int i = j -1 , k = j + 1;
while (i >= 0 && k <= n - 1)
{
if (set[i] + set[k] < 2 * set[j])
k++;
else if (set[i] + set[k] > 2 * set[j])
{
L[i][j] = 2; i--;
}
else
{
L[i][j] = L[j][k] + 1;
llap = Math.max(llap, L[i][j]);
i--; k++;
}
}
while (i >= 0)
{
L[i][j] = 2;
i--;
}
}
return llap;
}
}
Samsung assignment code
Longest arithmetic โ (Java)
public static void main(String[] args) {
int p=lenghtOfLongestAP(arr);
}
static int lenghtOfLongestAP(int set[])
{
int n=set.length;
if(n==0)
return -1;
if (n <= 2) return n;
int L[][] = new int[n][n];
int llap = 2;
for (int i = 0; i < n; i++)
L[i][n - 1] = 2;
for (int j = n - 2; j >= 1; j--)
{
int i = j -1 , k = j + 1;
while (i >= 0 && k <= n - 1)
{
if (set[i] + set[k] < 2 * set[j])
k++;
else if (set[i] + set[k] > 2 * set[j])
{
L[i][j] = 2; i--;
}
else
{
L[i][j] = L[j][k] + 1;
llap = Math.max(llap, L[i][j]);
i--; k++;
}
}
while (i >= 0)
{
L[i][j] = 2;
i--;
}
}
return llap;
}
}
Samsung assignment code
Longest arithmetic โ (Java)
๐1
Surround yourself with a supportive people ๐๐๐ be a supportive person to those who you surround ๐โค๏ธ
โค6๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
https://cuvette.tech/internship/
Those who want internships check this โ
Note :2022/2023 Batch you can apply for this site
Those who want internships check this โ
Note :2022/2023 Batch you can apply for this site
cuvette.tech
The #1 way college students & early graduates get Internships, Jobs
Cuvette is #1 career platform for job seekers to get internships & jobs in 7500+ partner companies. We offer MERN stack Job & Placement guarantee courses, Data Science course with placement guarantee.
๐2
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
MRI Software
Role: Entry Level Engineer
Batch eligible: 2022 passouts only
Link:
https://lnkd.in/dz7rgydT
Role: Entry Level Engineer
Batch eligible: 2022 passouts only
Link:
https://lnkd.in/dz7rgydT
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
BT, Kolkata
Role: Apprentices
Batch eligible: 2020, 2021 and 2022 passouts
Link: https://www.linkedin.com/jobs/view/3160619674
Role: Apprentices
Batch eligible: 2020, 2021 and 2022 passouts
Link: https://www.linkedin.com/jobs/view/3160619674
Linkedin
BT hiring Apprentices in Kolkata, West Bengal, India | LinkedIn
Posted 8:30:57 PM. Our mission is to break down the barriers of today to release the potential of tomorrow. Join usโฆSee this and similar jobs on LinkedIn.