Posts

Showing posts from February, 2023

Slef- referential Class

 In order to design a node a special type of class is used often called as Self-referential class i.e., A class having a variable  of same class type. class Link  { ------ ------ //Data ------ Link next; } Ex:-  class Link {  public int rollNo;  public String name;  public Link next;  public Link (int rNo, String n)  {  rollNo=rNo;  name=n;  }  public void displayLink ()  {  System.out.print("{"+rollNo+","+name+"}");  } }

How to know your ip address?

 If you want to find the IP address of a device or a website, there are several ways to do so depending on your operating system and your level of technical expertise: Using Command Prompt (Windows): Open Command Prompt by pressing the Windows key + R, typing "cmd" in the Run box, and then pressing Enter. In the Command Prompt window, type "ping [website or IP address]" and press Enter. The IP address will be displayed in the output. Using Terminal (Mac OS): Open Terminal by searching for it in Spotlight or opening it from the Applications/Utilities folder. In the Terminal window, type "ping [website or IP address]" and press Enter. The IP address will be displayed in the output. Using a website: There are many websites that can display the IP address of a website or your own IP address. One such website is "whatismyip.com". Simply visit the website and it will display your IP address. Using network settings: On Windows, go to Settings > Netwo...

What to watch?? 🤔

 There are many things you can watch depending on your interests. Here are a few suggestions: Movies: If you're in the mood for a movie, you might want to check out the latest releases on streaming platforms such as Netflix, Amazon Prime Video, or Hulu. You could also consider watching a classic film or one of your favorite movies from the past. TV Shows: There are so many great TV shows available to watch, from dramas to comedies to reality shows. Some popular options include "Game of Thrones," "Stranger Things," "The Crown," "The Office," "Friends," "Breaking Bad," "The Sopranos," and "Mad Men." Documentaries: If you want to learn something new, a documentary might be the way to go. There are documentaries available on all sorts of topics, from nature and science to history and politics. Some popular documentary options include "The Social Dilemma," "Making a Murderer," "The L...

What is java?

Image
  What Is Java Definition What is java Java is a popular programming language that was created by James Gosling at Sun Microsystems (which has since been acquired by Oracle Corporation) in the mid-1990s. It is an object-oriented language that is class-based and uses a syntax similar to C++. Java is widely used to develop applications for desktop computers, mobile devices, and web servers, as well as to build embedded systems and gaming applications. One of the main benefits of Java is its "write once, run anywhere" (WORA) principle, which means that code written in Java can run on any device that has a Java Virtual Machine (JVM) installed, regardless of the underlying hardware architecture or operating system. This makes it a highly portable language, and is one of the reasons why it is so widely used today. Java is also known for its rich set of libraries and APIs that provide functionality for a wide range of tasks, from graphical user interfaces and database connectivity t...

Three Ways To Combat Burnout TIPS

 "Practice self-care: Take time for yourself and engage in activities that you enjoy and that help you relax, such as exercising, reading, meditating, or spending time with friends and family. Set boundaries: Learn to say "no" when you are feeling overwhelmed, and make sure to take breaks and time off when you need it. Set clear boundaries between your work and personal life, and stick to them. Seek support: Talk to someone you trust about how you are feeling. Whether it's a friend, family member, or therapist, having a supportive network can help you manage stress and overcome burnout. Reframe your thoughts: Challenge negative self-talk and focus on the positive aspects of your life and work. Set realistic goals and priorities, and don't be too hard on yourself if you don't meet every expectation. Change your environment: If possible, make changes to your physical workspace or take a break from your routine. A change of scenery can help refresh your mind and...