Kaung Myat Htet commited on
Commit
118fce5
1 Parent(s): 2f94779

inialize project

Browse files
Files changed (5) hide show
  1. .gitignore +162 -0
  2. DDICourseSearch.py +182 -0
  3. app.py +49 -0
  4. data/courses.csv +1047 -0
  5. ddi_courses_index.ann +0 -0
.gitignore ADDED
@@ -0,0 +1,162 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py,cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ #Pipfile.lock
96
+
97
+ # poetry
98
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102
+ #poetry.lock
103
+
104
+ # pdm
105
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106
+ #pdm.lock
107
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108
+ # in version control.
109
+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
110
+ .pdm.toml
111
+ .pdm-python
112
+ .pdm-build/
113
+
114
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
115
+ __pypackages__/
116
+
117
+ # Celery stuff
118
+ celerybeat-schedule
119
+ celerybeat.pid
120
+
121
+ # SageMath parsed files
122
+ *.sage.py
123
+
124
+ # Environments
125
+ .env
126
+ .venv
127
+ env/
128
+ venv/
129
+ ENV/
130
+ env.bak/
131
+ venv.bak/
132
+
133
+ # Spyder project settings
134
+ .spyderproject
135
+ .spyproject
136
+
137
+ # Rope project settings
138
+ .ropeproject
139
+
140
+ # mkdocs documentation
141
+ /site
142
+
143
+ # mypy
144
+ .mypy_cache/
145
+ .dmypy.json
146
+ dmypy.json
147
+
148
+ # Pyre type checker
149
+ .pyre/
150
+
151
+ # pytype static type analyzer
152
+ .pytype/
153
+
154
+ # Cython debug symbols
155
+ cython_debug/
156
+
157
+ # PyCharm
158
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
159
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
160
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
161
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
162
+ #.idea/
DDICourseSearch.py ADDED
@@ -0,0 +1,182 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import List, Dict, Any
2
+ import numpy as np
3
+ import pandas as pd
4
+ from annoy import AnnoyIndex
5
+ from sentence_transformers import SentenceTransformer
6
+ from flashrank import Ranker, RerankRequest
7
+ from dataclasses import dataclass
8
+
9
+ @dataclass
10
+ class CourseSearchResult:
11
+ course_code: str
12
+ course_title: str
13
+ description: str
14
+ credits: float
15
+ category: str
16
+ department: str
17
+ track: str
18
+ prerequisite: str
19
+ remark: str
20
+ score: float
21
+ rerank_score: float = None
22
+
23
+ class DDICourseSearch:
24
+ def __init__(self, courses_df, ann_file: str = 'ddi_courses_index.ann', bi_encoder_name: str = 'all-MiniLM-L6-v2',
25
+ flash_rank_name: str = "claudecc/flash-rank-reranker",
26
+ embedding_dim: int = 384):
27
+
28
+ self.courses_df = courses_df
29
+ self.embedding_dim = embedding_dim
30
+ self.bi_encoder = SentenceTransformer(bi_encoder_name)
31
+ self.index = AnnoyIndex(embedding_dim, 'angular')
32
+ self.index_built = False
33
+ self.index.load(ann_file)
34
+ # Initialize FlashRank reranker
35
+ self.reranker = Ranker(max_length=128)
36
+
37
+ def _create_search_text(self, row: pd.Series) -> str:
38
+ """Create search text from course data."""
39
+ components = [
40
+ str(row['Course Code']),
41
+ str(row['Course Title']),
42
+ str(row['Course Description']),
43
+ str(row['Track']),
44
+ str(row['Category'])
45
+ ]
46
+ text = ' '.join(str(comp) for comp in components if pd.notna(comp))
47
+ return text.replace('nan', '').strip()
48
+
49
+ def search(self,
50
+ query: str,
51
+ k: int = 5,
52
+ search_type: str = 'hybrid',
53
+ alpha: float = 0.7,
54
+ rerank: bool = True,
55
+ rerank_cutoff: int = 100) -> List[CourseSearchResult]:
56
+ """
57
+ Search for courses using the specified method.
58
+
59
+ Args:
60
+ query: Search query
61
+ k: Number of final results to return
62
+ search_type: One of 'semantic', 'keyword', or 'hybrid'
63
+ alpha: Weight for semantic search in hybrid mode
64
+ rerank: Whether to apply FlashRank reranking
65
+ rerank_cutoff: Number of initial results to rerank
66
+
67
+ Returns:
68
+ List of CourseSearchResult objects
69
+ """
70
+ # Get initial results
71
+ if search_type == 'semantic':
72
+ results = self._semantic_search(query, rerank_cutoff if rerank else k)
73
+ elif search_type == 'keyword':
74
+ results = self._keyword_search(query, rerank_cutoff if rerank else k)
75
+ else:
76
+ results = self._hybrid_search(query, rerank_cutoff if rerank else k, alpha)
77
+
78
+ # Apply FlashRank reranking if requested
79
+ if rerank:
80
+ results = self._rerank_results(query, results, k)
81
+
82
+ return results[:k]
83
+
84
+ def _rerank_results(self, query: str, results: List[CourseSearchResult], k: int) -> List[CourseSearchResult]:
85
+ """Rerank results using FlashRank."""
86
+ # Prepare texts for reranking
87
+ texts = []
88
+ for result in results:
89
+ text = self._create_search_text(pd.Series({
90
+ 'Course Code': result.course_code,
91
+ 'Course Title': result.course_title,
92
+ 'Course Description': result.description,
93
+ 'Track': result.track,
94
+ 'Category': result.category
95
+ }))
96
+ texts.append({'text': text})
97
+
98
+ # Get reranking scores
99
+ rerankrequest = RerankRequest(query=query, passages=texts)
100
+ rerank_scores = self.reranker.rerank(rerankrequest)
101
+ rerank_scores = [item['score'] for item in rerank_scores]
102
+
103
+ for result, score in zip(results, rerank_scores):
104
+ result.rerank_score = float(score)
105
+
106
+ # Sort by rerank score
107
+ results.sort(key=lambda x: x.rerank_score, reverse=True)
108
+
109
+ return results
110
+
111
+ def _semantic_search(self, query: str, k: int) -> List[CourseSearchResult]:
112
+ """Perform semantic search."""
113
+ query_embedding = self.bi_encoder.encode(query)
114
+ indices, distances = self.index.get_nns_by_vector(
115
+ query_embedding, k, include_distances=True
116
+ )
117
+
118
+ # Convert distances to similarities
119
+ similarities = [1 - (distance ** 2) / 2 for distance in distances]
120
+
121
+ return [self._create_result(idx, sim) for idx, sim in zip(indices, similarities)]
122
+
123
+ def _keyword_search(self, query: str, k: int) -> List[CourseSearchResult]:
124
+ """Perform keyword-based search."""
125
+ query_terms = set(query.lower().split())
126
+ scores = []
127
+
128
+ for idx, row in self.courses_df.iterrows():
129
+ text = self._create_search_text(row).lower()
130
+ text_terms = set(text.split())
131
+
132
+ # Calculate TF score
133
+ matches = len(query_terms.intersection(text_terms))
134
+ score = matches / len(query_terms) if query_terms else 0
135
+ scores.append((idx, score))
136
+
137
+ # Sort and get top k
138
+ scores.sort(key=lambda x: x[1], reverse=True)
139
+ return [self._create_result(idx, score) for idx, score in scores[:k]]
140
+
141
+ def _hybrid_search(self, query: str, k: int, alpha: float) -> List[CourseSearchResult]:
142
+ """Combine semantic and keyword search results."""
143
+ semantic_results = self._semantic_search(query, k)
144
+ keyword_results = self._keyword_search(query, k)
145
+
146
+ # Combine scores
147
+ combined_scores = {}
148
+ for result in semantic_results:
149
+ combined_scores[result.course_code] = alpha * result.score
150
+
151
+ for result in keyword_results:
152
+ if result.course_code in combined_scores:
153
+ combined_scores[result.course_code] += (1 - alpha) * result.score
154
+ else:
155
+ combined_scores[result.course_code] = (1 - alpha) * result.score
156
+
157
+ results = []
158
+ for code, score in sorted(combined_scores.items(), key=lambda x: x[1], reverse=True)[:k]:
159
+ row = self.courses_df[self.courses_df['Course Code'] == code].iloc[0]
160
+ results.append(self._create_result_from_row(row, score))
161
+
162
+ return results
163
+
164
+ def _create_result(self, idx: int, score: float) -> CourseSearchResult:
165
+ """Create a CourseSearchResult from index and score."""
166
+ row = self.courses_df.iloc[idx]
167
+ return self._create_result_from_row(row, score)
168
+
169
+ def _create_result_from_row(self, row: pd.Series, score: float) -> CourseSearchResult:
170
+ """Create a CourseSearchResult from row and score."""
171
+ return CourseSearchResult(
172
+ course_code=row['Course Code'],
173
+ course_title=row['Course Title'],
174
+ description=str(row['Course Description']),
175
+ credits=row['Credits'],
176
+ category=str(row['Category']),
177
+ department=str(row['Department']),
178
+ track=str(row['Track']),
179
+ prerequisite=str(row['Prerequisite']),
180
+ remark=str(row['Remark']),
181
+ score=score
182
+ )
app.py ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import List
2
+ from dataclasses import asdict
3
+ import pandas as pd
4
+ import gradio as gr
5
+
6
+ from DDICourseSearch import DDICourseSearch, CourseSearchResult
7
+
8
+
9
+ # Load the courses
10
+ df = pd.read_csv('./data/courses.csv')
11
+ df.head()
12
+
13
+ # data cleaning
14
+ df = df.replace({r'\s+$': '', r'^\s+': ''}, regex=True).replace(r'\n', ' ', regex=True)
15
+ df = df.drop(df.columns[[4]], axis=1)
16
+ search_engine = DDICourseSearch(
17
+ courses_df = df
18
+ )
19
+
20
+ def convert_to_dataframe(course_list: List[CourseSearchResult]) -> pd.DataFrame:
21
+ # Convert each CourseSearchResult object to a dictionary and then to a DataFrame
22
+ return pd.DataFrame([asdict(course) for course in course_list])
23
+
24
+ # Function to search for products
25
+ def search_courses(query, k, search_type, rerank=True):
26
+ if not query.strip():
27
+ return df # Return all products if the query is empty
28
+ results = search_engine.search(query, k=k, search_type=search_type, rerank=rerank)
29
+ return convert_to_dataframe(results)
30
+
31
+ # Gradio interface
32
+ def search_interface(query):
33
+ results = search_courses(query, k=5)
34
+ return results
35
+
36
+
37
+ with gr.Blocks() as demo:
38
+ with gr.Row():
39
+ query = gr.Textbox(label="Search Query", placeholder="write a query to find the courses")
40
+ with gr.Row():
41
+ search_type = gr.Dropdown(label="Search Type", choices=['semantic', 'keyword', 'hybrid'], value='hybrid')
42
+ k = gr.Number(label="Items Count", value=5)
43
+ rerank = gr.Checkbox(value=True, label="Rerank")
44
+ results = gr.Dataframe(label="Search Results")
45
+
46
+ search_button = gr.Button("Search", variant='primary')
47
+ search_button.click(fn=search_courses, inputs=[query, k, search_type, rerank], outputs=results)
48
+
49
+ demo.launch()
data/courses.csv ADDED
@@ -0,0 +1,1047 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Course Code,Course Title,Course Description,Credits,,Category,Department,Track,Prerequisite,Remark
2
+ BBA 1101,Seminar in Business I,"Provide opportunities for new business students to get
3
+ exposed to various perspectives of business firms.",1,(1-0-2),Business,BBA,Business Core,None,
4
+ BBA 1102,Data and Information Literacy,"Fundamental concepts and hands-on learning of data and information literacy.
5
+ Exploratory data analysis.
6
+ Identification, location, evaluation, usage of information for problem at hand,
7
+ and data privacy issues.",3,(2-2-5),Business,BBA,Business Core,None,
8
+ BBA 1103,"Fundamentals of Financial
9
+ Accounting",N/A,3,(3-0-6),Business,BBA,Business Core,"For Martin de Tours School of Management and Economics Students and Accounting
10
+ Students (Ok for DDI Students)",
11
+ BBA1104,Fundamentals of Marketing,"Basic concepts of marketing consist of the components of marketing mix. The course content includes
12
+ the basic knowledge of consumer behavior, target markets, product strategies, pricing strategies,
13
+ channels of distribution strategies, integrated marketing communications strategies and the uses of
14
+ information technology in marketing.",3,(3-0-6),Business,BBA,Business Core,BBA 1001 Business Exploration (Ok for DDI Students),
15
+ BBA 2101,Fundamentals of Managerial Accounting,"Role that managerial accounting plays in servicing informational needs of managers in planning,
16
+ organizing and controlling through study of systematic structuring of business decisions and identifying
17
+ the information relevant to decision making, profit planning and budgeting, cost-volume-profit analysis,
18
+ responsibility accounting, preparation statement of cash flows and segment report",3,(3-0-6),Business,BBA,Business Core,BBA 1103 Fundamentals of Financial Accounting,
19
+ BBA 2102,Organization and Management,"Importance of theories of organization and management in traditional perspectives and contemporary
20
+ perspectives. Functions of management are emphasized including organizational strategy,
21
+ organizational structure, human capital management, motivation and leading people in organization
22
+ and controlling
23
+ process and strategy.",3,(3-0-6),Business,BBA,Business Core,BBA1001 Business Exploration (Ok for DDI Students),
24
+ BBA 2103,Corporate Finanace,"Introduction to corporate financial management and a comprehensive overview of managerial
25
+ perspectives for financial managers in making effective as well as ethical investment and financing
26
+ decisions, including time value of money, risk and return, cost of capital, valuation of stocks and bonds,
27
+ project evaluation using capital budgeting decision-analysis tools, risk analysis in project evaluation,
28
+ impact of financial leverage on cost of capital and valuation, dividend policy, financial statement analysis,
29
+ working capital management as well as the use of MS-Excel functions in helping calculating and making
30
+ financial decisions.",3,(3-0-6),Business,BBA,Business Core,"BBA 2002 Economic and Financial Environment for BBA students (Ok for DDI Students)
31
+ BBA 1003 Introduction to Microeconomics and Personal Finance for Arts students",
32
+ BBA 2105,Operations and Supply Chain Management,"Basic concepts of operations management, productivity measurement, operations and process selection,
33
+ forecasting, capacity planning, quality management, inventory management, project management,
34
+ supply chain management, and environmental sustainability.",3,(3-0-6),Business,BBA,Business Core,BBA 2102 Organization and Management,
35
+ BBA 2106,Seminar in Business II,"Prepare undergraduate business students to develop business skills to compete successfully in globalized
36
+ world of business. The topics cover in this course will be related to career preparation, corporate social
37
+ responsibility, and current issues in global business.",1,(1-0-2),Business,BBA,Business Core,None,
38
+ BBA 3101,Business Research,"Business research for business decision-making and problem-solving. The course covers the necessary
39
+ skills and requirements for a problem discovery, literature review, scope of research and relevant
40
+ methods and techniques to design a research project, research tool, qualitative and quantitative data
41
+ collection, data processing, data analysis and presentation of data in appropriate report format.",3,(3-0-6),Business,BBA,Business Core,SA 2001 Business Statistics II,
42
+ BDM 3201,Digital Business,"Fundamental concepts and hands-on learning of software-driven, data-driven, and AI-driven digital
43
+ transformation. Business process management, intelligent business process management, business
44
+ process automation, blockchain and financial technology, business analytics, cloud computing, Internet
45
+ of Things (IoT), 5G, artificial intelligence (AI) and machine learning, enterprise resource planning (ERP),
46
+ robotic process automation (RPA), and cybersecurity.",3,(2-2-5),Business,Digital Business Management,"Digital Business
47
+ Management
48
+ Concentration",None,
49
+ BDM 3202,Digital Commerce,"Fundamental concepts and hands-on learning of electronic commerce and mobile commerce. Platforms,
50
+ marketplaces, channels, website, payment systems, enterprise resource planning, digital marketing,
51
+ customer relationship management, customer experience management, and cybersecurity.",3,(2-2-5),Business,Digital Business Management,"Digital Business
52
+ Management
53
+ Concentration",None,
54
+ BDM 3203,Cybersecurity,"Fundamental concepts and hands-on learning of cybersecurity for business and users. Threats, attacks,
55
+ and vulnerabilities. Technologies and tools, architecture and design, identity and access management,
56
+ risk management, cryptography, public key infrastructure (PKI), and Quantum cryptography.",3,(2-2-5),Business,Digital Business Management,"Digital Business
57
+ Management
58
+ Concentration",None,
59
+ BDM 3204,Enterprise Resource Planning,"Fundamental concepts and hands-on learning of enterprise resource planning (ERP) systems for users.
60
+ Business process management, human resource management, inventory management, sales and
61
+ marketing management, purchasing and procurement management, financial and accounting
62
+ management, warehouse and production management, and customer relationship management.",3,(2-2-5),Business,Digital Business Management,"Digital Business
63
+ Management
64
+ Concentration",None,
65
+ BDM 3205,"Information Systems Strategy, Management, and Acquisition","Fundamental concepts and hands-on learning of information systems strategy, management, and
66
+ acquisition. Exploration of issues and approaches toward acquisition, development, and implementation
67
+ of plans and policies to achieve efficient/effective information systems. Definingenterprise information
68
+ systems infrastructure. Supporting strategic, administrative, and operational organizational needs.
69
+ Assessing information systems infrastructures and emerging technologies to understand how they
70
+ effects on organizational strategy. Information systems project management, the systematic
71
+ methodology for initiating, planning, executing, monitoring and controlling, and closing projects.
72
+ Processes, methods, techniques, and tools that organizations use to manage their information systems
73
+ projects, and project management and collaboration software",3,(2-2-5),Business,Digital Business Management,"Digital Business
74
+ Management
75
+ Concentration",None,
76
+ BDM 3301,Data Analytics Fundamentals,"Fundamental concepts and hands-on learning of Python programming and relational database
77
+ management systems. Python interactive development environments, packages, data structures,
78
+ mathematical operations, functions, control statements, graphics, and web scraping. Data cleansing,
79
+ descriptive statistics, and multivariate models. Relational database management systems, structured
80
+ query language (SQL), and text file.",3,(2-2-5),Business,Digital Business Management,"Digital Business
81
+ Management
82
+ Concentration",None,
83
+ BDM 3302,Data Management,"Fundamental concepts and hands-on learning of data management. Data management platform, data
84
+ governance, data architecture, data modeling and design, database and storage management, structured
85
+ query language (SQL), data normalization and denormalization, data security, data integration and inter-
86
+ operability, documents and content management, data warehousing and business intelligence, metadata
87
+ management, and data quality.",3,(2-2-5),Business,Digital Business Management,"Digital Business
88
+ Management
89
+ Concentration",None,
90
+ BDM 3303,Data Mining,"Fundamental concepts and hands-on learning of data mining. Business understanding, data
91
+ understanding, data preparation, modeling, evaluation, and deployment. Association, classification, and
92
+ clustering.",3,(2-2-5),Business,Digital Business Management,"Digital Business
93
+ Management
94
+ Concentration",None,
95
+ BDM 3304,Systems Analysis and Design,"Fundamental concepts and hands-on learning of systems analysis and design. Processes, methods,
96
+ techniques, and tools for analysis of business requirements, project feasibility, system requirements, and
97
+ conversion of these requirements into detailed system requirements and high-level design specifications.
98
+ Structured software development life cycle (SDLC), object-oriented analysis and design (unified
99
+ process/UML), and agile methods.",3,(2-2-5),Business,Digital Business Management,"Digital Business
100
+ Management
101
+ Concentration",None,
102
+ BDM 3305,Big Data Analytics,"Fundamental concepts and hands-on learning of big data analytics and cloud computing technologies.
103
+ Big data platforms, tools, collection and ingestion, storage, analysis, pre-processing, processing,
104
+ visualization, and deployment at scale.",3,(2-2-5),Business,Digital Business Management,"Digital Business
105
+ Management
106
+ Concentration",None,
107
+ BDM 3403,Robotic Process Automation,"Fundamental concepts and hands-on learning of robotic process automation development. Business
108
+ process automation, recorder, development studio, plugin/extension, bot runner, and control center.
109
+ Architecture, usability, integration, exception handling, security, configuration features, deployment
110
+ features, and documentation",3,(2-2-5),Business,Digital Business Management,"Digital Business
111
+ Management
112
+ Concentration",None,
113
+ BDM 3404,Data Structures and Algorithms,"Fundamental concepts and hands-on learning of Python programming, data structures, and algorithms.
114
+ Python interactive environment, packages, data structures, mathematical operations, functions, control
115
+ statements, and graphics.",3,(2-2-5),Business,Digital Business Management,"Digital Business
116
+ Management
117
+ Concentration",None,
118
+ BDM 3405,Database Systems,"Fundamental concepts and hands-on learning of relational database management systems and NoSQL
119
+ databases. Data modeling and implementation, structured query language (SQL), data normalization and
120
+ denormalization, data integrity, concurrency control, and database administrator. Column-oriented, key-
121
+ value, document, and graph databases.",3,(2-2-5),Business,Digital Business Management,"Digital Business
122
+ Management
123
+ Concentration",None,
124
+ BDM 3406,Mobile Application Development,"Fundamental concepts and hands-on learning of mobile application development. Mobile application
125
+ frameworks, user interface design, SDKs, interactivity communication, integration with back-end
126
+ systems, user authentication and authorization, data services, geo-location, multimedia, verification and
127
+ validation, security, version-control systems, and business development plan.",3,(2-2-5),Business,Digital Business Management,"Digital Business
128
+ Management
129
+ Concentration",None,
130
+ BDM 3409,Game Design and Development,"Fundamental concepts and hands-on learning of game design and development. Design,
131
+ implementation, testing, and documentation of 2D and 3D games using game engines and augmented
132
+ reality (AR).",3,(2-2-5),Business,Digital Business Management,"Digital Business
133
+ Management
134
+ Concentration",None,
135
+ BDM 3410,Low-code Development,"Fundamental concepts and hands-on learning of low-code development. Rapid graphical user interface
136
+ (GUI)-based software creation, configuration, and evaluation. Platforms, development, applications,
137
+ security, and compliance.",3,(2-2-5),Business,Digital Business Management,"Digital Business
138
+ Management
139
+ Concentration",None,
140
+ BDM 3413,eSports,"Fundamental concepts and hands-on learning of eSports. eSports platforms, players, streamers, teams,
141
+ competitions, titles, and publishers.",3,(2-2-5),Business,Digital Business Management,"Digital Business
142
+ Management
143
+ Concentration",None,
144
+ BDM 3416,Data Engineering,"Fundamental concepts and hands-on learning of data engineering. Python programming, Unix shell
145
+ script, web scraping, feature engineerig, real-time data, batch data, data reservior, data lake, data
146
+ pipeline, structure query language (SQL), and persistence storage.",3,(2-2-5),Business,Digital Business Management,"Digital Business
147
+ Management
148
+ Concentration",None,
149
+ BDM 3417,Data Storytelling,"Fundamental concepts and hands-on learning of data visualization and data storytelling. Value of and
150
+ techniques in data and information visualization. Data insights communication.",3,(2-2-5),Business,Digital Business Management,"Digital Business
151
+ Management
152
+ Concentration",None,
153
+ BDM 3418,Digital Marketing Analytics,"Fundamental concepts and hands-on learning of digital marketing technologies and analytics. Lead
154
+ generation, capture, and nurturing. Search engine optimization (SEO), search engine marketing (SEM),
155
+ social media marketing, pay-per-click advertising, website, landing pages, forms, customer relationship
156
+ management, marketing automation platform, web analytics platform, email marketing platform, social
157
+ media campaigns, email drip campaigns, and personalization.",3,(2-2-5),Business,Digital Business Management,"Digital Business
158
+ Management
159
+ Concentration",None,
160
+ BDM 3419,Text Mining,"Fundamental concepts and hands-on learning of text mining. Information retrieval, natural language
161
+ processing, name-entity recognition, association, sentiment analysis, and document clustering.",3,(2-2-5),Business,Digital Business Management,"Digital Business
162
+ Management
163
+ Concentration",None,
164
+ BDM 3420,Cloud Computing,"Fundamental concepts and hands-on learning of cloud computing. Cloud configurations and
165
+ deployment, management, maintenance, security, and troubleshooting.",3,(2-2-5),Business,Digital Business Management,"Digital Business
166
+ Management
167
+ Concentration",None,
168
+ BDM 3422,IT Infrastructure,"Fundamental concepts and hands-on learning of information technology infrastructure. On-premises and
169
+ cloud infrastructure. Computer components, system software, computer network, and security",3,(2-2-5),Business,Digital Business Management,"Digital Business
170
+ Management
171
+ Concentration",None,
172
+ BDM 3423,Penetration Testing,"Fundamental concepts and hands-on learning of penetration testing. Computer networking, planning
173
+ and scoping, information gathering and vulnerability identification, attacks and exploits, penetration
174
+ testing tools, reporting, and communication.",3,(2-2-5),Business,Digital Business Management,"Digital Business
175
+ Management
176
+ Concentration",None,
177
+ BEN 3304,Project Management,"Project planning procedure by considering factors in determining project objectives, setting of work
178
+ system, allocation of resources, project feasibility analysis, matrix model organization, management
179
+ techniques and operation procedures in accomplishing goal such as implementation, communication,
180
+ coordination, controlling and evaluation of the project",3,(3-0-6),Business,BEN,"Entrepreneurship
181
+ Concentration",None,
182
+ BEN 3406,"Legal Aspects and Intellectual
183
+ Property of Entrepreneurship","Basic knowledge on the different types of intellectual property (IP); the type of assets that are best
184
+ protected by each category of IP, their advantages and disadvantages, etc. It is therefore imperative that
185
+ students who are future entrepreneurs be taught to identify where the risk of infringement of other
186
+ people's IP assets lies and what must be done to minimize such risks.",3,(3-0-6),Business,BEN,"Entrepreneurship
187
+ Concentration",None,
188
+ BEN 3408,Conflict and Change Management,"Theories and practical issues of conflict and change management within organizations and how to carry
189
+ out effective change programs by overcoming resistance to changes. Discussion for types of strategic
190
+ change, leadership skills, and cultural change in organizations. Case studies for successful elements for
191
+ conflict and change managementare provided for learning and discussion.",3,(3-0-6),Business,BEN,"Entrepreneurship
192
+ Concentration",None,
193
+ BEN 3409,Organization Transaction,"Theories, concepts, philosophies, practices, and strategies which are relevant to the process of
194
+ organization transition. A study of organizational size and organizational structure, organizational life
195
+ cycle, and organic and mechanistic design. Case studies for successful organizational transition and
196
+ evolution as well as for handling decline stage and methods of downsizing.",3,(3-0-6),Business,BEN,"Entrepreneurship
197
+ Concentration",None,
198
+ BEN 4212,"Growth Mindset and Sustaining
199
+ Organization","Definition and importance of growth and fixed mindset, developing the growth mindset, improving
200
+ motivation and achievement through a growth mindset, building a culture that is willing to take risks and
201
+ accept failure, driving commitment, determination, opportunity exploration and innovation, and
202
+ positioning and moving the business and its people for growth, innovation, collaboration and sustaining
203
+ through the growth mindset.",3,(3-0-6),Business,BEN,"Entrepreneurship
204
+ Concentration",None,
205
+ BEN 4213,Digital Entrepreneurship,"Fostering innovation and entrepreneurship to develop new digital business and leverage digital
206
+ technologies to create new business opportunities. Business models and strategies with emerging digital
207
+ technologies are focused and applied in project-based learning process.",3,(3-0-6),Business,BEN,"Entrepreneurship
208
+ Concentration",None,
209
+ BEN 4215,Family Business Management,"Importance of family business, dynamics of family business, relationship, leadership and communication
210
+ issues in family business, management and governance of the family business, professionalism in family
211
+ business, ownership legacy, succession, sibling rivalries management, wealth management concerns and
212
+ innovation in family business.",3,(3-0-6),Business,BEN,"Entrepreneurship
213
+ Concentration",None,
214
+ BEN 4216,Social Entrepreneurship,"Social entrepreneurship is an innovative and rapidly changing business field in which entrepreneurs are
215
+ using business methods to help solving social and environmental challenges. Through case studies,
216
+ lectures, and student presentations, students will learn to think strategically and explore different
217
+ opportunities with a socially conscious business mindset.",3,(3-0-6),Business,BEN,"Entrepreneurship
218
+ Concentration",None,
219
+ BEN 4419,"Operational Excellence,
220
+ Collaboration and Partnership
221
+ Management","Ideas and strategies for improving operational excellence and managing partnership and collaboration.
222
+ Concepts of vertical and horizontal networking and information-sharing structure. New virtual network
223
+ and outsourcing, effectivepartnership and collaboration with suppliers, customers,and technical
224
+ developments for innovation are emphasized.",3,(3-0-6),Business,BEN,"Entrepreneurship
225
+ Concentration",None,
226
+ BEN 4420,"Creative Industries
227
+ Entrepreneurship","Concepts, skills, knowledge, and ideas to start up a new creative entrepreneurship in any creative
228
+ industries of the country, or to gain a new perspective as a corporate entrepreneur in existing
229
+ entrepreneurial business in different industries. Creative industries that are in focus such as food and
230
+ beverage, fashion, and health and beauty.",3,(3-0-6),Business,BEN,"Entrepreneurship
231
+ Concentration",None,
232
+ BEN 4421,Venture Oppurtunity I,"Interdisciplinary course designed to transform a business idea into real business, to create real product
233
+ or service, to generate income from real customers and to learn the initial stage of entrepreneurship
234
+ which are product development, customer development and early stage sales and marketing.",3,(3-0-6),Business,BEN,"Entrepreneurship
235
+ Concentration",None,
236
+ BEN 4422,Venture Oppurtunity II,"Interdisciplinary course designed to transform a business idea into real business, to create real product
237
+ or service, to generate income from real customers and to learn the late stage of entrepreneurship
238
+ which are sustaining business, accelerating product and customer development, attracting potential
239
+ investors and expanding business.",3,(3-0-6),Business,BEN,"Entrepreneurship
240
+ Concentration",None,
241
+ BFN 3211,"Investment Strategy and Applied
242
+ Valuation","Fundamental knowledge of investment: definitions, theories, implementations, and decision making in
243
+ financial markets including philosophical basis of investment principles, risk and expected return
244
+ relationship, company and securities analysis: valuation frameworks and methodologies, portfolio
245
+ management theory: management, analysis and strategy, capital market theory and capital market
246
+ efficiency, fixed income valuation as well as introduction to derivative securities.",3,(3-0-6),Business,Finance,"Finance
247
+ Concentration",BBA 2103 Corporate Finance,
248
+ BFN 3212,Financial Modeling and Analysis,"An introduction to the use of spreadsheets in an application of finance and accounting, including basic
249
+ skills of using spreadsheets to more complicate financial models for financial analysis and decision-
250
+ making such as using formulas, functions and commands of MS-Excel for financial calculation to analyze
251
+ the impacts of financial decisions related to financial statement analysis, cash budgeting, cost of capital,
252
+ capital budgeting, and capital structure.",3,(3-0-6),Business,Finance,"Finance
253
+ Concentration",BBA 2103 Corporate Finance,
254
+ BFN 3221,Business and Economic Analysis for Decision Making,"Understanding the working of macroeconomic system to encapsulate the changes in economic
255
+ environment caused by fluctuations in business activities and policy responses and to analyze the effects
256
+ of economic performance including trends, opportunities, and threats on industries in both real and
257
+ financial sectors using economic models and the relevant analysis tools in making effective business and
258
+ financial decisions.",3,(3-0-6),Business,Finance,"Finance
259
+ Concentration",BBA 2002 Economic and Financial Environment (OK for DDI Students),
260
+ BFN 3222,"Financial Modeling and Analysis
261
+ Tools","An introduction to the use of spreadsheets in an application of finance and accounting, including basic
262
+ skills of using spreadsheets to more complicate financial models for financial analysis and decision-
263
+ making such as using formulas, functions and commands of MS-Excel for financial calculation to analyze
264
+ the impacts of financial decisions related to financial statement analysis, cash budgeting, cost of capital,
265
+ capital budgeting, and capital structure.",3,(3-0-6),Business,Finance,"Finance
266
+ Concentration",BBA 2103 Corporate Finance and Completion of 80 credits,
267
+ BFN 3223,Advanced Financial Management,"Advanced knowledge of corporate financial management covering financial forecasting and planning,
268
+ investment banking process, start-up financing, lease financing, hybrid financing, risk analysis in capital
269
+ budgeting and real options, pension plan management, financial management in not-for-profit
270
+ businesses, analysis of capital structure theories and dividend theories as well as merger analysis.",3,(3-0-6),Business,Finance,"Finance
271
+ Concentration",BBA 2103 Corporate Finance and Completion of 80 credits,
272
+ BFN 4311,Derivatives and Risk Management,"Understanding of derivatives securities including financial futures, forward, options and swaps, focusing
273
+ on institutional aspects of derivatives markets, fundamental concepts of derivatives pricing and
274
+ valuation, derivatives trading strategies as well as introduction to risk management, such as identifying,
275
+ quantifying, assessing, managing risk, and application of risk management strategies such as forward,
276
+ futures options and swap.",3,(3-0-6),Business,Finance,"Finance
277
+ Concentration",BFN3211 Investment Strategy and Applied Valuation and Completion of 100 credits,
278
+ BFN 4312,Quantitative Analysis and Analytics of Finance,"Important quantitative and statistical tools in applied finance, time value of money, discounted cash flow
279
+ applications, statistical concepts, probability concepts, common probability distribution, sampling and
280
+ estimation, hypothesis testing, correlation and regression, time series model, forecasting techniques as
281
+ well as analysis of financial data using R program.",3,(3-0-6),Business,Finance,"Finance
282
+ Concentration",BFN3211 Investment Strategy and Applied Valuation and Completion of 100 credits,
283
+ BFN 4313,International Financial Management,"Managerial aspects of international financial management from the MNCs’ perspectives, international
284
+ financial markets, international capital flows, foreign exchange policies and systems, policies and
285
+ strategies adopted by MNCs in assessing, measuring and managing foreign exchange risk exposures and
286
+ international financing as well as capital structure decisions.",3,(3-0-6),Business,Finance,"Finance
287
+ Concentration","BBA 2103 Corporate Finance
288
+ Completion of 100 credits",
289
+ BFN 4321,"Special Topics in Finance
290
+ Certification","A comprehensive course designed to prepare students for level I of Chartered Financial Analyst (CFA)
291
+ examination focusing on basic knowledge of ethical and professional standards, quantitative methods,
292
+ economics, financial reporting and analysis, corporate finance, equity investment, fixed income,
293
+ derivatives, alternative investments, portfolio management, and wealth planning using investment
294
+ analysis tools.",3,(3-0-6),Business,Finance,"Finance
295
+ Concentration",BFN 3211 Investment Strategy and Applied Valuation Completion of 121 credits,
296
+ BFN 4322,"Value Based Management and
297
+ Financial Decisions","Corporate strategies, financial policies and theoretical framework used in corporate financial decision
298
+ making focusing on current issues in finance such as capital structure, mergers and acquisitions,
299
+ corporate takeovers, financial strategies, valuation, restructuring, leveraged buyouts, tax implications,
300
+ and other topics related to corporate policies by applying case studies and current business situations.",3,(3-0-6),Business,Finance,"Finance
301
+ Concentration",BFN 3211 Investment Strategy and Applied Valuation Completion of 121 credits,
302
+ BHT 3201,Introduction to Hospitality and Tourism Management,"The overview of the tourism industry and the basic concepts, tools, and techniques of tourism
303
+ management. The impacts of tourism will also be examined, together with the role and the importance
304
+ of tourism planning in minimizing those impacts of tourism and developing strategies to ensure
305
+ sustainable evolution. And it also gives an overview of hotel management in hospitality industry, build to
306
+ understanding the structure of organization of hospitality business, front office, sale and marketing,
307
+ housekeeping, food and beverage, human resources and other department, emphasis the current trend
308
+ and future trend of hospitality business. In addition.",3,(3-0-6),Business,Hospitality,"Hospitality and
309
+ Tourism
310
+ Management
311
+ Concentration",BBA 1104 Fundamentals of Marketing (Ok for DDI Students),
312
+ BHT 3202,Consumer Behavior in Hospitality and Tourism,"Diversity of tourists and their consumer behavior, traditional, social and cultural backgrounds,
313
+ sociological and psychological factors, social groups, demographic variables, social strata and culture that
314
+ form tourist attitudes, consideration, purchasing behavior and consumption, tourist behavior with
315
+ qualitative and quantitative approaches to assure better understanding of diversity of tourist behavior.",3,(3-0-6),Business,Hospitality,"Hospitality and
316
+ Tourism
317
+ Management
318
+ Concentration",BBA 1104 Fundamentals of Marketing (Ok for DDI Students),
319
+ BHT 3203,Food and Beverage Management,"Role and contribution of the Food & Beverage department, its structure, and functions and
320
+ responsibilities of the key personnel, overview of the department’s functions: purchasing, receiving,
321
+ storing, food preparation, stewarding, planning the menu, food service and sales including food
322
+ sanitation, food quality and kitchen equipment.",3,(3-0-6),Business,Hospitality,"Hospitality and
323
+ Tourism
324
+ Management
325
+ Concentration",BBA 2102 Organization and Management,
326
+ BHT 3204,Personality and Communication in Hospitality and Tourism,"This course is designed to actively involve students in developing the knowledge, skills and abilities
327
+ crucial to demonstrate basic personal and professional social skills, personality development and
328
+ modern etiquette. This course starts with the basic aspects of personality and the different ways in
329
+ which these skills and knowledge are implemented in the hospitality and tourism industry. The course is
330
+ also designed to developed the communication skill by the process includes perception, listening, self-
331
+ disclosure, public speaking, ethics, nonverbal communication, conflict, power, and dysfunctional
332
+ communication.",3,(3-0-6),Business,Hospitality,"Hospitality and
333
+ Tourism
334
+ Management
335
+ Concentration",BBA 2102 Organization and Management,
336
+ BHT 3205,Marketing in Hospitality and Tourism,"Application of knowledge and skills acquired in principles of marketing and consumer behavior to the
337
+ hospitality and tourism industry, evaluation of the industry, analyzing and developing marketing plans,
338
+ application of various promotional strategies and tools to achieve organization’s marketing objectives,
339
+ department’s structure, functions, and responsibilities of key personnel.",3,(3-0-6),Business,Hospitality,"Hospitality and
340
+ Tourism
341
+ Management
342
+ Concentration",BHT 3201 Introduction to Hospitality and Tourism Management,
343
+ BHT 3301,Human Resource Management in Hospitality and Tourism,"A broad view on personnel administration and human resources management with its process (i.e.
344
+ recruitment, selection, staffing, labor/staff relations, remuneration, compensation, motivation,
345
+ evaluation, etc.); and training and development (human resources development or HRD) with its process
346
+ (i.e. identify training needs, design & deliver of training, training evaluation & analysis) in hospitalities
347
+ and tourism industries while introducing the current theories, current HRM & HRD concepts, skills,
348
+ practices and hands-on HR applications within the field.",3,(3-0-6),Business,Hospitality,"Hospitality and
349
+ Tourism
350
+ Management
351
+ Concentration",BHT 3201 Introduction to Hospitality and Tourism Management,
352
+ BHT 4301,"Information Technology in Hospitality
353
+ and Tourism","Latest information technologies in the hospitality and tourism industries, property management systems
354
+ and central reservation systems, practice of current global distribution system software packages.",3,(3-0-6),Business,Hospitality,"Hospitality and
355
+ Tourism
356
+ Management
357
+ Concentration",BHT 3201 Introduction to Hospitality and Tourism Management,
358
+ BHT 4302,"Operationa and Leadership in
359
+ Hospitality and Tourism","Leadership, various theories and styles of leadership in the field of hospitality and tourism industries,
360
+ operation as a major functional area of business and operation decision making to improve by utilizing
361
+ all the underlying disciplines.",3,(3-0-6),Business,Hospitality,"Hospitality and
362
+ Tourism
363
+ Management
364
+ Concentration",BHT 3205 Marketing in Hospitality and Tourism and Completion of at least 118 credits,
365
+ BHT 4303,Strategic Management in Hospitality and Tourism,"Analytical discussion of key areas of contemporary hospitality and tourism management: evaluation of
366
+ the most important global trends in tourism, analysis of the impact of crucial environmental issues and
367
+ their implications and the major factors affecting international tourism.",3,(3-0-6),Business,Hospitality,"Hospitality and
368
+ Tourism
369
+ Management
370
+ Concentration",BHT 3205 Marketing in Hospitality and Tourism and Completion of at least 118 credits,
371
+ BIB 3201,"Cross Cultural Human Resource
372
+ Management","Differences and similarities of managerial systems and management practices in different cultural
373
+ settings, definitions and concepts of culture, cultural differences at the national, organizational and
374
+ managerial levels, regional and country cultural characteristics, complexities and challenges of running
375
+ global organizations. Human resource practices across cultures and cultural frameworks applied to
376
+ various aspects of human resource management in the international context. Topics also include the
377
+ expatriation cycle, factors that influence effective management in cross-cultural settings, and ethical
378
+ issues in the international environment. Coursework and case studies are used to facilitate a better
379
+ understanding of the challenges confronted by global organizations when working and dealing with
380
+ clients in diverse international business environments.",3,(3-0-6),Business,IBM,"International
381
+ Business
382
+ Management
383
+ Concentration",BBA 2104 Global Strategy and Communication (OK for DDI Students),
384
+ BIB 3202,Export-Import Policy and Strategy,"Concepts and framework to systematically evaluate foreign markets and develop comprehensive
385
+ export/import strategies, governments and organizations roles in balancing exports and imports among
386
+ sectors, practical and strategic elements associated with the establishment of cross border international
387
+ business ventures in the form of exports, e-commence, current/updated procedures and practices of
388
+ export-import planning, sourcing and financing, documentation, export/import compliance,
389
+ export/import channels, foreign trade zones, and transportation modes",3,(3-0-6),Business,IBM,"International
390
+ Business
391
+ Management
392
+ Concentration",BBA 2104 Global Strategy and Communication (OK for DDI Students),
393
+ BIB 3203,Global Business in Practice,"Focus on developing advanced skills in analyzing global markets, consumer and environment and identify
394
+ marketing opportunities, explores the concept of segmentation, targeting and positioning in a globalized,
395
+ multicultural environment, design and manage marketing mix, apply multiple decision-making tools and
396
+ frameworks to formulate practical international marketing plans and strategies to gain competitive
397
+ advantage. The course adopts a practical approach through workshops, projects and industry linkage to
398
+ develop professional skills.",3,(3-0-6),Business,IBM,"International
399
+ Business
400
+ Management
401
+ Concentration",BBA 1104 Fundamentals of Marketing (Ok for DDI students),
402
+ BIB 3204,International Managemnet,"The intricacies of doing business in different countries and environments, including the political, legal,
403
+ cultural and technological contexts faced by multinational enterprises (MNEs), forms of operations
404
+ available to the MNE, and the international strategic planning. Main topics covered include different
405
+ theoretical and practical perspectives on globalization, international strategic planning and
406
+ implementation in MNEs, strategies for international competition, international joint ventures and
407
+ strategic alliances, organizational structure of MNEs, and international social and ethical responsibility of
408
+ firms. The course prepares future managers to make good decisions and formulate successful
409
+ international strategies.",3,(3-0-6),Business,IBM,"International
410
+ Business
411
+ Management
412
+ Concentration",BIB 3201 Cross Cultural human Resource Management,
413
+ BIB 4209,International Strategic Management,"Strategic management amidst the phenomena of globalization, contemporary strategy concepts and
414
+ theories, important and consistent principles that a firm can use in making decisions that will affect its
415
+ long term performance in an increasingly globalized business environment, strategic management
416
+ process: environmental scanning, strategy formulation, strategy implementation and evaluation and
417
+ control, creation of competitive advantages and the system of value creation, challenges posed in the
418
+ strategic management process through a discussion of various business cases as well as the use of up-to-
419
+ date information technology (IT) tools.",3,(3-0-6),Business,IBM,"International
420
+ Business
421
+ Management
422
+ Concentration",BIB 3204 International Management and Completion of 118 Credits,
423
+ BIB 4305,"Designing and Managing Global
424
+ Operations","Examines contemporary issues related to managing operations in a global context and explore the key
425
+ factors in operations such as production planning and management of globally dispersed manufacturing
426
+ and services by utilizing analytical and quantitative tools and framework and the application of
427
+ Information Technology to enhance a firm’s operations strategy through facility layout, product design,
428
+ aggregated planning, inventory management and forecasting.",3,(3-0-6),Business,IBM,"International
429
+ Business
430
+ Management
431
+ Concentration",BBA 2105 Operations and Supply Chain Management,
432
+ BIB 4306,Global Business Feasibility Analysis,"Conceptual and analytical tools and framework for assessing dynamic international business
433
+ environment in terms of economic, social, political, cultural, environmental, legal, regulatory and ethical
434
+ aspects, develop skills to critically evaluate different international business conditions and decisions,
435
+ analyze financial cost and benefit of international business projects, assess risks and feasibility of
436
+ establishing business operations across borders, and evaluate effects on business performance.
437
+ Introduce students to the principles of Data Analytics and its application to business.",3,(3-0-6),Business,IBM,"International
438
+ Business
439
+ Management
440
+ Concentration",BIB 3204 International Management and Completion of 106 Credits,
441
+ BIB 4307,International Business Research,"Methodologies used in international business research, emphasis on the concept of cross-cultural
442
+ equivalence in conducting comparative and international business research. Topics covered include scale
443
+ development and assessment, establishment of data equivalence across cultures, measurement
444
+ invariance, comparability of data collection techniques, various statistical techniques applied in
445
+ international research, and the application of information technology in preparing a professional
446
+ research paper and analyzing data.",3,(3-0-6),Business,IBM,"International
447
+ Business
448
+ Management
449
+ Concentration",BBA 3101 Business Research,
450
+ BIB 4308,Seminar in International Business,"Discussion on contemporary issues and trends in international business at the regional, country specific,
451
+ industry and firm level, topics covered include international economics, trade and investments,
452
+ international management and international; marketing, global supply chain, informational technology,
453
+ legal and ethical issues, relevant to professional development of students.",3,(3-0-6),Business,IBM,"International
454
+ Business
455
+ Management
456
+ Concentration",BIB 3204 International Management and Completion of 118 Credits,
457
+ BMK 3201,Consumer Behavior,"The study of how consumers make decisions on how they select, buy and use products. Topics that
458
+ relate to consumers’ sensory and perceptual processes, learning and memory, self and personality
459
+ dynamics, motivation and emotion, attitude change and persuasion are thoroughly discussed to learn
460
+ about their application in the marketing field so as to understand and satisfy consumers’ needs and
461
+ wants. Consumer well-being and the digitization of consumer behavior are given emphasis to explore
462
+ consumers’ changing consumption patterns in recent times.",3,(3-0-6),Business,Marketing,Marketing Concentration,"BBA 1104 Fundamentals of Marketing (OK for DDI Students)
463
+ BBA 2001 Human Behavior",
464
+ BMK 3204,Competitive Analysis and Strategy,"An integrative marketing course that includes comprehensive analytical marketing concepts and theories
465
+ for understanding an organization’s internal resources, competitive positioning and relationship with
466
+ customers, competitors, suppliers, distribution channels as well as analyzing competitive relevance
467
+ towards macro-environmental factors from diverse industrial sectors; and provides guidelines to design
468
+ practical business strategies based on an organization’s distinctive competencies to create and sustain its
469
+ competitive advantages.",3,(3-0-6),Business,Marketing,Marketing Concentration,"BBA 1104 Fundamentals of Marketing (OK for DDI Students)
470
+ Completed 75 credits",
471
+ BMK 3305,Integrated Marketing Communications,"Introduction to principles and practices of integrated marketing communications. Examine the roles and
472
+ functions of various marketing communications mix including advertising, sales promotion, public
473
+ relations, digital marketing, and direct marketing to build and maintain brand equity. Topics include
474
+ communication process, managerial framework for IMC campaign planning, promotional objectives and
475
+ budgets, creative strategy, offline and online media planning strategy.",3,(3-0-6),Business,Marketing,Marketing Concentration,BBA 1104 Fundamentals of Marketing (OK for DDI Students),
476
+ BMK 3306,Marketing Channels and Logistics,"This course emphasizes the vital role of the marketing mix, “place”, in creating sustainable marketing
477
+ competitive advantage. It includes marketing channel and logistics management concepts and strategies;
478
+ target markets and channel design strategy; analysis and interfaces of channel strategies with logistics
479
+ management; digital trends and contemporary issues in marketing channel and logistics influencing
480
+ marketing management; practical and real-world applications of marketing channel concepts and
481
+ strategies in today’s borderless, globalized marketing environment.",3,(3-0-6),Business,Marketing,Marketing Concentration,BBA 1104 Fundamentals of Marketing (OK for DDI Students),
482
+ BMK 4201,Marketing Management,"The course provides an opportunity for the students to sharpen their skills in making effective marketing
483
+ plan in response to the needs of the market. Course topics include market-oriented strategic planning,
484
+ market research and customer insights, target market selection and comprehensive marketing planning
485
+ regarding product, pricing, distribution and integrated communications in both offline and digital media.
486
+ Through the collaboration with real industry players, the course allows the students to effectively
487
+ formulate marketing plans in practical manners in order to cope with the disruptive market environment
488
+ inmodern days.",3,(3-0-6),Business,Marketing,Marketing Concentration,"1104 Fundamentals of Marketing (OK for DDI Students)
489
+ and BBA 3101 Business Research Completed 90 credits",
490
+ BMK 4302,Contemporary Issues in Marketing,"This course is designed to improve students’ awareness of contemporary issues in marketing and to
491
+ develop their case analysis skills. A number of case studies and specific marketing issues will be
492
+ discussed throughout the semester. A step by step approach will be taken to build up students’
493
+ knowledge of and skills in case analysis throughout the course.",3,(3-0-6),Business,Marketing,Marketing Concentration,BBA 1104 Fundamentals of Marketing (OK for DDI Students) and Completed 75 credits,
494
+ BMK 4303,Marketing Research,"A research project-based course designed to cover the whole marketing research processes and
495
+ understand marketing research tools and techniques to translate a marketing decision problems into
496
+ research questions and learn how to design a research plan, analyze the data and accurately interpret,
497
+ making the research report and translating the results into practical recommendations.",3,(3-0-6),Business,Marketing,Marketing Concentration,"BBA 1104 Fundamentals of Marketing (OK for DDI Students) and BBA 3101 Business
498
+ Research and Completed 90 credits",
499
+ BMK 4304,Marketing Metrics and Decisions,"The analyzing and planning in the area of marketing decision making. It includes principles, techniques
500
+ and actual practices of market analysis, market forecasting, demand analysis, and evaluation of market
501
+ potential. The emphasis is on the market analysis, sales projection, pricing analysis, salesforce and
502
+ distribution decision as a part of administrative planning for profit, market campaign planning, and using
503
+ metrics to analyze communication plan effectiveness for advertising, sales promotion, online advertising.",3,(3-0-6),Business,Marketing,Marketing Concentration,BBA 1104 Fundamentals of Marketing (OK for DDI Students) and Completed 112 credits,
504
+ BRE 3201,Real Estate Business,"Overview of real estate business and professional practices, special terms, nature and description of real
505
+ estate, various types of property, basic rights and interests in real estate, land-use controls, forms of
506
+ ownership, various real estate fields of property management, development , investment real estate
507
+ finance and real estate appraisal.",3,(3-0-6),Business,Real Estate,"Real Estate
508
+ Concentration",Prerequisite: BBA 1001 Business Exploration (OK for DDI Students),
509
+ BRE 3202,Real Estate Law,"General principles of real estate law and legal aspects relating to real estate business, property rights,
510
+ subdivision regulations, ownership in real estate, transferring and registering title, regulations of land-
511
+ use and city planning, housing and condominium development laws, construction laws and other
512
+ contracts related to real estate transactions.",3,(3-0-6),Business,Real Estate,"Real Estate
513
+ Concentration",None,
514
+ BRE 3203,Real Estate Economics,"Demand and supply of real estate, real estate business cycle, real estate cycle, real estate markets, urban
515
+ land- use, urban land economics, market failure and remedies in real estate.",3,(3-0-6),Business,Real Estate,"Real Estate
516
+ Concentration","Prerequisites: BBA 1002 Microeconomics (OK for DDI students)
517
+ BBA 2002 Macroeconomics and Financial Environment of Business",
518
+ BRE 3204,"Building Design and Construction
519
+ Techniques","Basic knowledge of techniques and process used to design and construct buildings, terms and symbols
520
+ used in construction drawings, types of construction materials, construction technologies, cost
521
+ estimation, process to construct building structure, basic construction scheduling techniques,
522
+ architectural elements, finishing, and building mechanical systems.",3,(3-0-6),Business,Real Estate,"Real Estate
523
+ Concentration",None,
524
+ BRE 3205,Real Estate Development,"Methods in real estate development for various types of real estate, various participants in the real
525
+ estate development process in both public and private sectors, land selection, development process,
526
+ including conceptual development, feasibility study, real estate cycles, market analysis, and business
527
+ strategy.",3,(3-0-6),Business,Real Estate,"Real Estate
528
+ Concentration",Prerequisite: BRE 3201 Real Estate Business,
529
+ BRE 3301,Real Estate Finance,"Financial techniques to sell and buy real estate property, types of financial institutions and sources of
530
+ funds, types of loan, underwriting, analysis of project development loan and mortgage loan, factors and
531
+ principal process in real estate lending, including various financial calculations used in real estate
532
+ business, and government’s current policies regarding real estate finance.",3,(3-0-6),Business,Real Estate,"Real Estate
533
+ Concentration",Prerequisite: BRE 3201 Real Estate Business,
534
+ BRE 3302,Real Estate Appraisal,"Introduction to real estate appraisal, definition of value, objectives of appraisal, data analysis, land (site)
535
+ and building survey, appraisal report, with emphasis on the three basic approaches to calculate value:
536
+ Cost Approach, Market Approach and Income Approach.",3,(3-0-6),Business,Real Estate,"Real Estate
537
+ Concentration",Prerequisite: BRE 3201 Real Estate Business,
538
+ BRE 3303,Commercial Property Management,"Management of income producing properties, property manager roles and duties, process for making
539
+ management plans, commercial lease management, lease negotiation in theory and practice, roles and
540
+ right of landlord and tenant, landlord and tenant relationship management, management and
541
+ maintenance of property",3,(3-0-6),Business,Real Estate,"Real Estate
542
+ Concentration",Prerequisite: BRE 3201 Real Estate Business,
543
+ BRE 4301,Real Estate Investment Analysis,"Process of real estate investment and analysis, methods in real estate investment analysis, including
544
+ traditional method and discounted cash flow method, prelim-financial feasibility study, real estate
545
+ investment assumptions, real estate investment analysis of various real estate segments, real estate
546
+ investment analysis report, other types of real estate investment vehicles.",3,(3-0-6),Business,Real Estate,"Real Estate
547
+ Concentration",Prerequisite: BRE 3301 Real Estate Finance,
548
+ BRE 4302,Real Estate Project Management,"Procedure and basic technique throughout project management life cycle to fulfill a real estate
549
+ development project, planning and control project schedule, cost and quality, organization methods and
550
+ project team, leadership, risk management, project feasibility analysis and project contract.",3,(3-0-6),Business,Real Estate,"Real Estate
551
+ Concentration",Prerequisite: BRE 3205 Real Estate Development,
552
+ BRE 3411,Real Estate Marketing,"Application of knowledge and skills in marketing to the real estate industry,, industry analyzing and
553
+ developing marketing plans, techniques for marketing commercial-investment properties; planning,
554
+ process, and methods of marketing including marketing program, selling and negotiation strategy,
555
+ information systems supporting marketing, roles of brokerage business including services, relationship to
556
+ owner, responsibilities, brokers’ code of ethics, and development of a broker profession",3,(3-0-6),Business,Real Estate,"Real Estate
557
+ Concentration",None,
558
+ BRE 3412,Sustainability in Real Estate,"The site planning, building design, development, and operations of sustainable buildings, the efficiency
559
+ of inputs and outputs of market production, the efficiency and effectiveness of property management,
560
+ applications of sustainability in aspects of social, financial, and environmental, stability and durability of
561
+ urban ecologies",3,(3-0-6),Business,Real Estate,"Real Estate
562
+ Concentration",None,
563
+ BRE 3413,Real Estate Investment Alternatives,"Concepts and fundamentals for real estate investment, Methods, tools, & techniques for evaluating &
564
+ selecting various real estate assets, including real estate investment vehicles, Key concepts and
565
+ instruments for reducing real estate investment risk, Methods and tools for measuring the performance
566
+ of real estate investments.",3,(3-0-6),Business,Real Estate,"Real Estate
567
+ Concentration",None,
568
+ BRE 3421,"Contemporary Issues in Real Estate
569
+ Appraisal","Various aspects of real estate appraisal experience and practices including professional appraisal ethics,
570
+ case studies, workshops, and fieldtrips related to real estate appraisal.",3,(3-0-6),Business,Real Estate,"Real Estate
571
+ Concentration",None,
572
+ BRE 3422,"Implications of Real Estate Finance
573
+ and Appraisal","Types of financial institutions and sources of funds, types of loan, underwriting, analysis of project
574
+ development loan and mortgage loan, factors and principal process in real estate lending, and
575
+ government’s current policies regarding real estate finance. Introduction to real estate appraisal,
576
+ definition of value, objectives of appraisal, with emphasis on the concepts of three basic approaches to
577
+ calculate value: Cost Approach, Market Approach and Income Approach.",3,(3-0-6),Business,Real Estate,"Real Estate
578
+ Concentration",None,
579
+ BRM 3211,Risk Management and Insurance,"Basic concepts of risk and insurance, terminologies used in risk management and insurance, functional
580
+ operations of insurers, fundamental legal principles, insurance contract, various types of insurance such
581
+ as life and health insurance, property and liability insurance, and government insurance.",3,(3-0-6),Business,Risk Management,"Risk
582
+ Management
583
+ Concentration",None,
584
+ BRM 3212,Insurance Law,"Insurance law and Ministerial Regulations of the Kingdom pertaining to the contract of insurance in all
585
+ fields such as life, accident, fire, transportation, and liability court interpretation on applicable coverage,
586
+ comparison of laws in the U.K. and U.S.",3,(3-0-6),Business,Risk Management,"Risk
587
+ Management
588
+ Concentration",Prerequisite: BG 1400 Business Law I,
589
+ BRM 3221,Property Insurance,"Analysis of an insurance contract and measurement of property and net income loss exposures of family
590
+ and business firm in general, major insurance policies and extension available in the Thai market, fire
591
+ insurance and allied lines, Industrial All Risk business interruption insurance, motor insurance, ocean and
592
+ inland marine insurance fidelity guarantee insurance, surety bond and other miscellaneous insurance.",3,(3-0-6),Business,Risk Management,"Risk
593
+ Management
594
+ Concentration",Prerequisite: BRM 3211 Risk Management and Insurance,
595
+ BRM 3222,Casualty Insurance,"Analysis of source of legal liability, major sources of liability loss exposures of both family and business
596
+ firm and insurance coverage designed to meet those loss exposures, personal liability insurance, public
597
+ liability insurance, workers’ compensation employer’s liability insurance, professional liability insurance,
598
+ products liability insurance, Director and Officers’ s liability insurance, Cyber liability insurance and a
599
+ variety of miscellaneous liability insurance.",3,(3-0-6),Business,Risk Management,"Risk
600
+ Management
601
+ Concentration",Prerequisite: BRM 3211 Risk Management and Insurance,
602
+ BRM 3223,Life Assurance,"Features of life insurance industry, life insurance contract, life insurance policy, life insurance premium,
603
+ life insurance products and supplemental benefits, life insurance policy provisions, life insurance policy
604
+ ownership rights, life insurance claim and basic group life insurance.",3,(3-0-6),Business,Risk Management,"Risk
605
+ Management
606
+ Concentration",Prerequisite: BRM 3211 Risk Management and Insurance,
607
+ BRM 4311,Employee Benefits,"A study of the analysis, planning and administering of the employee benefit insurance plan. The topics
608
+ include basic concepts in employee benefit planning, risk management of employee benefit plans, death
609
+ benefits, medical health insurance, accidental death and dismemberment insurance, disability income
610
+ benefits, social insurance, unemployment insurance, group insurance, and retirement benefit plans.",3,(3-0-6),Business,Risk Management,"Risk
611
+ Management
612
+ Concentration",Prerequisite: BRM 3211 Risk Management and Insurance,
613
+ BRM 4312,Reinsurance,"Nature and functions of reinsurance, main types of insurers and reinsurer, legal principles and outline of
614
+ the international reinsurance market, facultative, and treaty for both proportional and excess of loss
615
+ reinsurance including accounts, premium and loss reserves including reinsurance audits.",3,(3-0-6),Business,Risk Management,"Risk
616
+ Management
617
+ Concentration",Prerequisite: BRM 3211 Risk Management and Insurance,
618
+ BRM 4313,Essentials of Risk Management,"Losses, loss exposures on both personal and business firm and risk management process, risk
619
+ management techniques, risk financing and risk control, role of the risk manager in an organization, pre
620
+ and post loss objective, current issues regarding risk management, medical expense benefit, disability
621
+ benefit, theory of group insurance, master contract and certificate, various aspects and clauses under
622
+ group insurance contract including marketing and distribution of group insurance and evaluation of
623
+ current trends.",3,(3-0-6),Business,Risk Management,"Risk
624
+ Management
625
+ Concentration",Prerequisite: BRM 3211 Risk Management and Insurance,
626
+ BRM 4321,Digital Marketing in Insurance,"To apply marketing principle and digital technology in insurance industry with emphasis on analysis,
627
+ prediction and application along with in-depth knowledge of online marketing. The implementation
628
+ starts from product design, product development, marketing mix strategy i.e.
629
+ product/price/place/promotion as well as customer relationship management.",3,(3-0-6),Business,Risk Management,"Risk
630
+ Management
631
+ Concentration","Prerequisites: BRM 3211 Risk Management and Insurance
632
+ BBA1104 Fundamentals of Marketing (OK for DDI Stdudents)",
633
+ BRM 4322,Seminar in Insurance,"Comprehensive review of all aspects of risk and insurance, various cases of operations of insurance
634
+ company, topics which are relevant to professional goals and interest of students and current issues in
635
+ insurance industry with emphasis on research, class discussion, and presentation.",3,(3-0-6),Business,Risk Management,"Risk
636
+ Management
637
+ Concentration",Prerequisites: Senior Standing and completion of 108 credits,
638
+ BSC 3201,"Logistics and Supply Chain
639
+ Management","Logistics and supply chain management theory, segmentation, forecasting techniques, sourcing
640
+ management, operations management, sales and operations planning, inventory management,
641
+ warehouse management, logistics management, transportation, and technology in supply chain.",3,(3-0-6),Business,Supply Chain,Supply Chain Track,BBA 2102 Organization and Management,
642
+ BSC 3202,"Supply Chain Innovation and
643
+ Technology","Technology introduction process, research and development control and management in supply chain,
644
+ supply chain digital transformation and company’s innovation strategy, product/process/technology life
645
+ cycle, innovation process generation and implementation, agile project management in supply chain.",3,(3-0-6),Business,Supply Chain,Supply Chain Track,BBA 2102 Organization and Management,
646
+ BSC 3203,Lean Manufacturing and Agile Supply Chain,"Lean manufacturing systems, manufacturing waste management, designing lean process, materials
647
+ planning and control, production process aspects, numerical data linkages in supply chain, determination
648
+ of production schedule and dispatching, production control system, implementation, inventory
649
+ management, demand management, and agile supply chain.",3,(3-0-6),Business,Supply Chain,Supply Chain Track,BSC 3201 Logistics and Supply Chain Management,
650
+ BSC 3204,"International Transportation and
651
+ Distribution Management","International transportation modes selection and management system, transportation routing analysis
652
+ and management, microanalysis of logistics and transportation services, distribution operations,
653
+ transportation costing, distribution networks management, intermodal transportation, transportation
654
+ mode interface, domestic and international transportation law, international commercial terms
655
+ (incoterms), and Greater Mekong Subregion Cross-Border Transportation Agreement (GMS CBTA).",3,(3-0-6),Business,Supply Chain,Supply Chain Track,BSC 3201 Logistics and Supply Chain Management,
656
+ BSC 3205,Warehousing and Material Handling,"Warehousing operations and systems, warehousing pallet, case, and small items storage and retrieving
657
+ systems, order profile, functional analysis, warehouse management system (WMS), layout, resources,
658
+ and warehousing development system.",3,(3-0-6),Business,Supply Chain,Supply Chain Track,BSC 3201 Logistics and Supply Chain Management,
659
+ BSC 3301,Business Analytics,"Identification, evaluation, and capture business analytic opportunities that create value. Basic analytic
660
+ methods, case studies, how to use data, descriptive and predictive capabilities, forecasting techniques,
661
+ the use of optimization to support business decision-making, and the concept of big data.",3,(3-0-6),Business,Supply Chain,Supply Chain Track,SA 2001 Business Statistics II,
662
+ BSC 4302,Procurement and Supply Management,"Identification, evaluation, and capture business analytic opportunities that create value. Basic analytic
663
+ methods, case studies, how to use data, descriptive and predictive capabilities, forecasting techniques,
664
+ the use of optimization to support business decision-making, and the concept of big data.",3,(3-0-6),Business,Supply Chain,Supply Chain Track,BBA 2105 Operations and Supply Chain Management,
665
+ BSC 4303,Supply Chain Risk Management,"Sources of supply chain risk and their impact on supply chain performance, supply chain risk
666
+ management process, and strategies to help mitigate supply chain risk, and case studies.",3,(3-0-6),Business,Supply Chain,Supply Chain Track,BSC 3201 Logistics and Supply Chain Management,
667
+ BSC 4304,Strategic Supply Chain Management,"Definition and different levels of strategies, supply chain strategy, process thinking, global supply chain
668
+ design, supply chain mapping, supply chain cost management, relationship management, and
669
+ performance measurement.",3,(3-0-6),Business,Supply Chain,Supply Chain Track,Senior standing (118 credits),
670
+ BSC 4305,Seminar in Supply Chain,"Current logistics and supply chain conditions, problems, and solutions, class discussion, case studies,
671
+ business exposure, guest speaker, research and presentation.",3,(3-0-6),Business,Supply Chain,Supply Chain Track,Senior standing (118 credits),
672
+ SA 1001,Business Statistics I,"Descriptive Statistics, Probabilities, Probability distributions, Sampling distributions, Point estimates,
673
+ Interval estimates and Test of Hypotheses",3,(3-0-6),Business,Supply Chain,Supply Chain Track,None,
674
+ SA 2001,Business Statistics II,"Simple linear regression and correlation, Multiple linear regression, Analysis of variance, Chi-Square Tests",3,(3-0-6),Business,Supply Chain,Supply Chain Track,SA 1001 Business Statistics I,
675
+ MB 2531,Music Business,N/A,3,(3-0-6),Music,Music,"Music
676
+ Entrepreneurship
677
+ Track",None,
678
+ MB 3512,Legal Aspects of Music,N/A,3,(3-0-6),Music,Music,"Music
679
+ Entrepreneurship
680
+ Track",None,
681
+ MB 3537,Music Career Exposure,N/A,3,(3-0-6),Music,Music,"Music
682
+ Entrepreneurship
683
+ Track",None,
684
+ MB 3541,Online Social Media for Music Business,N/A,3,(3-0-6),Music,Music,"Music
685
+ Entrepreneurship
686
+ Track",None,
687
+ MB 3545,Digital Marketing for Music Entrepreneur,N/A,3,(3-0-6),Music,Music,"Music
688
+ Entrepreneurship
689
+ Track",None,
690
+ MB 3549,Music Entrepreneurship Research,N/A,3,(3-0-6),Music,Music,"Music
691
+ Entrepreneurship
692
+ Track",None,
693
+ MB 3550,Feasibility Study for Music Entrepreneur,N/A,3,(3-0-6),Music,Music,"Music
694
+ Entrepreneurship
695
+ Track",None,
696
+ MB 3551,Creative Msuic Entrpreneurship,N/A,3,(3-0-6),Music,Music,"Music
697
+ Entrepreneurship
698
+ Track",None,
699
+ MB 4500,Music Entrepreneurship Seminar,N/A,3,(3-0-6),Music,Music,"Music
700
+ Entrepreneurship
701
+ Track",None,
702
+ MB 4550,Business Intelligence and Data Analytics,N/A,3,(3-0-6),Music,Music,"Music
703
+ Entrepreneurship
704
+ Track",None,
705
+ MP 1400,Music Production Skills,N/A,2,(2-0-4),Music,Music,"Music
706
+ Entrepreneurship
707
+ Track",None,
708
+ MP 2400,Audio Fundamentals,N/A,3,(3-0-6),Music,Music,"Music
709
+ Entrepreneurship
710
+ Track",None,
711
+ MP 2510,Visual Media for Musician,N/A,2,(2-0-4),Music,Music,"Music
712
+ Entrepreneurship
713
+ Track",None,
714
+ MP 2511,Digital Photography for Musician,N/A,1,(0-2-1),Music,Music,"Music
715
+ Entrepreneurship
716
+ Track",None,
717
+ MP 2512,Video Production for Musician,N/A,2,(1-2-3),Music,Music,"Music
718
+ Entrepreneurship
719
+ Track",None,
720
+ MP 3411,Song Demo Production,N/A,3,(1-4-4),Music,Music,"Music
721
+ Entrepreneurship
722
+ Track",None,
723
+ MP 4422,Sound Design,N/A,3,(1-4-4),Music,Music,"Music
724
+ Entrepreneurship
725
+ Track",None,
726
+ MS 1001,Major Instrument I,N/A,2,(1-2-3),Music,Music,"Music
727
+ Entrepreneurship
728
+ Track",None,
729
+ MS 1002,Major Instrument II,N/A,2,(1-2-3),Music,Music,"Music
730
+ Entrepreneurship
731
+ Track",None,
732
+ MS 1003,Major Instrument III,N/A,2,(1-2-3),Music,Music,"Music
733
+ Entrepreneurship
734
+ Track",None,
735
+ MS 1004,Major Instrument IV,N/A,2,(1-2-3),Music,Music,"Music
736
+ Entrepreneurship
737
+ Track",None,
738
+ MS 1300,Introduction to Musiccal Skills,N/A,1,(0-2-1),Music,Music,"Music
739
+ Entrepreneurship
740
+ Track",None,
741
+ MS 1301,Musical Skills I,N/A,2,(1-2-3),Music,Music,"Music
742
+ Entrepreneurship
743
+ Track",None,
744
+ MU 0201,Music Ensemble I,N/A,1,(0-2-1),Music,Music,"Music
745
+ Entrepreneurship
746
+ Track",None,
747
+ MU 1001,Music Appreciation,N/A,3,(3-0-6),Music,Music,"Music
748
+ Entrepreneurship
749
+ Track",None,
750
+ MU 1131,Pop Songwriting,N/A,3,(3-0-6),Music,Music,"Music
751
+ Entrepreneurship
752
+ Track",None,
753
+ MU 1231,History and Literature of Music,N/A,3,(3-0-6),Music,Music,"Music
754
+ Entrepreneurship
755
+ Track",None,
756
+ MU 1301,Music Fundamentals I,N/A,3,(2-3-6),Music,Music,"Music
757
+ Entrepreneurship
758
+ Track",None,
759
+ MU 1302,Music Fundamentals II,N/A,3,(2-3-6),Music,Music,"Music
760
+ Entrepreneurship
761
+ Track",None,
762
+ MU 1501,Chorus I,N/A,1,(0-2-1),Music,Music,"Music
763
+ Entrepreneurship
764
+ Track",None,
765
+ MU 2002,Bodyslam Studies,N/A,3,(3-0-6),Music,Music,"Music
766
+ Entrepreneurship
767
+ Track",None,
768
+ MU 2131,Basic Songwriting,N/A,2,(2-0-4),Music,Music,"Music
769
+ Entrepreneurship
770
+ Track",None,
771
+ MU 3551,Acting for Musicians,N/A,3,(1-4-4),Music,Music,"Music
772
+ Entrepreneurship
773
+ Track",None,
774
+ MU 3602,Music Therapy,N/A,3,(3-0-6),Music,Music,"Music
775
+ Entrepreneurship
776
+ Track",None,
777
+ MU 3603,"Music, Health, and Well Being",N/A,3,(3-0-6),Music,Music,"Music
778
+ Entrepreneurship
779
+ Track",None,
780
+ SRX 4400-4499,Selected Topics in Music and Entertainment Business,N/A,3,(3-0-6),Music,Music,"Music
781
+ Entrepreneurship
782
+ Track",None,
783
+ AR 2309,Architectural Design Methods,N/A,3,(3-0-6),Architecture,Architecture,Architecture Track,None,
784
+ AR 5401,Building Cost Estimation and Control,N/A,3,(3-0-6),Architecture,Architecture,Architecture Track,None,
785
+ AR 5404,Construction Management,N/A,3,(1-4-4),Architecture,Architecture,Architecture Track,None,
786
+ AR 5413,Project Management,N/A,3,(3-0-6),Architecture,Architecture,Architecture Track,None,
787
+ AR 5414,Energy Saving (Workshop in Germany),N/A,3,(3-0-6),Architecture,Architecture,Architecture Track,None,
788
+ AR 5417,Interior Design by Architects,N/A,3,(2-2-5),Architecture,Architecture,Architecture Track,None,
789
+ AR 5420,"Light, Perception and Culture",N/A,3,(3-0-6),Architecture,Architecture,Architecture Track,None,
790
+ AR 5425,Project Feasibility Study,N/A,3,(3-0-6),Architecture,Architecture,Architecture Track,None,
791
+ IND 3102,Design Research and Development,N/A,3,(3-0-6),Architecture,Architecture,Architecture Track,None,
792
+ IND 3308,Brand and Marketing in Interior Design,N/A,3,(2-2-5),Architecture,Architecture,Architecture Track,None,
793
+ IND 3302,Interior Material and Technology,N/A,3,(2-2-5),Architecture,Architecture,Architecture Track,None,
794
+ IND 4404,Home Textile and Soft Furnishing,N/A,3,(2-2-5),Architecture,Architecture,Architecture Track,None,
795
+ IND 4409,Branding Experience in Art and Design,N/A,3,(2-2-5),Architecture,Architecture,Architecture Track,None,
796
+ PD 2102,User Experience Design,N/A,3,(2-2-5),Design,Product Design,"Prodcut Design
797
+ Track",None,
798
+ PD 2304,Art and Design Appreciation,N/A,3,(3-0-6),Design,Product Design,"Prodcut Design
799
+ Track",None,
800
+ PD 3301,Material and Manufacturing Processes I,N/A,3,(2-2-5),Design,Product Design,"Prodcut Design
801
+ Track",None,
802
+ PD 3306,Marketing for Product Design.,N/A,3,(3-0-6),Design,Product Design,"Prodcut Design
803
+ Track",None,
804
+ PD 3407,Furniture Design,N/A,3,(2-2-5),Design,Product Design,"Prodcut Design
805
+ Track",None,
806
+ AD 3124,Strategic Brand Positioning,N/A,N/A,(3-0-6),Communication Arts,CCC,Advertising Track,None,
807
+ PD 1101,Visual Design,"Visual language, basic design elements, and design composition used in conveying desired messages of
808
+ 2 dimensional designs with emphasis on actual application through a series of corresponding projects.",3,(2-2-5),Design,Product Design,"Product Design
809
+ Track",None,
810
+ PD 1102,Introduction to Design Culture and Trend,"Contemporary issues in design within the context of creative culture that aims to promote an understanding
811
+ and appreciation of design workds through an investigation of the development, role, and influences of
812
+ designers of designers on our society.",3,(2-2-5),Design,Product Design,"Product Design
813
+ Track",None,
814
+ PD 3401,User Interface Design,"Principle of user interface design applicable in graphical enviromment command-line, as well as product
815
+ application in order to provide an understanding of how to communicate effectively with users through visual
816
+ attributes of products.",3,(2-2-5),Design,Product Design,"Product Design
817
+ Track",None,
818
+ PD 3402,Graphic and Packaging Design,"Packaging design that integrats marketing, graphical and three-dimensional design knowledge essential in
819
+ creating innovative packaging for different kinds of products ranging from food and beverage, beauty and
820
+ persoanl care to toys and home products with emphasis on product branding.",3,(2-2-5),Design,Product Design,"Product Design
821
+ Track",None,
822
+ PD 3404,Fashion and Textile Design,"Fashion design with emphasis on basic skills of fashion design practice such as draping, pattern cutting,
823
+ sewing, and fashion illustrating with comprehensive approach to conceptual design and interdisciplinary
824
+ thinking.",3,(2-2-5),Design,Product Design,"Product Design
825
+ Track",None,
826
+ PD 3405,Jewel Design,"Traditiional and contemporary jewelry design with emphasis on creativity, inoovation, experimentation, and
827
+ technical skills of material application.",3,(2-2-5),Design,Product Design,"Product Design
828
+ Track",None,
829
+ PD 3406,Toy and Play Design,"Toy and play design with emphasis on understanding of children development and psychology, design and
830
+ engineering of hard and soft toys, game design, model making, product materials and safety considerations.",3,(2-2-5),Design,Product Design,"Product Design
831
+ Track",None,
832
+ AD 3103,Advertising Creative Strategy,N/A,N/A,N/A,"Communication
833
+ Art",Communication Art,"Communication Art
834
+ Track",None,the same with CA 3110 Storytelling for Creative Communication
835
+ AD 3112,Brand Communication,N/A,N/A,N/A,"Communication
836
+ Art",CCC,"Communication Art
837
+ Track",None,the same with CA 3101 Srrategic Brand Communication
838
+ AD 3113,Customer Relationship Management,N/A,N/A,N/A,"Communication
839
+ Art",CCC,"Communication Art
840
+ Track",None,"the same with CA 3202 Customer Journey, Branded Experience and Relationship"
841
+ AD 3114,Interactive Advertising and Marketing Communication,N/A,3,(3-0-6),"Communication
842
+ Art",CCC,"Communication Art
843
+ Track",None,the same with AD 4201 Media Synergy and Content Design
844
+ AD 3106,Art Direction,N/A,3,(2-2-5),"Communication
845
+ Art",CCC,"Communication Art
846
+ Track",None,the same with AD 3283 Brand Identity Design 3
847
+ AD 3108,Copywriting (English),N/A,3,(2-2-5),"Communication
848
+ Art",CCC,"Communication Art
849
+ Track",None,the same with AD 3282 Aesthetic Taste for Creative Communication
850
+ CA 1025,Computer Graphic Design,N/A,3,(2-2-5),"Communication
851
+ Art",Communication Art,"Communication Art
852
+ Track",None,the same with CA 1103 Introduction to Computer Graphic Design
853
+ CA 2003,Presentation Technique,N/A,3,(2-2-5),"Communication
854
+ Art",Communication Art,"Communication Art
855
+ Track",None,the same with CA 2101 Presentation and Public Speaking
856
+ CA 3426,Innovation and Digital Technology,N/A,3,(3-0-6),"Communication
857
+ Art",Communication Art,"Communication Art
858
+ Track",None,the same with DM 3284 Innovative Digital Technology and business applications
859
+ DM 3424,Digital Content Creation,N/A,3,(3-0-6),"Communication
860
+ Art",Communication Art,"Communication Art
861
+ Track",None,the same with DM 3280 Digital Art in Data VIsualization
862
+ ART 30222,Thai Inspiration,N/A,3,(2-2-5),"Communication
863
+ Art",Communication Art,"Communication Art
864
+ Track",None,the same with AAD 3012 Thai Art and Culture
865
+ CGI 3234,Character Design,N/A,3,(1-1-4),"Communication
866
+ Art",Communication Art,"Communication Art
867
+ Track",None,the same with CDI 4213 Character and Props Design
868
+ PR 2203,Persuasive Communication,N/A,3,(3-0-6),"Communication
869
+ Art",Communication Art,"Communication Art
870
+ Track",None,the same with CA 2100 Psychology and Persuasion in Communication
871
+ PR 3218,Special Events Management for Public Relations,N/A,3,(2-2-5),"Communication
872
+ Art",Communication Art,"Communication Art
873
+ Track",None,the same with PR 3241 Experiential Event Management for Stakeholder Relations
874
+ PR 3228,Intercultural Communication,N/A,3,(3-0-6),"Communication
875
+ Art",Communication Art,"Communication Art
876
+ Track",None,the same with PR 4240 Intercultural and International Communication in Global Market
877
+ PR 3225,Personality Development and Personal Branding,N/A,3,(2-2-5),"Communication
878
+ Art",Communication Art,"Communication Art
879
+ Track",None,the same with PR 3282 Personal Branding and Image Management
880
+ CA 1023,Introduction to live event creation and management,N/A,3,(2-2-5),"Communication
881
+ Art",Communication Art,"Communication Art
882
+ Track",None,the same with CA 1104 Creative Production Management
883
+ LIVE 2103,Acting for Live Event,N/A,3,(1-1-4),"Communication
884
+ Art",Communication Art,"Communication Art
885
+ Track",None,the same with LV 3284 Acting for Camera and LIve Performance
886
+ ART 3924,Printmaking,N/A,3,(2-2-5),"Communication
887
+ Art",Communication Art,"Communication Art
888
+ Track",None,the same with GDC 4113 Printmaking
889
+ VIS 4920,Art Exposure,N/A,3,(3-0-6),"Communication
890
+ Art",Communication Art,"Communication Art
891
+ Track",None,the same with GDC 4110 History of Modern Art and Design
892
+ CA 3110,Storytelling for Creative Communication,N/A,N/A,N/A,"Communication
893
+ Art",Communication Art,"Communication Art
894
+ Track",None,the same with AD 3103 Advertising Creative Strategy
895
+ CA 3101,Srrategic Brand Communication,N/A,N/A,N/A,"Communication
896
+ Art",Communication Art,"Communication Art
897
+ Track",None,the same with AD 3112 Brand Communication
898
+ CA 3202,"Customer Journey, Branded Experience and Relationship",N/A,N/A,N/A,"Communication
899
+ Art",Communication Art,"Communication Art
900
+ Track",None,the same with AD 3113 Customer Relationship Management
901
+ AD 4201,Media Synergy and Content Design,N/A,3,(2-2-5),"Communication
902
+ Art",Communication Art,"Communication Art
903
+ Track",None,the same with AD 3114 Interactive Advertising and Marketing Communication
904
+ AD 3283,Brand Identity Design 3,N/A,3,(2-2-5),"Communication
905
+ Art",Communication Art,"Communication Art
906
+ Track",None,the same with AD 3106 Art Direction
907
+ AD 3282,Aesthetic Taste for Creative Communication,N/A,3,(2-2-5),"Communication
908
+ Art",Communication Art,"Communication Art
909
+ Track",None,the same with AD 3108 Copywriting (English)
910
+ CA 1103,Introduction to Computer Graphic Design,N/A,3,(2-2-5),"Communication
911
+ Art",Communication Art,"Communication Art
912
+ Track",None,the same with CA 1025 Computer Graphic Design
913
+ CA 2101,Presentation and Public Speaking,N/A,3,(2-2-5),"Communication
914
+ Art",Communication Art,"Communication Art
915
+ Track",None,the same with CA 2003 Presentation Technique
916
+ DM 3284,Innovative Digital Technology and business applications,N/A,3,(2-2-5),"Communication
917
+ Art",Communication Art,"Communication Art
918
+ Track",None,the same with CA 3426 Innovation and Digital Technology
919
+ DM 3280,Digital Art in Data VIsualization,N/A,3,(2-2-5),"Communication
920
+ Art",Communication Art,"Communication Art
921
+ Track",None,the same with DM 3424 Digital Content Creation
922
+ AAD 3012,Thai Art and Culture,N/A,3,(3-0-6),"Communication
923
+ Art",Communication Art,"Communication Art
924
+ Track",None,the same with ART 30222 Thai Inspiration
925
+ CDI 4213,Character and Props Design,N/A,3,(2-2-5),"Communication
926
+ Art",Communication Art,"Communication Art
927
+ Track",None,the same with CGI 3234 Character Design
928
+ CA 2100,Psychology and Persuasion in Communication,N/A,3,(3-0-6),"Communication
929
+ Art",Communication Art,"Communication Art
930
+ Track",None,the same with PR 2203 Persuasive Communication
931
+ PR 3241,Experiential Event Management for Stakeholder Relations,N/A,3,(2-2-5),"Communication
932
+ Art",Communication Art,"Communication Art
933
+ Track",None,the same with PR 3218 Special Events Management for Public Relations
934
+ PR 4240,Intercultural and International Communication in Global Market,N/A,3,(3-0-6),"Communication
935
+ Art",Communication Art,"Communication Art
936
+ Track",None,the same with PR 3228 Intercultural Communication
937
+ PR 3282,Personal Branding and Image Management,N/A,3,(2-2-5),"Communication
938
+ Art",Communication Art,"Communication Art
939
+ Track",None,the same with PR 3225 Personality Development and Personal Branding
940
+ CA 1104,Creative Production Management,N/A,3,(2-2-5),"Communication
941
+ Art",Communication Art,"Communication Art
942
+ Track",None,the same with CA 1023 Introduction to live event creation and management
943
+ LV 3284,Acting for Camera and LIve Performance,N/A,3,(2-2-5),"Communication
944
+ Art",Communication Art,"Communication Art
945
+ Track",None,the same with LIVE 2103 Acting for Live Event
946
+ GDC 4113,Printmaking,N/A,3,(2-2-5),"Communication
947
+ Art",Communication Art,"Communication Art
948
+ Track",None,the same with ART 3924 Printmaking
949
+ GDC 4110,History of Modern Art and Design,N/A,3,(3-0-6),"Communication
950
+ Art",Communication Art,"Communication Art
951
+ Track",None,the same with VIS 4920 Art Exposure
952
+ CA 1025,Computer Graphic Design,N/A,3,(2-2-5),"Communication
953
+ Art",Communication Art,Digital Media Communication Track,,
954
+ DM 2403,DIgital Medita Production and Management,N/A,3,(2-2-5),"Communication
955
+ Art",Communication Art,Digital Media Communication Track,,
956
+ DM 3426,Innovation and Digital Technology,N/A,3,(3-0-6),"Communication
957
+ Art",Communication Art,Digital Media Communication Track,,
958
+ DM 3424,DIgital Content Creation,N/A,3,(3-0-6),"Communication
959
+ Art",Communication Art,Digital Media Communication Track,,
960
+ ART 3022,Thai Inspiration,N/A,3,(2-2-5),"Communication
961
+ Art",Communication Art,Computer Generated Imagery Track,,
962
+ CGI 3234,Character Design,N/A,3,(1-1-4),"Communication
963
+ Art",Communication Art,Computer Generated Imagery Track,,
964
+ PR 2203,Persuasive Communication,N/A,3,(3-0-6),"Communication
965
+ Art",Communication Art,Public Relation Track,,
966
+ PR 3230,Digital Public Relations,N/A,3,(2-2-5),"Communication
967
+ Art",Communication Art,Public Relation Track,,
968
+ PR 3218,Special Public Relations,N/A,3,(2-2-5),"Communication
969
+ Art",Communication Art,Public Relation Track,,
970
+ PR 3228,Intercultural Communication,N/A,3,(3-0-6),"Communication
971
+ Art",Communication Art,Public Relation Track,,
972
+ PR 3225,Personality Development and Personal Branding,N/A,3,(2-2-5),"Communication
973
+ Art",Communication Art,Public Relation Track,,
974
+ CA 1023,Introduction to live event creation and management,N/A,3,(2-2-5),"Communication
975
+ Art",Communication Art,Live Event Creation and Management track,,
976
+ LIVE 1023,Acting for Live Events,N/A,3,(1-1-4),"Communication
977
+ Art",Communication Art,Live Event Creation and Management track,,
978
+ ART 3924,Printmaking,N/A,3,(2-2-5),"Communication
979
+ Art",Communication Art,Visual Communication design track,,
980
+ ART 3925,Creative Photography,N/A,3,(2-2-5),"Communication
981
+ Art",Communication Art,Visual Communication design track,,
982
+ VIS 4124,Book Binding,N/A,3,(2-2-5),"Communication
983
+ Art",Communication Art,Visual Communication design track,,
984
+ VIS 4920,Art Exposure,N/A,3,(3-0-6),"Communication
985
+ Art",Communication Art,Visual Communication design track,,
986
+ INX 4102,IT Project Management,N/A,3,(3-0-6),IT / CS,VMES,Innovative Technology track,,
987
+ INX 4103,Web Application Development,N/A,3,(3-0-6),IT / CS,VMES,Innovative Technology track,,
988
+ INX 4104,iOS Application Development,N/A,3,(3-0-6),IT / CS,VMES,Innovative Technology track,,
989
+ INX 4105,Android Application Development,N/A,3,(3-0-6),IT / CS,VMES,Innovative Technology track,,
990
+ INX 4106,Internet of Things,N/A,3,(3-0-6),IT / CS,VMES,Innovative Technology track,,
991
+ INX 4201,Data Mining,N/A,3,(3-0-6),IT / CS,VMES,Innovative Technology track,,
992
+ INX 4202,Machine Learning,N/A,3,(3-0-6),IT / CS,VMES,Innovative Technology track,,
993
+ INX 4203,Big Data Analytics,N/A,3,(3-0-6),IT / CS,VMES,Innovative Technology track,,
994
+ INX 4204,Decision Support and Recommender Systems,N/A,3,(3-0-6),IT / CS,VMES,Innovative Technology track,,
995
+ INX 4205,Intelligent System Development,N/A,3,(3-0-6),IT / CS,VMES,Innovative Technology track,,
996
+ INX 4301,Sales and Distribution Management System,N/A,3,(3-0-6),IT / CS,VMES,Innovative Technology track,,
997
+ INX 4302,Supply Chain Management System,N/A,3,(3-0-6),IT / CS,VMES,Innovative Technology track,,
998
+ INX 4303,Finance and Accounting Management System,N/A,3,(3-0-6),IT / CS,VMES,Innovative Technology track,,
999
+ INX 4304,Customer Relationship Management System,N/A,3,(3-0-6),IT / CS,VMES,Innovative Technology track,,
1000
+ INX 4305,FinTech and Blockchain Technology,N/A,3,(3-0-6),IT / CS,VMES,Innovative Technology track,,
1001
+ INX 4400-4499,Selected Topics,N/A,N/A,N/A,IT / CS,VMES,Innovative Technology track,,
1002
+ DEX 3001,"Selected topics in Design, Creativity and Communication Concepts",N/A,3,(3-0-6),Design,N/A,"Design, Creativity and Communication track",,
1003
+ DEX 3002,"Selected topics in Design, Creativity and Communication Practices 1",N/A,3,(2-2-5),Design,N/A,"Design, Creativity and Communication track",,
1004
+ DEX 3003,"Selected topics in Design, Creativity and Communication Practices 2",N/A,3,(1-1-4),Design,N/A,"Design, Creativity and Communication track",,
1005
+ BEC 1302,Basic Probability Theory,N/A,3,(3-0-6),Business,MSME,Economics Track,,
1006
+ BEC 1401,Thinking as an Economist,N/A,3,(3-0-6),Business,MSME,Economics Track,,
1007
+ BBA 1002,Microeconomics,N/A,3,(3-0-6),Business,BBA,Business Elective Track,,
1008
+ BBA 2001,Hman Behavior,N/A,3,(3-0-6),Business,BBA,Business Elective Track,,
1009
+ BBA 2002,Economic and Financial,N/A,3,(3-0-6),Business,BBA,Business Elective Track,,
1010
+ BBA 1104,Fundamentals of Marketing,N/A,3,(3-0-6),Business,BBA,Business Elective Track,,
1011
+ BBA 2101,Fundamentals fo Managerial Accounting,N/A,3,(3-0-6),Business,BBA,Business Elective Track,,
1012
+ BBA 2102,Organization and Management,N/A,3,(3-0-6),Business,BBA,Business Elective Track,,
1013
+ BBA 2103,Corporate Finance,N/A,3,(3-0-6),Business,BBA,Business Elective Track,,
1014
+ BDM 3201,Digital Business,N/A,3,(2-2-5),Business,Digital Business Management,Business Elective Track,,
1015
+ BDM 3203,Cybersecurity,N/A,3,(2-2-5),Business,Digital Business Management,Business Elective Track,,
1016
+ BDM 3205,"Information System Strategy, Management, and Acquisition",N/A,3,(2-2-5),Business,Digital Business Management,Business Elective Track,,
1017
+ BDM 3409,Game Design and Development,N/A,3,(2-2-5),Business,Digital Business Management,Business Elective Track,,
1018
+ BDM 3481,Digital Business Internship 1,N/A,3,(0-30-0),Business,Digital Business Management,Business Elective Track,,
1019
+ BDM 3482,Digital Business Internship 2,N/A,3,(0-30-0),Business,Digital Business Management,Business Elective Track,,
1020
+ BDM 4400-4409,Selected topics in Digital Business Management,N/A,3,(2-2-5),Business,Digital Business Management,Business Elective Track,,
1021
+ BEN 3407,Entrepreneurial Finance and Accounting,N/A,3,(3-0-6),Business,BEN,Business Elective Track,,
1022
+ BEN 3410,Entrepreneurship Practicum 1,N/A,3,(3-0-6),Business,BEN,Business Elective Track,,
1023
+ BEN 3411,Entrepreneurship Practicum 2,N/A,3,(3-0-6),Business,BEN,Business Elective Track,,
1024
+ BEN 4212,Growth Mindset and Ststaining Organization,N/A,3,(3-0-6),Business,BEN,Business Elective Track,,
1025
+ BEN 4315,Family Business Management,N/A,3,(3-0-6),Business,BEN,Business Elective Track,,
1026
+ BEN 4316,Social Entrepreneurship,N/A,3,(3-0-6),Business,BEN,Business Elective Track,,
1027
+ BFN 3211,Investment Strategy and Applied Valuation,N/A,3,(3-0-6),Business,Finance,Business Elective Track,,
1028
+ BFN 3224,Deriavtives and Risk Management,N/A,3,(3-0-6),Business,Finance,Business Elective Track,,
1029
+ BFN 4314,Personal Wealth Management and Financial Planning,N/A,3,(3-0-6),Business,Finance,Business Elective Track,,
1030
+ BIB 3201,Cross Cultural Human Resource Management,N/A,3,(3-0-6),Business,IBM,Business Elective Track,,
1031
+ BSC 3301,Real Estate Finance,N/A,3,(3-0-6),Business,Supply Chain,Business Elective Track,,
1032
+ BSC 4302,Procurement and Supply Management,N/A,3,(3-0-6),Business,Supply Chain,Business Elective Track,,
1033
+ GE 1204,Physical Education,N/A,1,(1-0-2),General eduction,General eduction,Business Elective Track,,
1034
+ GE 1302,Ecology and Sustainablility,N/A,3,(3-0-6),General eduction,General eduction,Business Elective Track,,
1035
+ GE 2102,Human Heritage and Globalization,N/A,3,(3-0-6),General eduction,General eduction,Business Elective Track,,
1036
+ GE 2202,Ehtics,N/A,3,(3-0-6),General eduction,General eduction,Business Elective Track,,
1037
+ SA 1001,Business Statistics 1,N/A,2,(2-0-4),Statistics,Statistics,Business Elective Track,,
1038
+ SA1002,Business Statistics 2,N/A,2,(2-0-4),Statistics,Statistics,Business Elective Track,,
1039
+ MA 1200,Mathemataics for Business,N/A,1,(1-0-2),Maths,Maths,Business Elective Track,,
1040
+ ENX 3410-3419,Selected topics in Law,N/A,3,(3-0-6),Law,Law,Business Elective Track,,
1041
+ ENX 3420-3429,Selected Topic in Health and Wellness,N/A,3,(3-0-6),Health and Wellness,Health and Wellness,Business Elective Track,,
1042
+ ENX 3430-3439,Selected Topic in Biotechnology,N/A,3,(3-0-6),Biotechnology,Biotechnology,Business Elective Track,,
1043
+ ENX 3440-3449,Selected Topic in Digital Technology,N/A,3,(3-0-6),Digital Technology,Digital Technology,Business Elective Track,,
1044
+ ENX 3450-3459,Selected Topic in Engineering Technology,N/A,3,(3-0-6),Engineerign Technology,Engineerign Technology,Business Elective Track,,
1045
+ ENX 3460-3469,Selected Topic in Design,N/A,3,(3-0-6),Design,Design,Business Elective Track,,
1046
+ ENX 3470-3479,Selected Topic in Creative Arts,N/A,3,(3-0-6),Creative Ares,Creative Ares,Business Elective Track,,
1047
+ ENX 3480-3489,Selected Topic in Language and Culture,N/A,3,(3-0-6),Language and Culture,Language and Culture,Business Elective Track,,
ddi_courses_index.ann ADDED
Binary file (495 kB). View file