absent

1. A teacher asked in a class who killed Abraham Lincoln. A blonde said "It wasn't me, I was absent yesterday."
2. A teacher was taking attendance (点名). She noticed the letter T was missing and marked him absent. She called him up (call up - 打电话) and he said "I'm in the middle of something." 这是个双关语(pun). 可理解为in the middle of sth: 正在做sth,也可照字面本义地(literally)理解为字母t在some-t-hing的中间。
3. Penny was absent from work yesterday. She played hooky/truant (翘课/班) with the girls and they all went to Disneyland.
4. The teacher called/took the roll (点名). roll: an official list of names,“军书十二卷”的“卷”
5. Two students missed the roll call.
6. Penny deliberately absented herself from the conference, which she was certain would be boring. 能当动词
7. absent-minded. mind: 心思。《礼记·大学》:“心不在焉,视而不见,听而不闻,食而不知其味。” 焉(yān):文言虚词,相当于“于此”。背而弗能明之,记而弗能用之,遇abandon而弗越之,呜呼一下zhi焉。

If somebody have a faraway look, she or he has an expression on her or his face which shows that she or he is not paying attention but thinking about something very different. [they和their可以代替she or he和her or his,我想凑字数]

absolute

近/反义词: certain, conditional, contingent, complete, dependent, dubious, irrelevant, irrespective, particular, perfect, per se, relative, relevant, unconditional, unequivocal

头孢类药物 is not harmful per se, but is dangerous when taken with alcohol.

In mathematics, the absolute value or modulus of a real number x, denoted |x|, is the non-negative value of x without regard to its sign. Namely, |x| = x if x is positive, and |x| = −x if x is negative (in which case −x is positive), and |0| = 0. The notation |x|, with a vertical bar on each side, was introduced by Karl Weierstrass in 1841.

At the zero point of thermodynamic temperature, absolute zero, the particle constituents of matter have minimal motion and can become no colder. Matter at absolute zero has no remaining transferable average kinetic energy and the only remaining particle motion is due to an ever-pervasive quantum mechanical phenomenon called zero-point energy.

A majority of the entire membership is a voting basis that requires that more than half of all the members of a body (including those absent and those present but not voting) vote in favor of a proposition in order for it to be passed. In practical terms, it means an absence or an abstention from voting is equivalent to a "no" vote. It may be contrasted with a majority vote which only requires more than half of those actually voting to approve a proposition for it to be enacted. An absolute majority may also be the same as a majority of the entire membership, although this usage is not consistent.

Absolute monarchy (or absolutism as doctrine) is a form of monarchy in which the monarch holds supreme autocratic authority, principally not being restricted by written laws, legislature, or customs. These are often hereditary monarchies. In contrast, in constitutional monarchies, the head of state's authority derives from or is legally bound or restricted by a constitution or legislature.

六级/考研单词: mathematics, denote, namely, vertical, nil, particle, constituent, absent, equivalent, enact, usage, consistent, sovereign, doctrine, supreme, legislate, seldom, constitution, derive, illicit, bind

absent, absolute的更多相关文章

  1. absent, absolute, absorb

    absent Absenteeism is a habitual [习惯性的] pattern of absence from a duty or obligation [职责] without go ...

  2. 5-5 可视化库Seaborn-多变量分析绘图

      Parameters:¶ 参数 解释 变量 x,y,hue 数据集变量 变量名 date 数据集 数据集名 row,col 更多分类变量进行平铺显示 变量名 col_wrap 每行的最高平铺数 整 ...

  3. “fixed+relative==absolute”——对BFC的再次思考

    好久没写博客了,刚好今天跨年夜没约到什么妹子,在家宅着不如写点东西好了. 需求 昨天晚上,给公司年会做一个移动端的投票页面,遇到一个UI优化的问题: · 正文内容少于一屏时,投票提交按钮固定显示在页面 ...

  4. Position属性四个值:static、fixed、relative、absolute的区别和用法

    1.static(静态定位):默认值.没有定位,元素出现在正常的文档流中(如果设置 top, bottom, left, right, z-index这些属性就不起做作了). 2.relative(相 ...

  5. [LeetCode] Longest Absolute File Path 最长的绝对文件路径

    Suppose we abstract our file system by a string in the following manner: The string "dir\n\tsub ...

  6. css使absolute相对于父容器进行定位而不是以body(为什么绝对定位(absolute)的父级元素必须是相对定位(relative))

    借知乎的回答如下解释: 首先,我想告诉你的是,如果父级元素是绝对定位(absolute)或者没有设置,里面的绝对定位(absolute)自动以body定位.这句话是错的.正确的是:只要父级元素设了po ...

  7. Position属性四个值:static、fixed、absolute和relative的区别和用法

    Position属性四个值:static.fixed.absolute和relative的区别和用法 在用CSS+DIV进行布局的时候,一直对position的四个属性值relative,absolu ...

  8. 解决绝对定位div position: absolute 后面的<a> Link不能点击

    今天布局的时候,遇到一个bug,当DIV设置为绝对定位时,这个div后面的相对定位的层里面的<a>Link标签无法点击. 网上的解决方案是在绝对定位层里面添加:pointer-events ...

  9. ie a absolute bug

    给a设置position:absolute时,在IE下,尽管display:block;width:100%;height:100%,依然无法点击.但是加一个背景颜色就可以了.如果不需要背景,再把背景 ...

随机推荐

  1. Python matplotlib numpy 曼德尔布罗特集合 曼德尔布罗特 B.Madelbrot

    import numpy as np import matplotlib.pyplot as plt def mandelbrot(h,w,maxit=20): y,x = np.ogrid[-1.4 ...

  2. 集合栈 牛客网 程序员面试金典 C++ Python

    集合栈 牛客网 程序员面试金典 C++ Python 题目描述 请实现一种数据结构SetOfStacks,由多个栈组成,其中每个栈的大小为size,当前一个栈填满时,新建一个栈.该数据结构应支持与普通 ...

  3. 两个栈实现队列 牛客网 程序员面试金典 C++ Python

    两个栈实现队列 牛客网 程序员面试金典 C++ Python 题目描述 用两个栈来实现一个队列,完成队列的Push和Pop操作. 队列中的元素为int类型. C++ //run:5ms memeory ...

  4. Shooting Bricks题解

    题目传送门 以后我绝对不会一直磕着一道题磕几个小时了...感觉还是自己节奏出了问题,不知为啥感觉有点小慌... 算了,其实再回头仔细看一下这个题dp的思路还是比较好想出来的,打代码之前一定要做好足够的 ...

  5. hdu 2147 kiki's game(DP(SG)打表找规律)

    题意: n*m的棋盘,一枚硬币右上角,每人每次可将硬币移向三个方向之一(一格单位):左边,下边,左下边. 无法移动硬币的人负. 给出n和m,问,先手胜还是后手胜. 数据范围: n, m (0<n ...

  6. JS基础面试

    1. JS是高级语言弱类型语言 脚本语言 1.1高级语言我们写完的代码不能直接执行,要先经过js引擎翻译成0101这种机器语言才能执行 1.2 弱类型语言变量可以在前一行设置为一个数字,下一行修改为一 ...

  7. 文件与文件系统的压缩与打包 tar gzip bzip2

    1:linux下常见的压缩文件后缀: .gz .zip .bz2 打包后的: .tar.gz .tar.zip .tar.bz2 2:gzip: 压缩:gzip file 解压:gunzip file ...

  8. 彻底掌握 Commonjs 和 Es Module

    目录 Commonjs commonjs 实现原理 require 文件加载流程 require 模块引入与处理 require 加载原理 require 避免重复加载 require 避免循环引用 ...

  9. Oracle Error while trying to retrieve text for error ORA-01804

    我在Linux上编译C++程序,有这个错误. 本机情况: Linux上Oracle的安装情况,服务器上有两个Client版本.我在Makefile中使用了高版本的动态库. 原因: 1.首先排查下 tn ...

  10. Part 18 $http service in AngularJS

    In Angular there are several built in services. $http service is one of them. In this video, we will ...