際際滷

際際滷Share a Scribd company logo
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
CONTENTS
Sl.
No
.
Problem
No.
Problem Statement
Page
No.
Instructor's Remarks
and Signature
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.
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
KALYANI GOVERNMENT ENGINEERING COLLEGE
DEPARTMENT OF ELECTRICAL ENGINEERING
Assignment On: OOP LAB (EE 694C) Page No.:____

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