首页 > 其他分享 >What Make Civil Servant so Coveted

What Make Civil Servant so Coveted

时间:2023-01-06 18:34:19浏览次数:67  
标签:What exam their Civil Make civil China they so

What Makes Civil Servant so Coveted

A lot of photo shows on the website that many applicants lining up to take the national civil service exam in November. The civil service exam is an annual rite for young Chinese. As many as 2.6 million job applicants across China will report to testing centers in early January to face exceedingly long odds and compete for only 37100 entry-level government positions. This phenomenon can be explained by the reality of monotonous work that blurs the line with personal lives. The competition for public service positions becomes so fierce that can quote a Chinese saying refers to them: "thousands of troops crossing the single-plank bridge."

They spend thousands of dollars for prep classes and so many hours cramming for it, and this comes at a fraught time. Exam is very rigorous and examinees must answer about 130 multiple-choice questions covering many topics, plus, they are asked to write essays of 200 to 1000 words each on social issues and government policies. If they got a high score on the first exam and then they can be hired and go into the next exam, which means they are supposed to endure a battery of interviews, background checks and other reviews.

Might main reason of this phenomenon is nearly one in five people in China between 16 and 24 are unemployed, which means it's a hard time for young person to start a career in China. Of course they know China nowadays is in a status of rapid growth, while they don't figure that these opportunities generated by the rapid growth belong to their generation.

Most parents in China value a stable job think it's good to be a civil servant and they revel in the status of a child working for the government.

Then there's the reality of civil service work, someone said their regular days are ruled by rigid hierarchies and monotonous chores. And others, while saying they enjoy their jobs, complain that their responsibilities often sprawl beyond normal work hours. For example, being required to volunteer at virus testing sites and instructed to stand guard or keep crowds in line during the crest of civil cases.

Despite people dissatisfaction with their work, some of the young civil servants said that felt trapped because there was no guarantee that they would find something better in the private sector. (they would not find anything better guarantee in a private sector.)

reference

【NYTimes】China’s Young Elite Clamber for Government Jobs (qq.com)

[新英文外刊]

标签:What,exam,their,Civil,Make,civil,China,they,so
From: https://www.cnblogs.com/wyatt1999/p/17031300.html

相关文章

  • Linux - Makefile
    1.make工具简介make工具是一个根据makefile文件内容,针对目标(可执行文件)进行依赖性检测(要生成该可执行文件之前要有哪些中间文件)并执行相关动作(编译等)的工具。而这个make......
  • [LeetCode] 1735. Count Ways to Make Array With Product
    Youaregivena2Dintegerarray, queries.Foreach queries[i],where queries[i]=[ni,ki],findthenumberofdifferentwaysyoucanplacepositiveintege......
  • makefile生成静/动态库
    通过makefile生成静态库和动态库目录树➜app_hellotree-h.├──[280]app_hello.c├──[218]app_hello.h└──[997]makefile0directories,3f......
  • Android CMake/JNI
    ​​AndroidJNI开发-简书​​​​​jni之jni与jna的比较-cbing​​​​AndroidJNI开发-简书​​​​JNA实战笔记汇总(一)——JNA简介及demo环境创建_水逆呱的博客a......
  • 多个makefile构建多个目录的工程文件(大工程基本如此)
    通过多个层级的makefile构建整个工程级别的makefile,大工程如果不使用cmake等,基本如此组织,linux内核也是这样哈目录树➜test_pro3tree-h.├──[4.0K]app_1│......
  • 单个makefile构建多目录的工程
    单makefile构建多个目录的工程适用于构建稍微复杂一些的工程目录树如下➜test_pro2tree-h.├──[4.0K]app_1│├──[272]app1.c│└──[......
  • 单个makefile构建单目录的工程
    使用单个makefile构建单目录的工程适用于一些简单的测试场景目录树如下➜test_protree-h.└──[4.0K]test_pro1├──[800]Makefile├──[......
  • makefile的常用函数及特殊字符
    makfile的常用函数下面的常用函数掌握以下,也不用记得住,用时候过来取就行,基本就没问题了$(wildcard*.c)#同一类型的文件*.h*.cpp等$(wildcard$(SRC)/*.c)#同一类型......
  • cmake关于相对路径的一些参数
    项目文件结构  cmake_minimum_required(VERSION3.15)project(AddTest)message("CMAKE_CURRENT_BINARY_DIR:"${CMAKE_CURRENT_BINARY_DIR})message("CMAKE_CU......
  • CMAKE学习记录
    1.定义  CMAKE是一个开源、跨平台的编译、测试和打包工具,它使用比较简单的语言描述编译、安装的过程,输出Makefile或者project文件,再去执行构建。  当多人协同开发一......