# Graduate
**Source**: https://biosci.snu.ac.kr/en/academics/subject/graduate
**Parent**: https://biosci.snu.ac.kr/en
- [Undergraduate](https://biosci.snu.ac.kr/en/academics/subject/undergraduate)
- [Graduate](https://biosci.snu.ac.kr/en/academics/subject/graduate)
Click on the subject to view details. (C : Credits, L : Lecture, P : Practice)
| Classfication | Subject Code | Subject | C-L-P |
| --- | --- | --- | --- |
| Common | M1410.003200 | [Advanced Bioinformatics and Practice 1](#) | 5-3-4 |
| Common | 3344.603 | [Advanced Developmental Biology](#) | 3-3-0 |
| Common | 3344.610 | [Advanced Ecology](#) | 3-3-0 |
| Common | 3344.770 | [Advanced Evolutionary Biology](#) | 3-3-0 |
| Common | 3344.633 | [Advanced Microbiology](#) | 3-3-0 |
| Common | 3344.634 | [Advanced Organismal Biology](#) | 3-3-0 |
| Common | 3344.632 | [Advanced Plant Science](#) | 3-3-0 |
| Common | 3344.617 | [Molecular and Cellular Biology 1](#) | 3-3-0 |
| Common | 3344.618 | [Molecular and Cellular Biology 2](#) | 3-3-0 |
| Common | 3344.803 | [Reading and Research](#) | 3-3-0 |
| 개체생물학 | 3344.604 | [Advanced Biotechnology](#) | 3-3-0 |
| 개체생물학 | 3344.705 | [Advanced Immunology](#) | 3-3-0 |
| 개체생물학 | 3344.706 | [Advanced Microbial Physiology](#) | 3-3-0 |
| 개체생물학 | 3344.608 | [Advanced Neurobiology](#) | 3-3-0 |
| 개체생물학 | 3344.612 | [Advanced Virology](#) | 3-3-0 |
| 개체생물학 | 3344.550 | [Biotechnology Lectures](#) | 2-2-0 |
| 개체생물학 | 3344.615 | [Clinical Microbiology](#) | 3-3-0 |
| 개체생물학 | 3344.637 | [Colloquium in Organismal Biology 1](#) | 2-2-0 |
| 개체생물학 | 3344.638 | [Colloquium in Organismal Biology 2](#) | 2-2-0 |
| 개체생물학 | 3344.570 | [Developmental Biology Lectures](#) | 2-2-0 |
- [«](https://biosci.snu.ac.kr/en/academics/subject/graduate?page=1)
- [1](https://biosci.snu.ac.kr/en/academics/subject/graduate?page=1)
- [2](https://biosci.snu.ac.kr/en/academics/subject/graduate?page=2)
- [3](https://biosci.snu.ac.kr/en/academics/subject/graduate?page=3)
- [4](https://biosci.snu.ac.kr/en/academics/subject/graduate?page=4)
- [5](https://biosci.snu.ac.kr/en/academics/subject/graduate?page=5)
- [»](https://biosci.snu.ac.kr/en/academics/subject/graduate?page=5)
- [← Previous](https://biosci.snu.ac.kr/en/academics/subject/graduate?page=1)
- 1/5
- [Next →](https://biosci.snu.ac.kr/en/academics/subject/graduate?page=2)
×
#### Subject
| | | | |
| --- | --- | --- | --- |
| Classfication | Classfication | Subject Code | Subject Code |
| C-L-P | C-L-P | Grade | Grade |
##### Course of instruction
Course of instruction
Close
jQuery(function($) {
$(document).ready(function(){
$(".loadsubject").on("click", function(e) {
e.preventDefault();
var seqidx = $(this).data('seqidx');
$.ajax({
type: 'GET',
url: "/en/academics/subject/graduate?mode=view&seqidx=" + seqidx,
timeout: 3000,
error: function(xhr, status, error){
alert(error);
if(typeof error == "undefined") error = "Unknown";
alert("Fatal Error\n\n" + error);
}, //error
success: function(data){
if(data) { //데이타가 없는 경우, 세션이 종료된 경우..
var jobj = $.parseJSON(data);
$("#mo\_title").text(jobj.c\_subject\_en);
$("#subjectdetail").attr("aria-labelledby", jobj.c\_subject\_en);
$("#mo\_category").text(jobj.c\_category\_en);
$("#mo\_subjectcode").html(jobj.c\_subjectcode);
$("#mo\_credits").html(jobj.c\_credits);
$("#mo\_grade").html(jobj.c\_grade);
$("#mo\_abstract").html(jobj.c\_abstract\_en);
} //data
} //success
}); //ajax
});
});
});