Economics degrees

Name game">

经济学学位">

名称痕戏

Luring students with
a new label

新瓶旧酒吸引学生">

ECONOMISTS do not much like their discipline
being dubbed(配音;授予称号">) the dismal(忧郁的;阴沉的,沉闷的)
science. Some American universities are paying more attention to the noun than
to the adjective. The reason is not philosophical, but pragmatic. Foreign STEM graduates (the acronym stands for science, technology, engineering and
mathematics) can get visa extensions for three years of practical training (ie,
work). Those from other disciplines are allowed only a year.

经济学家不太喜欢人们将他们的学科唤作“沉闷的科学”。一些美国大学现在把意力更多地放在这个名称的名词而非形容词上。其中原因并非哲学上的,而是实用性的。STEM专业〈科学、技术、工程和数学的这些专业的缩写)的留学生毕业后签证可延长三年以参加实践训练(即工作), 其他专业的学生只有一年。

Two more years working in America means
more earnings. It also means a better chance of finding an employer willing to
sponsor an application for an H-1B visa, the main starting-point
for skilled foreign workers who hope to settle permanently. In 2012 the Department of Homeland Security expanded the list of
STEM courses. Now any reasonably crunchy economics
degree can count as STEM with a tweak(扭向) to its
federal classification code, from economics (45.0601) to econometrics and
quantitative economics (45-0603).

可以在美国多工作两年意 昧着更多的收入,也意昧着更有机会找到愿意资助自己申请H-1B签证的雇主--这种签证是希望在美永久居留的外国技术型工人的主要起点。">2012年,美国国土安全局扩展了">STEM专业的清单。现在,任何用到正常程度的数学和统计方法的经济学学位都可以算作专业,只要稍微改动一下联邦的学科分类代码,从经济学改成计量经济学和数量经济学就可以了。

Economics departments appear to be catching
on. Yale and Columbia have both changed the code for their
economics major in the past few months; five of the eight Ivy League Universities have now done so. Students at
Pennsylvania and Cornell are agitating for
a switch.

经济专业院系貌似也都行动了起来。过去几个月里,耶鲁大学和哥伦比亚大学都改 变了其经济学专业的代码;八所常春藤盟校中有五所都已经做了更改。宾夕法尼亚大学和康奈尔大学的学生正在焦急地期盼他们的学校做出同样的改变。

Universities are doubtless acting in
response to increased demand for H-1Bvisas. Just
65,000 are awarded by lottery each year to holders of bachelor’s
degrees. Their chance of success has been at best 30% in recent years. In 2011
the 65,000 visa cap was hit only in November. In 2017 it was hit on April 7th,
within a week of applications opening. Whether students are being taught
economics or econometrics, they are getting a fine worked example in regulatory
年时6.5万个签证到11月才发放完毕,而去年到4月7曰也就是申请开放才一周就已满额。无论学生们学的经济学还是计量经济学,他们都 到了一个很好的监管套利的范例。

Economics degrees的更多相关文章

  1. [TimusOJ1057]Amount of Degrees

    [TimusOJ1057]Amount of Degrees 试题描述 Create a code to determine the amount of integers, lying in the ...

  2. AOJ -0189 Convenient Location && poj 2139 Six Degrees of Cowvin Bacon (floyed求任意两点间的最短路)

    http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=78207 看懂题就好. 求某一办公室到其他办公室的最短距离. 多组输入,n表示 ...

  3. ural1057Amount of Degrees

    Description Create a code to determine the amount of integers, lying in the set [ X; Y] and being a ...

  4. <poj - 2139> Six Degrees of Cowvin Bacon 最短路径问题 the cow have been making movies

    本题链接:http://poj.org/problem?id=2139 Description:     The cows have been making movies lately, so the ...

  5. 一本通1585【例 1】Amount of Degrees

    1585: [例 1]Amount of Degrees 时间限制: 1000 ms         内存限制: 524288 KB 题目描述 原题来自:NEERC 2000 Central Subr ...

  6. opencv: Rotate image by 90, 180 or 270 degrees

    opencv2: void rotate_cw(const cv::Mat& image, cv::Mat& dest, int degrees) { ) { : dest = ima ...

  7. POJ2139--Six Degrees of Cowvin Bacon(最简单Floyd)

    The cows have been making movies lately, so they are ready to play a variant of the famous game &quo ...

  8. 树形DP ---- Codeforces Global Round 2 F. Niyaz and Small Degrees引发的一场血案

    Aspirations:没有结果,没有成绩,acm是否有意义?它最大的意义就是让我培养快速理解和应用一个个未知知识点的能力. ————————————————————————————————————— ...

  9. POJ 2139 Six Degrees of Cowvin Bacon (floyd)

    Six Degrees of Cowvin Bacon Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 131072/65536K (Ja ...

随机推荐

  1. 【MySQL】sort by then group by

    tb: ### 需求:根据id进行分组,找到分组内hour中最大的一项 错误写法: select id, max(hour) from tb group by id; 正确的写法: ### 需求:根据 ...

  2. Jsoup解析XML

    先导入jsoup.jar  包 方法1:不推荐,了解即可 方法 方法3: 后期学习主流

  3. 21.命名空间别名限定符::和global全局名称空间限定符

    命名空间别名限定符(::)用于查找标识符,它在指定的别名的命名空间中查找运算符,如下代码是在全局名称空间中查找System.Console.WriteLine("Hello World&qu ...

  4. CF822C Hacker, pack your bags!(思维)

    Hacker, pack your bags [题目链接]Hacker, pack your bags &题意: 有n条线段(n<=2e5) 每条线段有左端点li,右端点ri,价值cos ...

  5. Django框架详细介绍---认证系统

    在web开发中通常设计网站的登录认证.注册等功能,Django恰好内置了功能完善的用户认证系统 1.auth模块 from django.contrib import auth 模块源码 import ...

  6. Django框架详细介绍---Form表单

    一.概述 在HTML页面中,利用form表单向后端提交数据时,需要编写input等输入标签并用form标签包裹起来,与此同时,在很多应用场景之下需要对用户输入的数据校验,例如注册登录页面中,校验用户注 ...

  7. react16实战总结

    实战总结 react实战基础 遇到的一些坑 li里要带key值否则会警告,这个问题在vue中也存在, 考虑到虚拟DOM中diff,所以不要用index作为key值,而要用item. 2.immutab ...

  8. 淘宝客订单api处理优化

    首选我们看看api定义: http://open.taobao.com/api.htm?docId=38078&docType=2&scopeId=14474 注意下span这个参数 ...

  9. WC.exe【C】

    gitee传送门!!!(电脑打不开github,多次尝试未果,决定先用gitee存着先) 项目要求 wc.exe 是一个常见的工具,它能统计文本文件的字符数.单词数和行数.这个项目要求写一个命令行程序 ...

  10. Git 教程(四):标签和其他

    标签管理 发布一个版本时,我们通常先在版本库中打一个标签(tag),这样,就唯一确定了打标签时刻的版本.将来无论什么时候,取某个标签的版本,就是把那个打标签的时刻的历史版本取出来.所以,标签也是版本库 ...