Chenna Tech Point

Chenna Tech Point

Hi Friends..!!

Welcome to Chenna Tech Point .I share my technical knowledge experience through this channel.



Пікірлер

  • @chrisder1814
    @chrisder181423 күн бұрын

    hello Do you use custom gpt?

  • @karthickarumugam489
    @karthickarumugam48925 күн бұрын

    Good Effort . Keep it up

  • @user-pj5hh6cu4z
    @user-pj5hh6cu4z25 күн бұрын

    Nice

  • @sunnysangle304
    @sunnysangle304Ай бұрын

    Thank you so much

  • @Eng_5567
    @Eng_5567Ай бұрын

    I am getting error like "server refused our key"

  • @inturibhargav4725
    @inturibhargav4725Ай бұрын

    Here t2 in not available only t3 avalible

  • @guptasannidhi8441
    @guptasannidhi84412 ай бұрын

    can we use .sorted(Comparable.comparingDouble(Employee::getSalary).collect(Collectors.toList));

  • @RiYa...2517
    @RiYa...25172 ай бұрын

    super its working anna... thanks

  • @chennatechpoint
    @chennatechpoint2 ай бұрын

    Welcome

  • @saketsourav31
    @saketsourav312 ай бұрын

    1. empList.stream() .sorted(Comparator.comparingInt(Employee::getSalary).reversed()) .collect(Collectors.toList());

  • @start1learn-n171
    @start1learn-n1713 ай бұрын

    Tq

  • @star_0312
    @star_03124 ай бұрын

    Thank you for valuable information

  • @ManivannanBeat
    @ManivannanBeat4 ай бұрын

    Thank you so much for your videos

  • @radiatorroy5703
    @radiatorroy57034 ай бұрын

    Thanks a lot bhai. I was always clicking on specify username and entering some other user name and getting error everytime. Now I know not to click on specify username.

  • @user-vx5gl7kf9b
    @user-vx5gl7kf9b4 ай бұрын

    Thank you

  • @selvasun4491
    @selvasun44915 ай бұрын

    Good explanation.

  • @sanchitdhumale9348
    @sanchitdhumale93485 ай бұрын

    Thank you😊

  • @kiranpatil371
    @kiranpatil3715 ай бұрын

    1) empList.stream().filter(e1, e2-> e1.getSalary() > e2.getSalary()).forEach(e -> System.out.println(e));

  • @gamberapetsrikanth9858
    @gamberapetsrikanth98585 ай бұрын

    Hi bro, I'm getting as -Warning: Identity file /Users/name/Documents/test.pem not accessible: No such file or directory. Please help on this issue

  • @Simplified.Solutions
    @Simplified.Solutions6 ай бұрын

    Thanks bro

  • @abdulrashidsinancu1630
    @abdulrashidsinancu16306 ай бұрын

    You can also try this public static void main(String[] args) { String str="this is java program this is java program"; int len=str.length(); int mid=str.length()/2; String firstHalf=str.substring(0,mid).toLowerCase(); String secondHalf=str.substring(mid,len).toUpperCase(); System.out.println(firstHalf + secondHalf); }

  • @geethabodasingi2514
    @geethabodasingi25147 ай бұрын

    Sir please upload pdf sir

  • @renatomdemello
    @renatomdemello9 ай бұрын

    Awesome!! Thanks a lot!

  • @swarnavenkateswarulu185
    @swarnavenkateswarulu18510 ай бұрын

    can we use putty for practice linux commands

  • @Priyankaa1155
    @Priyankaa115510 ай бұрын

    Thank you so much very useful video

  • @chennatechpoint
    @chennatechpoint10 ай бұрын

    You are most welcome

  • @ayden1.
    @ayden1.10 ай бұрын

    slime

  • @shaiksabahath8061
    @shaiksabahath806111 ай бұрын

    For how many experience?

  • @chennatechpoint
    @chennatechpoint10 ай бұрын

    4 years experience

  • @ktpatil914
    @ktpatil914 Жыл бұрын

    Hi, Could you please let me know, will MobaXterm allow multiple users connect to the single server at a time.

  • @chennatechpoint
    @chennatechpoint Жыл бұрын

    Yes, MobaXterm allows multiple users to connect single server at a time Thank you

  • @bala7965
    @bala7965 Жыл бұрын

    //Second Problem class HelloWorld { public static void main(String[] args) { String num="98765432100"; String res=""; for(int i=0;i<num.length();i++){ int visible=num.length()-i; res+=(visible==2||visible==1)?num.charAt(i):"#"; } System.out.println(res); } }

  • @Jet_SetDiaries
    @Jet_SetDiaries Жыл бұрын

    How many rounds of interview for 2.6 years experience

  • @chennatechpoint
    @chennatechpoint Жыл бұрын

    @HelloWorld-vu5zd Two rounds, One Technical and One HR round Thank you

  • @niteshpandey8207
    @niteshpandey8207 Жыл бұрын

    The second question is good

  • @MonuB-vn2hp
    @MonuB-vn2hp Жыл бұрын

    Which location

  • @chennatechpoint
    @chennatechpoint Жыл бұрын

    @MonuB-vn2hp Hyderabad location Thank you

  • @niranjansharma9709
    @niranjansharma9709 Жыл бұрын

    Nice Video

  • @nitheeshk1292
    @nitheeshk1292 Жыл бұрын

    how to learn the pattern that is given inside replaceall method?

  • @chennatechpoint
    @chennatechpoint Жыл бұрын

    @nitheeshk1292 You can learn regular expression inside replaceall method through javatpoint, tutorialspoint and geeksforgeeks Thank you

  • @gayathrinomula6235
    @gayathrinomula6235 Жыл бұрын

    Hi sir why should only use sum keyword why can't we use other keyword instead of sum ?[ Integer sum=in.stream().reduce(0 ,Integer::sum);] in this line? if I use other keyword instead of sum it's throwing an error why is it happening can you please tell me sir

  • @chennatechpoint
    @chennatechpoint Жыл бұрын

    @gayathrinomula6235 Integer sum=in.stream().reduce(0 ,Integer::sum); Above code you can change other keyword instead of sum but Integer::sum don't change anything. Integer sum is variable. Integer::sum is method reference. You can use below code Integer (use other keyword instead of sum)=in.stream().reduce(0 ,Integer::sum); Thank you

  • @mominuber
    @mominuber Жыл бұрын

    //Le Javascript const List1= [1,2,3,4,5]; const List2=[3,4,5,6,7,8]; const merged=List1.concat(List2); console.log(List1,List2); console.log(merged); "Input:" [1, 2, 3, 4, 5] [3, 4, 5, 6, 7, 8] "Output:" [1, 2, 3, 4, 5, 3, 4, 5, 6, 7, 8] ************************Second Problem*********************** const arr=[1,2,3,4,5,3,4,5,6,7,8]; const uni=arr.filter((a,b)=>arr.indexOf(a)==b); console.log('Input:',arr); console.log('Unique:',uni); "Input:" [1, 2, 3, 4, 5, 3, 4, 5, 6, 7, 8] "Unique:" [1, 2, 3, 4, 5, 6, 7, 8]

  • @mominuber
    @mominuber Жыл бұрын

    Bro in second problem interviewer haven't provided the input in an array then why your input and output is inside an array.your solution is wrong.look at my input and output that i have commented down below.

  • @chennatechpoint
    @chennatechpoint Жыл бұрын

    @mominuber, Interviewer asked to sort an ArrayList in Descending Order In Java. Above problem statement can solve in different ways. Thank you. Input: AA, ZZ, CC, FF Output: ZZ, FF, CC, AA

  • @mominuber
    @mominuber Жыл бұрын

    @@chennatechpoint Then put them in an array.e.g:[AA,etc].

  • @mominuber
    @mominuber Жыл бұрын

    //Le javascript const str='Eelcome to javascript'; let w='W'; let well=w+str.slice(1,25); console.log('Input:',str); console.log('Output:',well); //"Input:" "Eelcome to javascript" //"Output:" "Welcome to javascript" /* Second problem */ const alp="AA,ZZ,CC,FF"; const seq=alp.split(',').sort().reverse().join(); console.log('Input:',alp); console.log('Output:',seq); //"Input:" "AA,ZZ,CC,FF" //"Output:" "ZZ,FF,CC,AA"

  • @user-dc9pc9qw6q
    @user-dc9pc9qw6q Жыл бұрын

    How many rounds of interview are there??

  • @chennatechpoint
    @chennatechpoint Жыл бұрын

    @user-dc9pc9qw6q Two rounds

  • @Jet_SetDiaries
    @Jet_SetDiaries Жыл бұрын

    @@chennatechpoint Both will be technical or One Technical one Hr??

  • @chennatechpoint
    @chennatechpoint Жыл бұрын

    @HelloWorld-vu5zd One Technical and One HR round

  • @Aktrader009
    @Aktrader009 Жыл бұрын

    try this code also class Main { public static void main(String[] args) { for (int i=(int)'B'-(int)'A';i<='d';i++){ System.out.println(i); } } }

  • @saiprakash3152
    @saiprakash3152 Жыл бұрын

    Please upload more and more interviews programs

  • @saiprakash3152
    @saiprakash3152 Жыл бұрын

    Sir please upload more and more interviews coding programs sir

  • @TT-xg7qd
    @TT-xg7qd Жыл бұрын

    Nice work brother 👍👍 keep rocking 👍👍 New subscriber here 🎉

  • @Crenuse4051
    @Crenuse4051 Жыл бұрын

    It's real time interview? , becouse recently I see videos of experience coding interview and questions it's too much difference

  • @chennatechpoint
    @chennatechpoint Жыл бұрын

    @Chaitanya Renuse Yes, it's real time interview questions asked in technical round

  • @Crenuse4051
    @Crenuse4051 Жыл бұрын

    @@chennatechpoint ok, thanx for giving information

  • @manishanand2985
    @manishanand2985 Жыл бұрын

    Great

  • @premalatha9291
    @premalatha9291 Жыл бұрын

    Thanks

  • @naveenchebolu6757
    @naveenchebolu6757 Жыл бұрын

    Good question

  • @chennatechpoint
    @chennatechpoint Жыл бұрын

    package com.example; public class ChangeCase { public static void main(String[] args) { String str1="JavaProgram"; StringBuffer newStr = new StringBuffer(str1); for(int i=0;i<str1.length();i++) { //checks for lower case character if(Character.isLowerCase(str1.charAt(i))) { //convert it into upper case using toUpperCase() function newStr.setCharAt(i, Character.toUpperCase(str1.charAt(i))); } //checks for upper case character else if(Character.isUpperCase(str1.charAt(i))) { //convert it into lower case using toLowerCase() function newStr.setCharAt(i,Character.toLowerCase(str1.charAt(i))); } } System.out.println("String after case conversion :"+newStr); } }

  • @sweetthirty2
    @sweetthirty2 Жыл бұрын

    Wow

  • @diljeet6435
    @diljeet6435 Жыл бұрын

    int sum = list.stream().collect(Collectors. summingInt(Integer::new));

  • @rajeshroyal8882
    @rajeshroyal8882 Жыл бұрын

    You can use filter instead to filter out employees who has age >25 and in the map we can increase the salary