Sign Up

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

You must login to ask a question.

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Ask Me WH Latest Articles

What does beta radiation consist of?

Answer : A form of electromagnetic radiation known as gamma radiation is made up of high-frequency photons that are released by the nuclei of some radioactive materials during a process known as gamma decay. Ionizing radiation in the form of ...

What does gamma radiation consist of?

Answer : A form of electromagnetic radiation known as gamma radiation is made up of high-frequency photons that are released by the nuclei of some radioactive materials during a process known as gamma decay. Ionizing radiation in the form of ...

What is an Alpha particle?

Answer : Two protons and two neutrons are bonded together and released from the nucleus of some radioactive elements through a process known as alpha decay to form an alpha particle, a type of ionising radiation. The resulting alpha particle ...

What is alpha beta and gamma radiation?

Answer : There are three different forms of ionising radiation that some radioactive materials can emit: alpha, beta, and gamma. High-energy helium nuclei, or alpha radiation, are released by some radioactive materials via a process known as alpha decay. Due ...

What is meant by Beta Rays?

Answer : A form of ionising radiation known as beta rays or beta particles is made up of high-energy electrons or positrons that are released during specific processes of radioactive decay. When a neutron changes into a proton or a ...

What is simple Pendulum?

Answer : A basic pendulum consists of a weight suspended from a pivot point that is allowed to freely swing back and forth due to gravity. A simple pendulum’s motion is a famous illustration of harmonic motion since the period ...

What does static mean in Java?

Answer : In Java, the static keyword is used to indicate that a member (variable or method) belongs to the class itself, rather than to an instance of the class. A static variable is shared by all instances of a ...

How to create an integer array in Java?

Answer : In JavaScript, you can create an array of integers using an array literal or using the Array constructor. Here’s an example of creating an array of integers using an array literal: var numbers = [1, 2, 3, 4, ...

How to initialize array in Java?

Answer : In JavaScript, there are several ways to initialize an array: Using an array literal: You can use square brackets [] to create an array with elements already inside. For example: var fruits = [‘apple’, ‘banana’, ‘mango’]; Using the ...