Posts

Showing posts from February, 2024

erytym beat

  [50+] FREE COMMUNITY SAMPLE PACK 2023 (Drill, Trap, Rap, Melodic, Guitar) (youtube.com)

infos ca pychology

Introduction:   Resilience: While often portrayed as simply bouncing back from adversity, resilience encompasses a dynamic and multifaceted process. It involves the ability to effectively manage challenging emotions and situations (coping skills), identify and utilize internal and external resources (resourcefulness), and adapt and learn from experiences to grow despite challenges (adaptability) (Southwick & Bonanno, 2018; Luthar, 2000; Masten, 2009). Its expression varies across individuals due to personal characteristics, experiences, and social support (Rutter, 2012), across cultures due to diverse values and practices (Van der Veer, 2018), and across contexts depending on the specific challenges and circumstances (Ungar, 2011). Happiness: Beyond fleeting moments of joy, happiness represents a holistic sense of life satisfaction and emotional fulfillment (Diener et al., 2003). It encompasses both "eudaimonia," a meaningful and purpose-driven life (Waterman, 2013), an...

.net class

 String is used in class and the string is used in object variable. System.String greeting = "Hello, world!"; string place = "world"; Q. How to use .net cli? Q. How to use the .net help? Q. Jumping statements. Do programming.

CSE310 Java

 myclass.lpu.in course : Programming in Java CSE310 2024 17 feb, ca 1 : Unit one and Unit two. 5/2 Primitive variable: They stored directly in the memory and they store simple data values which are not associated with any objects or classes. There are eight different primitive data types. boolean, byte, char, short, int, long, float, double. int x= 0; double d = 13.33; Double marks = Double NaN; Sout(Double.isNaN(marks); This is showing as Not a number. When we try to assign marks of students and we just don't want to assign any number yet we use NaN. Reference variable: holds referencs(memory addresses) to object or instances of classes. String S = null; Date d = null; int[] x; We use null to reference variable because we don't want to assign any value to the variable yet.