lecture

8 Ways To Increase Thinking Capacity of Your Brain

2ecd54d9403337cea46937e77a4ad6a8
George Bernard once said, “Few people think more than two or three times a year; I have made an international reputation for myself by thinking once or twice a week.” Scientifically, this is technically impossible but morally then we can be quick to judge.
Perhaps the most complicated and greatest asset a human being can have is the processing power between your ears. This in mind, investing in this supercomputer is the greatest gift you can give yourself.
Amazingly, scientists think that the average humans only use 10% of their brain! Very few of us take time or allocate resources to train our brains. Neuroscientists believe that we are stuck with the same brain we were born with!
The good news is that you don’t need to be a billionaire to improve memory or your thinking capacity. Think of your brain as a muscle that needs to be exercised.  All you need to do is dedicate some few minutes every day to do some exercises.

Here are 8 easy ways you can increase your brain power and improve your thinking capacity

1. Exercise regularly

Just as you take time to do some physical exercises, you should allocate time to do some mind exercises. Mind exercises improve mind fitness just the same way physical exercises improves physical fitness. Neurologists have proven that regular exercises of the brain enhances brain functioning and improves neurogenesis. Physical exercises have also been linked to the formation of new brain cells and thus you should stay physically active too.

2. Train your memory

If you don’t use your brain, it will stagnate. If you want your dog to be a better fetcher, you must train or get it trained to fetch. Likewise, if you need you brain

What is a Human, Really? Thinking about Definition via Aristotle

If your definition of a word is to be any good, Aristotle was the first to notice that it should say something general and something specific. Aristotle designated these two components the genus and species of a definition. Thus you might define human this way:
A human is an animal (genus) that is rational (species).
Or you could simply say:
Humans are rational animals.
Aristotle’s species component of a definition is sometimes referred to by the Latin word, differentia. And so, in definition, we have a general statement about a word accompanied by a differentia. Hence this too might be considered a definition of human (though perhaps not a good one):
A human is an animal that laughs. 
The reason a laughing animal is not quite as good a definition of the human as a rational animal is that one seems more essential to being human than the other. Or, at least, you could argue this (but don’t try it with someone who is British).
In any case, in seeking a good definition for a word, we want to identify, not just its unique properties, but its most essential qualities (and to foreground those). Aristotle’s own definition for the human was “political animal.” He believed that the most essential differentia about humans was their cultural behavior—their collective life in the polis (the city).  
But in defining something, we might also wish to say something a bit less obvious and concise, and be a tad more elaborate:
Humans belong to the small group of self-aware social mammals that includes chimps and dolphins. 
That’s a pretty clear answer to the genus question: humans are broadly or narrowly located within the hierarchy of living things, and most specifically within the kingdom of animals (or even more specifically, within the group of mammals that are self-aware and social). But notice that there’s no differentia on this definition yet.
Now for the differentia—the “species” designation. What distinguishes, in an essential manner, humans from other self-aware social mammals? In answer to this we might conclude the following: humans are uniquely characterized by their ability to reason, to speak, and to extend their influence and control over their environments via tools.
So this brings us to a pretty good definition for what it means to be human:
Humans are self-aware social mammals generally possessing the ability to reason, speak, and use complex tools.
Image result for human being thinking
Image result for human being thinking
Image result for human being thinking
Image result for human being thinking
Image result for human being thinking

rsv

Image result for human being thinking
Image result for human being thinking
class Test
{
    int a,b;
    Test(int x,int y)
    {
        a=x;
        b=y;
    }
   
    void meth(int x,int y)
    {
        a=x*2;
        b=y/2;
        System.out.println("in meth function A :"+a);
        System.out.println("in meth function B :"+b);
       
    }
}

class CallByValue
{
    public static void main(String arg[])
    {
   
        int a,b;
        a=10;
        b=20;
       
        Test t1= new Test(a,b);
        System.out.println("A:"+a);
        System.out.println("B:"+b);
       
        t1.meth(a,b);
       
        System.out.println("A:"+a);
        System.out.println("B:"+b);
       
    }
}
/*
1
    Write a JAVA program which performs the following tasks
   
    A    Create a package named MyPackage which consists of following classes:

              class names Student to store information like roll number, first name,
            middle name, last name, address and age of the student. The class must
            contain appropriate get and set methods.

    B    A class named TestProgram which when executed displays a menu with following operations:
            1    Add a new record
            2    Show all records
            3    Search a record
            4    Remove a record
            5    Exit

            1    For “Add a new record”, take input from the user for the Student member
                variables and store the same details in the pre – configured data file as objects of Student class

*/



package MyPackage;
import java.util.*;
import java.io.*;

class Student
{
    int rollno;
    String firstName;
    String middleName;
    String lastName;
    String address;
    int age;

    Student(int rollno,String firstName,String middleName, String lastName, String address,int age)
    {
        this.rollno=rollno;
        this.firstName=firstName;
        this.middleName=middleName;
        this.lastName=lastName;
        this.address=address;
        this.age=age;
    }
    void display()
    {
        System.out.println();
        System.out.println("Roll No : ->"+rollno);
        System.out.println("First Name : ->"+firstName);
        System.out.println("Middle Name : ->"+middleName);
        System.out.println("Last Name : ->"+lastName);
        System.out.println("Address : ->"+address);
        System.out.println("Age : ->"+age);

    }

}
class TestStudent
{
    public static void main(String args[]) throws Exception
    {
        while(true)
        {
            Scanner s=new Scanner(System.in);
            System.out.println("Main Manu");

            System.out.println("1.Add a new record");
            System.out.println("2.show all record");
            System.out.println("3.serch a record");
            System.out.println("4.Remove a record");
            System.out.println("5.Exit");

            System.out.print("Enter Your choice : -");
            int choice=s.nextInt();

            switch(choice)
            {
                case 1:
                   
                    System.out.print("Enter Roll Number ->");
                    int rollno=s.nextInt();

                    System.out.print("Enter First Name ->");
                    String firstName=s.next();

                    System.out.print("Enter Middle Name ->");
                    String middleName=s.next();

                    System.out.print("Enter Last Name ->");
                    String lastName=s.next();

                    System.out.print("Enter Address ->");
                    String address=s.next();

                    System.out.print("Enter Age ->");
                    int age=s.nextInt();

                    Student stu=new Student(rollno,firstName,middleName,lastName,address,age);
                    stu.display();

                    FileWriter fw=new FileWriter("Student.doc",true);
                    fw.write('\n'+""+rollno+" "+firstName+" "+middleName+" "+lastName+" "+address+" "+age);
                    fw.close();

                    break;
               
                case 2:

                    FileReader fr=new FileReader("Student.doc");
                    BufferdReader br=new BufferdReader(fr);
                    String rc;
                    while((rc=br.readLine())!=null)
                            System.out.print(rc);
                    br.close();
                    fr.close();
               
                    break;
               
                case 3:
               
                    break;
               
                case 4:
               
                    break;
               
                case 5:
                   
                    System.out.println("Goog Buy...!!!");
                    System.exit(0);
                    break;

                default:
                    System.out.println("Please Enter Valid Choice...");
               

            }


        }
    }
}
જે લોકો  વે મારા બ્લોગ ની વિઝિટ  કરી  એ બદલ  તમારો  ખુબ  ખુબ  આભાર
ભણતર  ની પરીક્ષા  પુરી  થઇ ગઈ પણ  જિંદગી  ની પરીક્ષા  હજુ  બાકી  સે  મારા ભાઈ।

Unleashing B2B Success: Mastering Event and Conversion Tracking with GA4

Tracking events and conversions is vital for B2B businesses using GA4 (Google Analytics 4) to optimize their marketing efforts. Here is a re...