answersLogoWhite

0

What is ststic?

User Avatar

Anonymous

14y ago
Updated: 7/9/2023

electricity that can flow from one point 2 another

What else can I help you with?

Related Questions

What is ststic electricity?

electricity that can flow from one point 2 another


Why do you feel a shock is it because of ststic electricity?

it is because the the electrons blah who cares about it lay off and relax.


How difficult is it for someone to upgrade a CPU by yourself?

Upgrading a CPU is best left to a professional,you should be in a ststic free enviorment.


Does ststic electricity move objects?

Static electricity can attract objects or cause objects to stick together due to the imbalance of electric charges. However, it does not have the ability to physically move objects on its own.


Write a method that returns the gcd of an unspecified number of integers. The method header is specified as follows public ststic int gcd int... numbers?

There are many ways of solving this problem using primitive types. However, if you are willing to sacrifice some memory, you can use BigInteger's gcd() method to make things easy. Example: public static int gcd (int[] numbers) { BigInteger k = BigInteger.ZERO; for (int n : numbers) k = k.gcd(new BigInteger(""+n)); return k.intValue(); }


In the future as astronauts walk across the martian suface they will acquire a ststic charge?

As astronauts traverse the Martian surface, they will indeed acquire a static charge due to the planet's fine dust and low atmospheric pressure. This dust can act like an insulator, allowing static electricity to build up on their suits. Additionally, the lack of moisture on Mars means that any charge accumulated is less likely to dissipate, potentially leading to electrostatic discharges. Astronauts will need to implement measures to manage this static electricity to avoid interference with their equipment and ensure their safety.


What are the latest research topics in VLSI?

vlsi is nothing but a methodology to design a chip.tremendous openings are there in vlsi (chip desining) field.We have to relate embedded system,dsp,bio-medical applications,cmos desisinging etc....these are all common things related to vlsi ,especially in desining field RTL desining ,STA (ststic timing analysis) functional verification,power analysis,synthesizer etc...


What is the difference between static and non static class members in java?

Static data members are different from automatic ones in the way that their lifetime is equals to the lifetime of your program. Even if you have declared static members inside of function (class) other than main();