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
Flowcharts
Backtracking
Variables & Data Types in Java
Time & Space Complexity
Operators
ArrayLists
if-else Statements
Linked Lists
Flow Control (Loops)
Stacks
Patterns
Queues
Functions & Methods
Greedy Algorithms
Arrays
Binary Trees
Sorting Algorithms
Binary Search Trees
2D Arrays
Heaps/Priority Queues
Strings
Hashing
Bit Manipulation
Tries
OOPs
Graphs
Recursion
Dynamic Programming
Divide & Conquer
Segment Trees
Still waiting for that dream job to come along?

The process of applying for jobs can seem long and arduous - which is why many job seekers become despondent quickly.

This is particularly true for those still employed, trying to find a better opportunity during snatched lunch breaks and late evenings.

“Work smarter, not harder” - you’ve heard this before, right?

That’s exactly what you need to do if you’re searching for a new job.

If you’re serious about landing something amazing, you need to work on better habits to make your job hunting more effective so that every application truly counts.

And spending hours on end isn’t necessarily going to get you more results, unfortunately.

Here are three tips:

- Improve your communication skills. There is no going around networking to land the job you want in this day and age. People will most likely hire people that give them a sense of reassurance they can do the job. And when people vouch for them, it makes them more secure.

- Time management. With a full-time job and maybe a family, you need to make sure that you’re managing your time effectively to block time in your schedule searching for new opportunities.

- Distraction-free zones. The same way you manage your urgent projects at work, set distraction-free times during your job search time so that you can focus fully on the tasks at hand - finding a job. Make a coffee, set a timer for one hour, put your phone away, and spend the next 60 minutes searching for something that excites you.

I hope that helps you!


Your coach,
👍2
assignment 1.)display products table and employee table with conditional rendering true means products table false means employee
Forwarded from SathyaReact
Tomorrow drive on react
Forwarded from SathyaReact
6 positions
Forwarded from SathyaReact
Virinchi
Forwarded from SathyaReact
I will talk with technical team tomorrow regarding pending syllabus
Java Hyd Team
WhatsApp: https://chat.whatsapp.com/F7kqpKp6WFZJQiuTXpYH1K
Will update some more job updates by late night today 😊 join fast as old opportunities you can't get now so don't miss next upcoming opportunities
You can share channel links with your friends too it's 100% to join even if all job referral are free for everyone
Send your resumes for referrals we will refer to many product base companies ( good companies like PWC, oracle , CTS , Benz , Jenkins, and many more)
So don't miss to join and grab the opportunities 🙂
Those whose concept is clear in javascript and react can ping us so that we can make a list for referrals
👍1
Please update your names @stockkida
import java.util.*;
public class Lucky_Number {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("Enter the car no:");
int num = sc.nextInt();
if (num < 0000 || num > 9999) {
System.out.println(num + " is not a valid car number");
} else {
int sum = 0;
while (num > 0) {
sum += num % 10;
num /= 10;
}
if (sum % 3 == 0 sum % 5 == 0 sum % 7 == 0) {
System.out.println("Lucky Number");
} else {
System.out.println("Sorry its not my lucky number");
}
}
}
}
if(!isNaN(form.elements[i].value))
{
alert("This Field must be Char's")
form.elements[i].value=""
form.elements[i].focus()
return false
}
}
if(document.F1.password.value!=document.F1.repassword.value)
{
alert("Check Confirm PWD");
document.F1.repassword.value=""
document.F1.repassword.focus()
return false
}


if(!isNaN(document.F1.phone.value))
{
if(document.F1.phone.value >9999999999 )
{
alert("ye kabhi nhi aayegi")
document.F1.phone.value=""
document.F1.phone.focus()
return false
}
}
else
{
alert("This field must be number")
document.F1.phone.value=""
return false
}



if(!isNaN(document.F1.amount.value))
{
if(document.F1.amount.value < 500)
{
alert("Minimum Balance should be 500 /-")
document.F1.amount.value=""
document.F1.amount.focus()
return false
}
}
else
{
alert("This field must be number")
document.F1.amount.value=""
return false
}


for(var i=0; i<form.elements.length; i++)
{
if(form.elements[i].value == "")
{
alert("Fill out all Fields")
document.F1.username.focus()
return false
}
}

return true
}