Skip to main content

Posts

The Power Of Nature - about Human Vs Rest Of The Natures

We are Known We are just live in Earth. The earth is a tiny piece of solar system. Solar system is a tiny piece of galaxy and etc.. etc... But, I would like to remember one think that's the world is not for only human. Its Also for other souls.like dog,cat,ant,trees fishes and etc... Human being are said humans are have better knowledge compared with other animals and souls.but, other animals and souls can't said iam best in the world. They are live these life joys full. The reson of joyful and happiness is these not have knowledge like human. The humans are said I am brilliant soul in the just piece of tempory living place is called earth or world or anything. Yeh I accept Humans are have better knowledge compared with others. But, human didn't have more knowledge compared with nature .  Because human or other souls are just a part of nature. Nature can survive with out humans. but human can able to with out nature?........ Nature System can give more knowl...

solar radiation collectors

Solar radiation collectors are used to collect the solar radiations from sun. flat plate collector conducive collector Flat plate collector Its used to collect both beam and defused radiations. Can function  without track sun. Easy to contract and little maintains. Components of flat plat collector 1.Transparent cover(glass or plates) 2.black end observer 3.tubes 4.Thermal insulator 5.Tight container 1.Shadow effect shadow effect=surface of collector light observed/total surface of collector. 2.casino effect The ratio of angle between flat plat collector and sun orientation. 3.reflector effect Total reflection of solar radiation in flat plat collector.

Constructor - Basic Java Programming

constructor is a spacial member function of class. member function name and class name should be same is called constructor. it execute when object is initialize for that class. Eg: class A { void A() { System.out.println("constructor called"); } public static void main(String[] args) { A a=new A(); } } output: constructor called From the above Java code contains one class named as "A".then the class have two member functions one is "A()" and another one is "main()".Now the Member Function name and class name should be same its called as constructor.We initialize the object for class A inside the main method.then the constructor automatically executed. Types Of Constructor 1.Simple Constructor 2. Parameterized Constructor Simple Contractor The Constructor Does Not Pass Parameters. Parameterized Constructor The Constructor Pass Parameters. eg: class A { void A(int a) { System.out.println("Parameterized Constructor : ...

Different Between OSI And IP/TCP

OSI TCP/IP It Has Seven Layer It Has Four Layer Transparent Layer Granite Delivery Of Packets Transport Layer Doesn't Granite Of Packets Horizontal Approach In Transmission Vertical Approach In Transmission Separate Session Layer No Session Layers Separate Presentation Layer No Presentation Layer Network Layer Provide Both Connection Less And Oriented Services Only Connection Less Services OSI is truly a general model it be used for any other application

Ethical Hacking Tech- Basic Concepts

Brute force An Attacker Can Perform The Hacking Technic Until Broke The Authentications. Like Combinations of username and password For Enter The Site Or Software until  Find The Username and Password. In Modern Days It Can Strictly Prohibited But Some Sites Still Run With That Bugs. SQL Injection In This Bug May Be Found By Programmer Careless Coding.In The Hacking Technic Must Performed By SQL Query. An Attacker Can Attack The Sites For SQL Queries And Retrieve Required Data From Database or Modify The Data Bases.  shop Xss(Cross Site Scripting) Now Popular Sites Are Affected By This Bug.Its Preformed By JavaScript Coding. An Attacker Modify The Client Side Programming It May Be Affect The Entire Web Site. Phishing It is Trick. An Attacker Can Be Develop The Front-End Application Look Like Original Web Page . It s a Clone Not Original. Some User Can Provide the Information on That Phishing Site. Hacker Can Using Them.  Key Logger Which is a Hidden Application on Your Co...

Classic Waterfall Model

This Proposed By R.W. Royce in 1970. it is sequential design process. downwards it is basic SDLC Model. divided the life cycle due to set of phases. Each Phases Must be completed before the next phases can begin.. output of one phases can be input of one phases. No Overlapping. Feasibility study Determine weather if would be financially & technically feasible. Requirement Understanding the exact Requirement of the custom. Requirement Gathering Requirement Specification Design To Transform The Requirement Specification in The SRS document into Structure. Coding Design is  Translated into Source Code. Integrated Testing all The Module Successfully have been successfully integrated the full working system in up timed. Alpha Testing - Performed By Development Team. BETA Testing  - Performed By Friendly Set Of customers. Acceptation   - The Customer Perform the accept testing to determine weather To accept the deliver Software (or) To Reject. Deploymen...

Inheritance is a future of oops(Object Oriented Programming)

Inheritance is a future of oops(Object Oriented Programming).it Used To Share The Properties of Class or a class drive from another one class is Called Inheritance. in Java Programming "extends" Keyword is used to inherit the class. Syntax: class A{ //member variables and function } class B extends class A { //member variables and function } example, class A{ void superclass() { System.out.println("super class"); } } class B extends class A { public static void main() { B b=new B(); b.superclass(); } } From The Above Java Programming Contains Two Classes Named As "A" and "B".class A contains a Member Method Named as "superclass()" and class B contains main method.then class B is Inherit(Extends) From class A.So We are call The method superclass from class B.