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
Top Java Interview Questions and Answers (2022) - InterviewBit
https://www.interviewbit.com/java-interview-questions/amp/
Join here for messaging
Either wrong or right please let me know will help you in
If you will solve this i will refer your profile in Amazon for SDE1
When I started learning ๐——๐—ฆ๐—”. I didnt know how difficult it was going to be or for how long I will be able to give time to this. I only knew basics of C++ and some basic data structure like: stacks and queues.

And still, DSA and System Design are the two things upon which you'll be most grilled on in interviews of almost all product-based companies.

But bhaiya, mai try toh kar rha hu, par questions hote hi nhi hai.

Kya karu, I'm getting demotivated.๐Ÿ˜

I remember, I also feel the same way when I started with DSA in my college.

I heard about ๐—ฆ๐—ฃ๐—ข๐—, ๐—ฐ๐—ผ๐—ฑ๐—ฒ๐—ฐ๐—ต๐—ฒ๐—ณ and ๐—ต๐—ฎ๐—ฐ๐—ธ๐—ฒ๐—ฟ๐—ฟ๐—ฎ๐—ป๐—ธ in college. I tried ๐—–๐—ผ๐—ฑ๐—ฒ๐—–๐—ต๐—ฒ๐—ณ, could not understand the UI and how to read the inputs in my program, so I left it. Looked at ๐—ฆ๐—ฃ๐—ข๐—, didnt like the UI either.

I tried ๐—š๐—ฒ๐—ฒ๐—ธ๐˜€๐—ณ๐—ผ๐—ฟ๐—ด๐—ฒ๐—ฒ๐—ธ, then jumped to ๐—–๐—ผ๐—ฑ๐—ฒ๐—–๐—ต๐—ฒ๐—ณ, ๐—›๐—ฎ๐—ฐ๐—ธ๐—ฒ๐—ฟ๐—˜๐—ฎ๐—ฟ๐˜๐—ต, ๐—Ÿ๐—ฒ๐—ฒ๐˜๐—–๐—ผ๐—ฑ๐—ฒ, etc, and in fact participated in a lot of contests.โญ

It's not really hard to master DSA. It's just you need to be more consistent in solving at least a problem daily.

Believe me, Consistency is the Key โณ

Some of the Major reasons people not improving in problem-solving and DSA is they are lacking consistency.

Hard to do LeetCode or GeeksForGeeks daily, but if you convince your mind to do it as a habit then it will be easy.

No matter what happens, you will ๐—ณ๐—ฒ๐—ฒ๐—ฑ ๐—ผ๐˜‚๐—ฟ๐˜€๐—ฒ๐—น๐˜ƒ๐—ฒ๐˜€ daily because you have been doing it for a long time and you have no trouble doing it.

Try to do same habit with your favourite coding platform..

Fix a slot in the day / night as per your convenience, and do LeetCode daily at the same time.

Doing this 2-3 months without missing a single day, missing a day will be more difficult in doing LeetCode that day.

You'll soon see the magic of being consistent in your problem-solving skills.

Freshly, I came across this useful resource of DSA. You can have a look at it by clicking on the given link below.
I will share the link for learning only when you will complete above code ๐Ÿ˜Š๐Ÿ˜Š
Do you want a session tom. morning on Stream Api morning 6am?
Anonymous Poll
92%
yes
8%
no
Only 4 votes looks like everyone else knows
5_6260363954355177857.pdf
788.3 KB
DATA STRUCTURES HAND WRITTEN NOTES PART 1
๐Ÿ‘1
Wipro sending assessment test links pls do check your mail
not possible to send folders as it contains more than 2000 files i will update on my git kindly go through
import java.util.ArrayList;
import java.util.List;
import java.util.stream.Collectors;

public class TestEmp {

public static void main(String[] args ) {
List<Employeee1> empList = new ArrayList<>();
empList.add(new Employeee1(1, 10000));
empList.add(new Employeee1(2, 15000));
empList.add(new Employeee1(3, 12000));

System.out.println("Before Total Sal----------------");
empList.forEach(System.out::println);

// for(Employeee1 e : empList) {
// int da = (int) (e.basicSal * 0.2);
// int hra = (int) (e.basicSal * 0.3);
// e.totalSal = da + hra + e.basicSal;
// }
// System.out.println("After Total sal----------------");
// empList.forEach(System.out::println);
//
// List<Employeee1> lowSal = new ArrayList<>();
// for(Employeee1 e : empList) {
// if(e.totalSal < 20000) {
// e.totalSal += 5000;
// lowSal.add(e);
// }
// }
//
// System.out.println("After Low----------------");
// lowSal.forEach(System.out::println);

System.out.println("Streams------------");

List<Employeee1> streamList = empList.stream().map(e -> {
int da = (int) (e.basicSal * 0.2);
int hra = (int) (e.basicSal * 0.3);
e.totalSal = da + hra + e.basicSal;
return e;
}).collect(Collectors.toList());

for(Employeee1 e : streamList) {
System.out.println(e.toString());
}
System.out.println("Streams low sal------------");

streamList.stream().filter(e -> e.totalSal < 20000).map(e -> {
e.totalSal += 5000;
return e;
}).forEach(System.out::println);

}
}
public class Employeee1 {

int empNo;
int basicSal;
int totalSal;

public Employeee1(int empNo, int basicSal) {
super();
this.empNo = empNo;
this.basicSal = basicSal;
}

public int getEmpNo() {
return empNo;
}

public void setEmpNo(int empNo) {
this.empNo = empNo;
}

public int getBasicSal() {
return basicSal;
}

public void setBasicSal(int basicSal) {
this.basicSal = basicSal;
}

public int getTotalSal() {
return totalSal;
}

public void setTotalSal(int totalSal) {
this.totalSal = totalSal;
}

@Override
public String toString() {
return "Employeee1 [empNo=" + empNo + ", basicSal=" + basicSal + ", totalSal=" + totalSal + "]";
}





}
import java.util.*;
public class TestStream {

public static void main(String[] args) {

List<Integer> iList = Arrays.asList(2,3,4,5,6,7,8);

iList.stream().filter(i -> i%2==0).map(i -> i*i).filter(i->i<50).forEach(System.out::println);
}

}
Kindly check files in channel for PDFs , handwritten notes , docs n many more concepts if still having issues ping us @stockkida
You can join this group for messaging