Category: B.Sc. CSIT

Home B.Sc. CSIT
Post

GUI Controls with Java Swing

Text Fields The object of a JTextField class is a text component that allows the editing of a single line text. It inherits the JTextComponent class. JTextField is a part of javax.swing package. The class JTextField is a component that allows editing of a single line of text. JTextField inherits the JTextComponent class and uses...

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...