1. 직무수행에 있어 교육과정 이수나 자격을 필수로 요구하지 않음
예) 의사- 의과대학 또는 의학전문대학원 과정 이수 후 의사국시 합격.

변호사- 3년 과정의 법학전문대학원 과정 이수 후 변호사시험 합격.

회계사, 세무사, 관세사, 노무사 등등- 국가전문자격시험 합격.

2. 전문가 협회나 집단이 없음
예) 의협, 변협, 한국기술사회

3. 간접고용되는 경우가 빈번


프갤 야그: 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class LINQQueryExpressions
{
    static void Main()
    {
        
        // Specify the data source.
        int[] scores = new int[] { 97928160 };
 
        // Define the query expression.
        IEnumerable<int> scoreQuery =
            from score in scores
            where score > 80
            select score;
 
        // Execute the query.
        foreach (int i in scoreQuery)
        {
            Console.Write(i + " ");
        }            
    }
}
// Output: 97 92 81
cs


<form id="frm_recommend_vote_up" name="frm_recommend_vote_up"> </form>

원본 첨부파일 (1)