Category: 7th Semester

Home B.Sc. CSIT 7th Semester
Post

Principles of Management Syllabus |Bsc.CSIT Seventh Semester

Full Marks: 80 + 20 Course No: MGT411  Pass Marks: 32 + 8 Nature of the Course: Theory  Credit Hrs: 3 Semester: VII Course Description:  This course contains The Nature of Organizations, Introduction to Management, Evolution of Management Thought, Environmental Context of Management, Planning and Decision Making, Organizing Function, Leadership, Motivation, Communication, Control and Quality...

Post

Introduction To Java Awt, Swing and Applet

  Concept of Awt Java AWT (Abstract Window Toolkit) is an API to develop Graphical User Interface (GUI) or windows-based applications in Java. Java AWT components are platform-dependent i.e. components are displayed according to the view of operating system. AWT is heavy weight i.e. its components are using the resources of underlying operating system (OS)....

Post

Layout Management in Java

Introduction Layout manager is an interface which implements the classes of layout manager that controls the size and position of the components in the container. The layout manager object controls the layout of every container object A layout manager uses an algorithm to automatically arrange controls within a window. They’re used to arrange elements in...

Post

File Handling in JAVA

Introduction File is a location that is used to store the information. File handling in java is defined as reading and writing data in the file. Java I/O is used to  process the input and produce the output based on the output. Java uses the java.io packages which contains all the input  and output operation.Java...

Post

Introduction to concurrency and threading in Java

Concurrency Concurrency is the ability to run several programs or several parts of a program in parallel. If a time consuming task can be performed asynchronously or in parallel, this improves the throughput and the interactivity of the program. In java concurrency is also referred to as multithreading. Multithreading Multithreading in Java is a process...