線上英漢字典/中文拼音/地址英譯、地圖查詢/計算機
Chinese-English Dictionary / Address & Map / Calculator    《回首頁
Please input chinese/english word(s), address or math. expression :

可輸入英文單字正體中文字詞台灣地址計算式  ex: 2^6/5

element  /'ɛləmənt/

共發現 9 筆關於 [element] 的資料 (解釋內文之英文單字均可再點入查詢)
資料來源(1): pydict data [pydict]
element 元素;組成部分,成分;零件,元件 資料來源(2): Taiwan MOE computer dictionary [moecomp]
element 元素; 單位 ELEM 資料來源(3): Taiwan MOE computer dictionary [moecomp]
element 單元; 元件; 元素 EL 資料來源(4): Network Terminology [netterm]
element 元件 元素 資料來源(5): Webster's Revised Unabridged Dictionary (1913) [web1913]
Voltaic \Vol*ta"ic\, a. [Cf. F. volta["i]que, It. voltaico.] 1. Of or pertaining to Alessandro Volta, who first devised apparatus for developing electric currents by chemical action, and established this branch of electric science; discovered by Volta; as, voltaic electricity. 2. Of or pertaining to voltaism, or voltaic electricity; as, voltaic induction; the voltaic arc. Note: See the Note under {Galvanism}. {Voltaic arc}, a luminous arc, of intense brilliancy, formed between carbon points as electrodes by the passage of a powerful voltaic current. {Voltaic battery}, an apparatus variously constructed, consisting of a series of plates or pieces of dissimilar metals, as copper and zinc, arranged in pairs, and subjected to the action of a saline or acid solution, by which a current of electricity is generated whenever the two poles, or ends of the series, are connected by a conductor; a galvanic battery. See {Battery}, 4. (b), and Note. {Voltaic circuit}. See under {Circuit}. {Voltaic couple} or {element}, a single pair of the connected plates of a battery. {Voltaic electricity}. See the Note under {Electricity}. {Voltaic pile}, a kind of voltaic battery consisting of alternate disks of dissimilar metals, separated by moistened cloth or paper. See 5th {Pile}. {Voltaic protection of metals}, the protection of a metal exposed to the corrosive action of sea water, saline or acid liquids, or the like, by associating it with a metal which is positive to it, as when iron is galvanized, or coated with zinc. 資料來源(6): Webster's Revised Unabridged Dictionary (1913) [web1913]
Element \El"e*ment\, n. [F. ['e]l['e]ment, L. elementum.] 1. One of the simplest or essential parts or principles of which anything consists, or upon which the constitution or fundamental powers of anything are based. 2. One of the ultimate, undecomposable constituents of any kind of matter. Specifically: (Chem.) A substance which cannot be decomposed into different kinds of matter by any means at present employed; as, the elements of water are oxygen and hydrogen. Note: The elements are naturally classified in several families or groups, as the group of the alkaline elements, the halogen group, and the like. They are roughly divided into two great classes, the metals, as sodium, calcium, etc., which form basic compounds, and the nonmetals or metalloids, as oxygen, sulphur, chlorine, which form acid compounds; but the distinction is only relative, and some, as arsenic, tin, aluminium, etc., form both acid and basic compounds. The essential fact regarding every element is its relative atomic weight or equivalent. When the elements are tabulated in the order of their ascending atomic weights, the arrangement constitutes the series of the Periodic law of Mendelejeff. See {Periodic law}, under {Periodic}. This Periodic law enables us to predict the qualities of unknown elements. The number of elements known is about seventy-five, but the gaps in the Periodic law indicate the possibility of many more. Many of the elements with which we are familiar, as hydrogen, carbon, iron, gold, etc., have been recognized, by means of spectrum analysis, in the sun and the fixed stars. From certain evidence (as that afforded by the Periodic law, spectrum analysis, etc.) it appears that the chemical elements probably may not be simple bodies, but only very stable compounds of some simpler body or bodies. In formulas, the elements are designated by abbreviations of their names in Latin or New Latin. The Elements ------------------------------------------------------------ Name |Sym-|Atomic Weight| |bol | O=16 | H=1 | ------------------------------------------------------------ Aluminum | Al | 27.1 | 26.9| Antimony(Stibium) Argon Arsenic Barium Beryllium (see Glucinum) Bismuth Boron Bromine Cadmium Caesium Calcium Carbon Cerium Chlorine Chromium Cobalt Columbium Copper (Cuprum) Erbium Fluorine Gadolinium Gallium Germanium Glucinum 資料來源(7): Webster's Revised Unabridged Dictionary (1913) [web1913]
Element \El"e*ment\ ([e^]l"[-e]*m[e^]nt), v. t. 1. To compound of elements or first principles. [Obs.] ``[Love] being elemented too.'' --Donne. 2. To constitute; to make up with elements. His very soul was elemented of nothing but sadness. --Walton. 資料來源(8): WordNet (r) 2.0 [wn]
element n 1: an abstract part of something; "jealousy was a component of his character"; "two constituents of a musical composition are melody and harmony"; "the grammatical elements of a sentence"; "a key factor in her success"; "humor: an effective ingredient of a speech" [syn: {component}, {constituent}, {factor}, {ingredient}] 2: any of the more than 100 known substances (of which 92 occur naturally) that cannot be separated into simpler substances and that singly or in combination constitute all matter [syn: {chemical element}] 3: an artifact that is one of the individual parts of which a composite entity is made up; especially a part that can be separated from or attached to a system; "spare components for cars"; "a component or constituent element of a system" [syn: {component}, {constituent}] 4: one of four substances thought in ancient and medieval cosmology to constitute the physical universe; "the alchemists believed that there were four elements" 5: the most favorable environment for a plant or animal; "water is the element of fishes" 6: the situation in which you are happiest and most effective; "in your element" 7: a straight line that generates a cylinder or cone 資料來源(9): Free On-line Dictionary of Computing [foldoc]
element 1. <data, programming> One of the items of data in an {array}. 2. <language, text> One kind of node in an {SGML}, {HTML}, or {XML} {document} {tree}. An SGML element is typically represented by a start {tag} ("<p>") and an end tag ("</p>"). In some SGML implementations, some tags are omissible, as with "</p>" in {HTML}. The start tag can contain {attributes} ("<p lang="en-UK" class='stuff'>"), which are an unordered set of key-value bindings for that element. Both the start tag and end tag for an element typically contain the "tag name" (also called the "{GI}" or generic identifier) for that element. In {XML}, an element is always represented either by an explicit start tag and end tag, or by an empty element tag ("<img src='thing.{png}' alt='a dodad' />"). Other kinds of SGML node are: a section of character data ("foo"), a comment ("<!-- bar -->"), a markup declaration ("<!ENTITY reg CDATA '&#174'>"), or a processing instruction ("<?xml-stylesheet href="shop-english.xsl" type="text/xsl" ?>"). (2001-01-30)