1. The document provides submission guidelines for an assignment on Object Oriented Programming Lab (EE 694C) at Kalyan Government Engineering College.
2. It specifies that assignments must be submitted in a channel file with clear cover, within the due date to avoid marks being deducted for late submission.
3. The cover page, contents page, and inner sheets must follow specific formatting guidelines, including page numbers, fonts, and separating problem statements from source code using different ink colors.
1 of 5
Download to read offline
More Related Content
Lab assignment format
1. KALYANI GOVERNMENT ENGINEERING COLLEGE
DEPARTMENT OF ELECTRICAL ENGINEERING
Assignment on
Object Oriented Programming LAB (EE 694C)
Submitted By
Name:__________________________________________________
University Roll:_______________Class Roll:_______Semester:____
Assignment No:__________________________________________
Due Date:____________________Submission Date:_____________
Session: 2012-2013
3. KALYANI GOVERNMENT ENGINEERING COLLEGE
DEPARTMENT OF ELECTRICAL ENGINEERING
Assignment On: OOP LAB(EE 694C) Page No.:____
Submission Guidelines :-
All LAB assignments must be handed in following these guidelines for OOP course (EE 604C).
1. Assignments must be submitted in a Channel File with a CLEAR cover.
2. All lab Assignments must be handed into your instructor in a Channel File within due date.
3. Marks will be deducted for Late Submission.
4. Cover page, Contents page and Inner sheet (see last page for Sample Inner Sheet) must be printed.
5. Page numbers should appear at the top of all Inner sheets.
6. Due dates will be set by the instructor and must appear at the cover page.
7. Printed Assignments are preferred than hand written assignments.
8. For Printed Assignments font must Times New Roman with font size: 12 (for problem statement) and 10
(for source code). Font Color: Black.
9. In hand written assignments Problem Statement must be BLACK ink and the Source Code in BLUE ink.
See sample next page.
10. Each Source Code must follow its output with a heading OUTPUT in Black ink. See sample next page.
11. Multiple Problems can appear in a single page with proper line spacing.
12. Lab grades will be based on completeness, correctness and neatness of the written report as well as the
lab skills required to complete the operations of the lab.
4. KALYANI GOVERNMENT ENGINEERING COLLEGE
DEPARTMENT OF ELECTRICAL ENGINEERING
Assignment On: OOP LAB(EE 694C) Page No.:____
Problem Statement 1:
Write a Program in Java to print Hello, World.
Source Code:
class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World");
}
}
Output:
Hello, World
5. KALYANI GOVERNMENT ENGINEERING COLLEGE
DEPARTMENT OF ELECTRICAL ENGINEERING
Assignment On: OOP LAB (EE 694C) Page No.:____