Java Hyd Team
746 subscribers
986 photos
39 videos
670 files
690 links
https://teamhydteam.my.canva.site/

Can visit us on our website ๐Ÿ˜Š
Still working on it ๐Ÿ˜Š
Download Telegram
Forwarded from Aman Raj
Hi,
My name is Nidhi Verma, and I'm a member of the HR and Talent team at Fisker Inc. I am currently searching for experienced Full Stack Developer (4-8yrs) and I have mentioned the job requirement details below for your review:

Experience: 4-8 yrs.
Mandate Skills: json, Azure, Rest API, Full stack developer, python.
Location: Hyderabad, India.
Website: https://www.fiskerinc.com/

Please provide following detail if you would be interested in being considered.

1. Total Experience:
2. Current CTC:
3. Expected CTC:
4. Notice Period:
5. Preferred joining within 30days
6. Sent resume on nverma@fiskerinc.com

Exciting things are happening here at Fisker Inc! We look forward to learning more about you.

Nidhi Verma
nverma@fiskerinc.com
Talent Acquisition Team
Fisker Inc
Forwarded from Aman Raj
TCS Hiring Java Full Stack Developer

TCS Hiring for Java Full Stack Developer Developer

Experience: 5-7 years

Location: Bangalore/Hyderabad

Required Skills: Java, Springboot, Microservices

Interested, please drop in your updated CV to mrunali.sonarkar@tcs.com with following details:

Primary Skill
NAME
Preferred Location
Contact #
Email
Highest Qualification
Highest Qualification University Name
Highest Qualification Fulltime (Y/N)
Total Experience for TCS Consideration
Break Duration (If Applicable)
Reason for Break
Current Organization
Current CTC (Numeric Values only)
Expected CTC
Notice Period
Professional Gap (Y/N)
Educational Gap (Y/N)
Have you ever worked for tcs or CMC
Current location
Linkedin resume updated (Y/N)

Are you available for interview on 02-Feb-23 (Y/N) -
If YES at what time on 02-Feb-23

Mrunali Sonarkar
Human Resource Specialist
Forwarded from Aman Raj
Dear,

I have opening for Senior Developer/Lead - Hyderabad

JD:
Java8
Design Pattern
Solid Principles
Springboot
Microservice Architecture
Junit
Any database

Location - Hyderabad
NP - 30 Days or service notice period and 60 Days also fine

If interested please share your CV to Ugesa_Elumalai@epam.com

Ugesa V E
Talent Acquisition Specialist at EPAM Systems
Forwarded from Aman Raj
Hi
Jade is hiring
ยท Around 3+ years of experience in developing web-based applications in Core Java/J2EE and Microservices technologies

Experience on Spring, Spring Boot, Hibernate, highly responsive web applications using React JS, Angular.


Location- Pune, Hyderabad , Kolkata , Chandigarh
If you are interested then please share your resume at rupali.lokhande@jadeglobal.com
along with following details
Notice period/LWD
CCTC
ECTC

Rupali Lokhande
Talent Acquisition Specialist at Jade Global
Forwarded from Aman Raj
Hi Aman

Iโ€™ve looked through your profile, and your experience in Java is quite impressive.

There are openings for multiple positions across India and I believe this opportunity will be an awesome upgrade for you!

Bhubaneshwar (3-8)

3-5 yrs :-https://career.infosys.com/jobdesc?jobReferenceCode=INFSYS-EXTERNAL-148254

5-8 yrs :-https://career.infosys.com/jobdesc?jobReferenceCode=INFSYS-EXTERNAL-148260

We are looking forward for your response.

Connect with me on LinkedIn for more updates and information
https://www.linkedin.com/in/prashanth-bharadwaj-45124516b/

Regards
Prashanth Bharadwaj

Prashanth Bharadwaj
Talent Acquisition Specialist at Infosys
Java Hyd Team pinned ยซhttps://github.com/amanrashmยป
They have openings for freshers in industry
HAPPY SARASWATI PUJA ๐Ÿ˜Š
โค1
Hi all pls attend class tomorrow
Kannababu sir asked me 2 take class
Message from srinivas sir so if you are all available do join the session and some projects ๐Ÿ™‚
// Wjp to count the no. of characters in given array I/P :- satgya O/P :- s= 1 a= 2 T = 1 h= 1 y=1


public class CountCharacter {

public static void main(String[] args) {

String str = "12345613245";

int count[] = new int[256];

int len = str.length();

for (int i = 0; i < len; i++)
count[str.charAt(i)]++;

char ch[] = new char[str.length()];
for (int i = 0; i < len; i++) {
ch[i] = str.charAt(i);
int find = 0;
for (int j = 0; j <= i; j++) {

// If any matches found
if (str.charAt(i) == ch[j])
find++;
}

if (find == 1)
System.out.println(str.charAt(i) + " =" + count[str.charAt(i)]);
}
}
}
๐Ÿ‘1
public class ReverseWordsInSentence {
public static void main(String[] args) {
String sentence = "which is the biggest continent";
String[] words = sentence.split(" ");
String reversedSentence = "";
for (int i = 0; i < words.length; i++) {
String word = words[i];
String reversedWord = "";
for (int j = word.length() - 1; j >= 0; j--) {
reversedWord = reversedWord + word.charAt(j);
}
reversedSentence = reversedSentence + reversedWord + " ";
}
System.out.println(reversedSentence);
}
}
public class LargestNumber {
public static void main(String[] args) {
int N = 139;
int D = 3;

int L = 0;

for (int i = N - 1; i >= 0; i--) {
String number = String.valueOf(i);
if (!number.contains(String.valueOf(D))) {
L = i;
break;
}
}

System.out.println("Largest number less than " + N +
" and not containing " + D + " is " + L);
}
}
๐Ÿ‘1