[PDF] SUMMER– 18 EXAMINATION Subject Name: Java Programming





Previous PDF Next PDF



SUMMER– 18 EXAMINATION Subject Name: Java Programming

In some cases the assumed constant values may vary and there may be some difference in the candidate's answers and model answer. 6) In case of some questions 



WINTER– 18 EXAMINATION Subject Name: Java Programming

Model Answer. Subject Code: 17515. Important Instructions to examiners: 1) The answers should be examined by key words and not as word-to-word as given in the 



MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION

MODEL ANSWER. SUMMER – 2018 EXAMINATION. Subject: Object Oriented Programming. Subject Code: Page 4 / 29. 17432 void main(). { time t(243



MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION

SUMMER – 2019 EXAMINATION. MODEL ANSWER. Subject: Java Programming. Subject Code: Page 23 / 23. 22412 are performed in this method. start(): The start() method 



Java Programming Model Answer Subject Code: 22412 Attempt any

Winter – 19 EXAMINATION. Subject Name: Java Programming. Model Answer. Subject Code: 22412. Important Instructions to examiners: 1) The answers should be 



MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION

WINTER – 2018 EXAMINATION. MODEL ANSWER. Subject: Object Oriented Programming with C++. Subject Code: Page 3 / 25. 22316 f). Ans. Give output for following code 





WINTER– 18 EXAMINATION Subject Name: Database Management

In some cases the assumed constant values may vary and there may be some difference in the candidate's answers and model answer. programming. 3. It allows ...



Model Question Papers

28 Nov 2018 The project starts on Monday 16th November 2018. Assume 5 days ... Analyse thermal systems using dynamic programming method. Model Question Paper.



STE(17624) Summer 2017 Model Answer Paper(1).pdf

7) For programming language papers credit may be given to any other program based on equivalent concept. Q. No . Sub. Q. N.. Answer. Marking. Scheme. 1. (A).



SUMMER– 18 EXAMINATION Subject Name: Java Programming

SUMMER– 18 EXAMINATION. Subject Name: Java Programming. Model Answer. Subject Code: Page 1 of 30. 17515. Important Instructions to examiners: 1) The answers 



Java Programming Model Answer Subject Code: 17515

WINTER– 18 EXAMINATION. Subject Name: Java Programming 2) The model answer and the answer written by candidate may vary but the examiner may try to.



Summer – 15 EXAMINATION Subject Code: 17515 Model Answer

2) The model answer and the answer written by candidate may vary but the examiner may try Byte code: Bytecode is the compiled format for Java programs.



SUMMER– 18 EXAMINATION Subject Name: Operating System

2) The model answer and the answer written by candidate may vary but the examiner 7) For programming language papers credit may be given to any other ...



Embedded Systems Model Answer Subject Code: Important

6) In case of some questions credit may be given by judgement on part of examiner of relevant answer based on candidate's understanding. 7) For programming 



Page1 MODEL ANSWER SUMMER– 18 EXAMINATION Subject

For developing embedded software for medium scale embedded systems the main programming tools are C



Question Bank (I scheme) Name of Subject: Java Programming

Question Bank (I scheme). Name of Subject: Java Programming (JPR). Unit Test: I. Subject Code: 22412. Course: CM/IF4I. Semester: IV.



17432 Model Answer Subject Name: Object Oriented Programming

(Autonomous). (ISO/IEC - 27001 - 2005 Certified). SUMMER – 14 EXAMINATION. Subject Code: 17432. Model Answer. Subject Name: Object Oriented. Programming 



Model Question Papers

11 ???? 2018 Programs. Page No. 1. Civil Engineering. CE1-CE14. 2. Computer Science and Engineering. CSE1-CSE29. 3.



Summer 2013 Theory Paper 12 Mark Scheme

Link To Code: https://www.keepkoding.com/java/isc-theory-programs/isc-2013-theory-question-12-solved/ Like And Subscribe. Computer ISC 2013 Theory Paper 



[PDF] Java Programming Model Answer Subject Code - WordPresscom

SUMMER– 18 EXAMINATION Subject Name: Java Programming Model Answer Subject Code: Page 1 of 30 17515 Important Instructions to examiners: 1) The answers 



msbte model answer paper pdf for- 22412

Msbte model answer paper page is intended to provide the students with the solution to the question papers It is very important source of study because 



17515-2018-Winter-model-answer-paperpdf -msbte-study-resources

17515-2018-Winter-model-answer-paper pdf provides the msbte model answer paper pdf format for the use of students Msbte model answer paper format shows the 



[PDF] Java Programming Model Answer Subject Code: 17515

Important Instructions to examiners: 1) The answers should be examined by key words and not as word-to-word as given in the model answer scheme



22412 Model Answer Paper & Question Paper - questionkakacom

Download all the model answer papers question papers and syllabus for the subject “Basic Mathematics” 22412 Model Answer Papers (Java Programming)



[PDF] Java Programming Model Answer Subject Code: 22412

Winter – 19 EXAMINATION Subject Name: Java Programming Model Answer Subject Code: 22412 Important Instructions to examiners: 1) The answers should be 



22412 Java Programming Model Answer Paper - msbte news

27 déc 2021 · In this article Java Programming Model Answer Paper is what we The question papers are provided of the year 2018 2019 both summer and 



17515 model answer paper & Diploma model question paper 2020

26 déc 2020 · 17515 is a paper code of Java programming which is a subject of 5th semester in Diploma in It engineering with this msbte model question 



22412 (Java Programming) Question Papers - MSBTE Model Answer

Download all 22412 – Java Programming – Model Answer Paper Question Paper Syllabus 22412 (Java Programming) Model Answer Papers



MSBTE Model Answer Paper (Summer & Winter) 2022 2021 2020

The 'Model Question Paper / Answer Paper' will be displayed in a PDF format Candidates can download from therein Check – MSBTE Result MSBTE Question Answer 

:
SUMMER– 18 EXAMINATION Subject Name: Java Programming

MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION

(Autonomous) (ISO/IEC - 27001 - 2013 Certified)

SUMMER- 18 EXAMINATION

Subject Name: Java Programming Model Answer Subject Code:

Page 1 of 30

17515

Important Instructions to examiners:

1) The answers should be examined by key words and not as word-to-word as given in the model answer

scheme.

2) The model answer and the answer written by candidate may vary but the examiner may try to assess the

understanding level of the candidate.

3) The language errors such as grammatical, spelling errors should not be given more Importance (Not

applicable for subject English and Communication Skills.

4) While assessing figures, examiner may give credit for principal components indicated in the figure. The

figures drawn by candidate and model answer may vary. The examiner may give credit for any equivalent

figure drawn.

5) Credits may be given step wise for numerical problems. In some cases, the assumed constant values

wers and model answer.

6) In case of some questions credit may be given by judgement on part of examiner of relevant answer

7) For programming language papers, credit may be given to any other program based on equivalent

concept. No. Sub

Answers Marking

Scheme

1. (A) Attempt any THREE of the following: 12Marks

(a) Define throws & finally statements with its syntax and example. 4M Ans: 1) throws statement : throws keyword is used to declare that a method may throw one or some exceptions. The caller must catch the exceptions.

Example :

import java.io.*; class file1 public static void main(String[] args) throws IOException

FileWriter file = new FileWriter("Data1.txt");

file.write("These are contents of my file"); file.close();

2) finally statement : finally block is a block that is used to execute important code

such as closing connection, stream etc. Java finally block is always executed whether exception is handled or not. Java finally block follows try or catch block.

Example :

import java.io.*; (Each statement: 2 marks)

MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION

(Autonomous) (ISO/IEC - 27001 - 2013 Certified)

SUMMER- 18 EXAMINATION

Subject Name: Java Programming Model Answer Subject Code:

Page 2 of 30

17515
class file1 public static void main(String[] args) try FileWriter file = new FileWriter("c:\\Data1.txt"); file.write("Hello"); catch(IOException) finally file.close(); (b) Which are the restrictions present for static declared methods? 4M

Ans: Restrictions on static variables :

1. Static variables become class variables.

2. They get initialized only once in the entire life time of the program.

3. They cannot be called by the object of the class in which they are defied.

4. A static method can operate only on static variables without objects otherwise non

static variables cannot be handled by a static method without using their respective class object. (Each point:

1mark)

(c) Explain any four features of java programming. 4M Ans: 1. Compile & Interpreted: Java is a two staged system. It combines both approaches. First java compiler translates source code into byte code instruction. Byte codes are not machine instructions. In the second stage java interpreter generates machine code that can be directly executed by machine. Thus java is both compile and interpreted language.

2. Platform independent and portable: Java programs are portable i.e. it can be easily

moved from one computer system to another. Changes in OS, Processor, system resources force any change in java programs. Java compiler generates byte code instructions that can be implemented on any machine as well as the size of primitive data type is machine independent.

3. Object Oriented: Almost everything in java is in the form of object. All program

quotesdbs_dbs7.pdfusesText_5
[PDF] java programming model answer paper summer 2019

[PDF] java programming notes pdf download

[PDF] java programming questions and answers pdf

[PDF] java programming syllabus pdf

[PDF] java programs on arrays and strings

[PDF] java programs on strings and arrays

[PDF] java programs to practice

[PDF] java projects to practice

[PDF] java questions asked in interview

[PDF] java ring ppt presentation download

[PDF] java se 11 books

[PDF] java se 11 pdf download

[PDF] java send http get request example

[PDF] java series program examples

[PDF] java sort(comparator)