英文字典中文字典


英文字典中文字典51ZiDian.com



中文字典辞典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z       







请输入英文单字,中文词皆可:

determinative    音标拼音: [dɪt'ɚmɪnət,ɪv]
a. 决定的,限定的
n. 决定的事物,限定词

决定的,限定的决定的事物,限定词

determinative
adj 1: having the power or quality of deciding; "the crucial
experiment"; "cast the deciding vote"; "the determinative
(or determinant) battle" [synonym: {deciding(a)},
{determinant}, {determinative}, {determining(a)}]
n 1: one of a limited class of noun modifiers that determine the
referents of noun phrases [synonym: {determiner},
{determinative}]
2: a determining or causal element or factor; "education is an
important determinant of one's outlook on life" [synonym:
{determinant}, {determiner}, {determinative}, {determining
factor}, {causal factor}]

Determinative \De*ter"mi*na*tive\, n.
That which serves to determine.
[1913 Webster]

Explanatory determinatives . . . were placed after
words phonetically expressed, in order to serve as an
aid to the reader in determining the meaning. --I.
Taylor (The
Alphabet).
[1913 Webster]


Determinative \De*ter"mi*na*tive\, a. [Cf. F. d['e]terminatif.]
Having power to determine; limiting; shaping; directing;
conclusive.
[1913 Webster]

Incidents . . . determinative of their course. --I.
Taylor.
[1913 Webster]

{Determinative tables} (Nat. Hist.), tables presenting the
specific character of minerals, plants, etc., to assist in
determining the species to which a specimen belongs.
[1913 Webster]

140 Moby Thesaurus words for "determinative":
absolute, adducible, admissible, antecedents, arrowhead, article,
assuring, attestative, attestive, authentic, authoritative, base,
based on, basis, behind the scenes, bordering, borderline,
boundary, bounding, call, caudal, causal, causation, causative,
cause, cause and effect, certain, character, circumstantial,
coastal, conclusive, constitutive, convictional, convincing,
cumulative, cuneiform, damning, decisive, definite article,
definitive, demotic character, determinant, determiner,
determining, documentary, documented, effectual, element, endmost,
etiological, etiology, eventual, evidential, evidentiary, ex parte,
extreme, eye-witness, factor, factual, farthest, final, firsthand,
formative, founded on, fringing, frontier, grammalogue, ground,
grounded on, grounds, hearsay, hieratic symbol, hieroglyph,
hieroglyphic, hieroglyphics, hiragana, ideogram, ideograph,
implicit, impressive, incontrovertible, indefinite article,
indicative, indisputable, institutive, irrefutable, irresistible,
kana, katakana, last, limbic, liminal, limit, limiting, littoral,
logogram, logograph, marginal, material, noun determiner,
nuncupative, occasion, occasional, ogham, originative,
overwhelming, persuasive, phonetic, phonetic symbol, pictogram,
pictograph, pivotal, polar, presumptive, principle, probative,
radical, reliable, rimming, rune, satisfactory, satisfying,
shorthand, significant, skirting, stimulus, suggestive, sure,
symptomatic, tail, telling, terminal, terminating, terminative,
threshold, ultimate, valid, wedge, weighty, word letter


请选择你想看的字典辞典:
单词字典翻译
determinative查看 determinative 在百度字典中的解释百度英翻中〔查看〕
determinative查看 determinative 在Google字典中的解释Google英翻中〔查看〕
determinative查看 determinative 在Yahoo字典中的解释Yahoo英翻中〔查看〕





安装中文字典英文字典查询工具!


中文字典英文字典工具:
选择颜色:
输入中英文单字

































































英文字典中文字典相关资料:


  • html - When to use lt;p gt; vs. lt;br gt; - Stack Overflow
    You want to use the <p> tag when you need to break up two streams of information into separate thoughts <p> Now is the time for all good men to come to the aid of their country < p> <p>The quick brown fox jumped over the lazy sleeping dog < p> The <br > tag is used as a forced line break within the text flow of the web page Use it when you
  • c++ - What does (~0L) mean? - Stack Overflow
    0L is a long integer value with all the bits set to zero - that's generally the definition of 0 The ~ means to invert all the bits, which leaves you with a long integer with all the bits set to one
  • How to connect to MySQL from the command line - Stack Overflow
    mysql -u root -p: This with connect to user called root, -p flag will prompt for a password Option 2: mysql -u root -p<PASSWORD>: Here you enter the password directly into the command and after execution the server connects quick without password prompt
  • html - When to use lt;span gt; instead lt;p gt;? - Stack Overflow
    The <p> tag is a paragraph, and as such, it is a block element (as is, for instance, h1 and div), whereas span is an inline element (as, for instance, b and a) Block elements by default create some whitespace above and below themselves, and nothing can be aligned next to them, unless you set a float attribute to them
  • xml - Regular expression \p {L} and \p {N} - Stack Overflow
    \p{L} matches a single code point in the category "letter" \p{N} matches any kind of numeric character in any script Source: regular-expressions info If you're going to work with regular expressions a lot, I'd suggest bookmarking that site, it's very useful
  • html - What do lt;o:p gt; elements do anyway? - Stack Overflow
    For your specific question the o in the <o:p> means "Office namespace" so anything following the o: in a tag means "I'm part of Office namespace" - in case of <o:p> it just means paragraph, the equivalent of the ordinary <p> tag I assume that every HTML tag has its Office "equivalent" and they have more
  • 知乎 - 有问题,就会有答案
    知乎,中文互联网高质量的问答社区和创作者聚集的原创内容平台,于 2011 年 1 月正式上线,以「让人们更好的分享知识、经验和见解,找到自己的解答」为品牌使命。知乎凭借认真、专业、友善的社区氛围、独特的产品机制以及结构化和易获得的优质内容,聚集了中文互联网科技、商业、影视
  • is there a pragmatic reason to use if (0 == p) - Stack Overflow
    It depends on what p represents If p represents a boolean logical value, then (!p) seems most appropriate - comparing to "FALSE" is generally discouraged I don't anticipate this being of much debate If p represents a value, like a counter, then (p == 0) or (0 == p) seems appropriate (There is usually a hot debate between the two
  • c# - What does this regexp mean - \p {Lu}? - Stack Overflow
    The Unicode property \p{L} — shorthand for \p{Letter} will match any kind of letter from any language Therefore, \p{Lu} will match an uppercase letter that has a lowercase variant And, the opposite \p{Ll} will match a lowercase letter that has an uppercase variant
  • 统计学假设检验中 p 值的含义具体是什么? - 知乎
    p 值 给定显著性水平 \alpha ,我们便可以确定拒绝域的范围,如图6所示。若检验统计量的值落入拒绝域,便可拒绝原假设。 p 值同样可以用于判断是否拒绝原假设。通俗的来说, p 值代表:在假设原假设( H_0 )正确时,出现当前证据或更强的证据的概率。





中文字典-英文字典  2005-2009