






Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Human Resource is an integral part of Management Science. In these Lecture Slides of HRM, following key concepts are discussed : Implementation Support, Programming Tools, Services, Programmers, Windowing Systems, Usersystem, Activity, Application, Control, User Perception
Typology: Slides
1 / 11
This page cannot be seen from the preview
Don't miss anything!







Device independence
Resource sharing
Programming the application - 1
repeat read-event(myevent) case myevent.type type_1: do type_1 processing type_2: do type_2 processing ... type_n: do type_n processing end case end repeat
Programming the application - 1
void main(String[] args) { Menu menu = new Menu(); menu.setOption(“Save”); menu.setOption(“Quit”); menu.setAction(“Save”,mySave) menu.setAction(“Quit”,myQuit) ... }
int mySave(Event e) { // save the current file }
int myQuit(Event e) { // close down }