https://docs.google.com/document/d/16sI_c724dh6XAU9c1YygytP7etdFcYKlx5gS4r4YfUU/edit?usp=drivesdk
SQL NOTES UPDATED SOME QUESTIONS FOR NOW WILL UPDATE NOTES BY TODAY NIGHT
SQL NOTES UPDATED SOME QUESTIONS FOR NOW WILL UPDATE NOTES BY TODAY NIGHT
// DISPLAY OUTPUT OF THIS SNIPPET !
class Patterns {
public static void main(String[] args) {
System.out.println("pattern programs ");
for(int i=1 ; i<=7; i++){
for(int j = 1 ; j<=7; j++){
if(j==i+1j==i+2 j==i+3j==i+4 j==i+5j==i+6 j==i+7){
System.out.print("*");
}else
System.out.print(" ");
}System.out.println();
}
}
}
class Patterns {
public static void main(String[] args) {
System.out.println("pattern programs ");
for(int i=1 ; i<=7; i++){
for(int j = 1 ; j<=7; j++){
if(j==i+1
System.out.print("*");
}else
System.out.print(" ");
}System.out.println();
}
}
}
Do you feel passionate about your job?
Personally, it took me a while to find something I was truly passionate about.
Something that would make me find joy and fulfillment in what I do.
Waking up excited to start the day.
Not waiting for the weekend or my next holiday to escape work.
I've always had jobs that I enjoyed but helping people navigate their career journeys has transformed everything I felt.
It truly lights me up and makes every day a new challenge.
And that's what I want to help other people do.
I want to help people like you find that one thing you're truly passionate about.
That makes you feel excited to wake up.
That takes away that Monday morning dread and flips it into Monday morning motivation.
Is it possible? Yes, it is. For every single one of you, it is.
Even if you have a different and unique career path or challenge.
It's about finding the right way!
If you're ready to step into a career you're truly passionate about, I'm here to help.
Get in touch if you're ready to get started - I can't wait to meet you!
#nailyourinterview #coaching #motivation #careeradvice #professionaldevelopment #interviews #jobseekers #growthacademy #mindset #success
Personally, it took me a while to find something I was truly passionate about.
Something that would make me find joy and fulfillment in what I do.
Waking up excited to start the day.
Not waiting for the weekend or my next holiday to escape work.
I've always had jobs that I enjoyed but helping people navigate their career journeys has transformed everything I felt.
It truly lights me up and makes every day a new challenge.
And that's what I want to help other people do.
I want to help people like you find that one thing you're truly passionate about.
That makes you feel excited to wake up.
That takes away that Monday morning dread and flips it into Monday morning motivation.
Is it possible? Yes, it is. For every single one of you, it is.
Even if you have a different and unique career path or challenge.
It's about finding the right way!
If you're ready to step into a career you're truly passionate about, I'm here to help.
Get in touch if you're ready to get started - I can't wait to meet you!
#nailyourinterview #coaching #motivation #careeradvice #professionaldevelopment #interviews #jobseekers #growthacademy #mindset #success
Java Hyd Team
We have 10 days to be prepared for next drive if all will be consistent for next 10 days we can give good response in upcoming interviews n paper's if you want us to support you with notes / gmeet for each topic daily for next 10 days do comment else leaveβ¦
I will do everything who will be committed for next 10 days after this i will del this channel n already i have restricted content copy ar saving so you can't do
public class SortAsc {
public static void main(String[] args) {
//Initialize array
int [] arr = new int [] {5, 2, 8, 7, 1};
int temp = 0;
//Displaying elements of original array
System.out.println("Elements of original array: ");
for (int i = 0; i < arr.length; i++) {
System.out.print(arr[i] + " ");
}
//Sort the array in ascending order
for (int i = 0; i < arr.length; i++) {
for (int j = i+1; j < arr.length; j++) {
if(arr[i] > arr[j]) {
temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
}
}
System.out.println();
//Displaying elements of array after sorting
System.out.println("Elements of array sorted in ascending order: ");
for (int i = 0; i < arr.length; i++) {
System.out.print(arr[i] + " ");
}
}
}
public static void main(String[] args) {
//Initialize array
int [] arr = new int [] {5, 2, 8, 7, 1};
int temp = 0;
//Displaying elements of original array
System.out.println("Elements of original array: ");
for (int i = 0; i < arr.length; i++) {
System.out.print(arr[i] + " ");
}
//Sort the array in ascending order
for (int i = 0; i < arr.length; i++) {
for (int j = i+1; j < arr.length; j++) {
if(arr[i] > arr[j]) {
temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
}
}
System.out.println();
//Displaying elements of array after sorting
System.out.println("Elements of array sorted in ascending order: ");
for (int i = 0; i < arr.length; i++) {
System.out.print(arr[i] + " ");
}
}
}