SlideShare uma empresa Scribd logo
1 de 10
Baixar para ler offline
Certified Core Java Developer
VS-1036
Certified Core Java Developer
www.vskills.in
CertifiedCertifiedCertifiedCertified Core Java DeveloperCore Java DeveloperCore Java DeveloperCore Java Developer
Certification CodeCertification CodeCertification CodeCertification Code VS-1036
Core Java Developer Certification helps demonstrate an individual's overall
comprehension and expertise of Java programming language. VSkills Core Java Developer
Certification holders have more than a working familiarity with Java programs—they are
technically skilled to take advantage of the breadth of features efficiently and effectively.
Java is an open source and platform independent programming language whose API's are
easily accessible. It is widely used for client-server application, enterprise applications,
dynamic web applications and web-services development and is in great demand in
software companies, MNCs, Corporates and Government organizations.
Why shouldWhy shouldWhy shouldWhy should one take this certification?one take this certification?one take this certification?one take this certification?
This Course is intended for professionals and graduates wanting to excel in their chosen
areas. It is also well suited for those who are already working and would like to take
certification for further career progression.
VSkills Core Java Developer Certification helps candidate differentiate in today's
competitive job market, broaden their employment opportunities by displaying their
advanced skills, and result in higher earning potential. VSkills Core Java Developer
Certification can also lead to increased job satisfaction. Certified individuals have increased
competency, productivity, and credibility with their employers, co-workers, and clients.
For employers, the certification provides skill-verification tools that not only help assess a
person's skills in using Java programming language but also the ability to quickly complete
on-the-job tasks across multiple programs.
Who will benefit from taking this certification?Who will benefit from taking this certification?Who will benefit from taking this certification?Who will benefit from taking this certification?
The certification benefits programmers, developer, software professionals and students
who want to present themselves as truly knowledgeable and differentiate themselves in a
competitive job market. It also helps hiring managers make job placement decisions.
Managers who hire candidates with a VSkills Core Java Developer Certification are helping
minimize training costs.
Test Details:Test Details:Test Details:Test Details:
• Duration:Duration:Duration:Duration: 60 minutes
• No. of questions:No. of questions:No. of questions:No. of questions: 50
Certified Core Java Developer
www.vskills.in
• Maximum marks:Maximum marks:Maximum marks:Maximum marks: 50, Passing marks: 25 (50%); There is no negative marking in
this module.
Fee Structure:Fee Structure:Fee Structure:Fee Structure:
Rs. 4,000/- (Includes all taxes)
CCCCompanies that hireompanies that hireompanies that hireompanies that hire VskillsVskillsVskillsVskills CertifiedCertifiedCertifiedCertified Core Java DeveloperCore Java DeveloperCore Java DeveloperCore Java Developer
Core Java Developers are in great demand. There are a lot of boutique niche companies,
specializing in Integration Services, who are constantly hiring knowledgeable professionals.
International job consultants also are constantly looking for Core Java Developer for
overseas jobs. The skill is also greatly in demand in government projects.
Certified Core Java Developer
www.vskills.in
Table of Content
1.1.1.1. Language FundamentalsLanguage FundamentalsLanguage FundamentalsLanguage Fundamentals
1.1. Basics of Java
1.2. Garbage Collections
1.3. Declarations and Access Control
1.4. Flow Control
2.2.2.2. Object Oriented ProgrammingObject Oriented ProgrammingObject Oriented ProgrammingObject Oriented Programming
2.1.Inheritance
2.2.Encapsulation
2.3.Polymorphism
3.3.3.3. Exception HandlingException HandlingException HandlingException Handling
3.1.Exceptions
3.2.Errors
3.3.Try---catch---finally blocks
3.4.Throw and throws
4.4.4.4. Input OutputInput OutputInput OutputInput Output
4.1.File I/O
4.2.BufferedReader
4.3.Streams and Bytes Data
5.5.5.5. Java.langJava.langJava.langJava.lang
5.1.Strings,StringBuffer
6.6.6.6. CollectionsCollectionsCollectionsCollections
6.1.Collections Interface
6.2.Vectors
6.3.ArrayList
6.4.Maps
6.5.Sets
7.7.7.7. ThreadsThreadsThreadsThreads
7.1.Basics of threads
7.2.Multithreading
7.3.AWT and Swings
8.8.8.8. AWT and Swings PackageAWT and Swings PackageAWT and Swings PackageAWT and Swings Package
8.1.Frames
8.2.Panels
Certified Core Java Developer
www.vskills.in
8.3.Frames Layout
9.9.9.9. JDBCJDBCJDBCJDBC
9.1.Connection to Database
9.2.Types of Statements
9.3.Types of Drivers
Certified Core Java Developer
www.vskills.in
Course OutCourse OutCourse OutCourse Outlinelinelineline
1.1.1.1. Language FundamentalsLanguage FundamentalsLanguage FundamentalsLanguage Fundamentals
Explains Basics of Java programming language
Explains methods for garbage collection in Java
Explains the method of Implementing access control and declarations
Explains various flow control techniques
2.2.2.2. Object Oriented ProgramObject Oriented ProgramObject Oriented ProgramObject Oriented Programmingmingmingming
Explains various techniques for inheritance in Java
Explains the method of implementing encapsulation
Methods for polymorphism
3.3.3.3. Exception HandlingException HandlingException HandlingException Handling
Elaborates the basics of exceptions
Explains different types of errors
Explains the procedure of using try-catch-finally blocks
Explains the procedure of implementing throw and throws
4.4.4.4. Input OutputInput OutputInput OutputInput Output
Explains basics of file I/O procedure
Explains the uses of bufferedreader
Illustrates the procedure of implementing streams and bytes data
5.5.5.5. Java.langJava.langJava.langJava.lang
Explains the procedure of using the Strings,StringBuffer
6.6.6.6. CollectionsCollectionsCollectionsCollections
Illustrates the concepts of collections interface
Illustrates the uses of vectors
Explains the procedure of implementing array list
Illustrates various methods of using maps
Explains the procedure of creating and using sets
Certified Core Java Developer
www.vskills.in
7.7.7.7. ThreadsThreadsThreadsThreads
Explains the basic principles and concepts of threads
Explains the concepts and procedure of implementing multithreading
8.8.8.8. AWT and SwingsAWT and SwingsAWT and SwingsAWT and Swings
Explains the concepts of AWT and swings package
Illustrates the uses and functions of Frames
Explains the procedure of implementing panels
Explains the procedure and techniques of using frames layout
9.9.9.9. JDBCJDBCJDBCJDBC
Explains the procedure and techniques to connect a database
Explains the techniques and procedure to implement various types of statements
Illustrates uses of different types of drivers
Certified Core Java Developer
www.vskills.in
Sample QuestionsSample QuestionsSample QuestionsSample Questions
1. Which two create an instance of an array? (Choose two.)1. Which two create an instance of an array? (Choose two.)1. Which two create an instance of an array? (Choose two.)1. Which two create an instance of an array? (Choose two.)
A. int[ ] ia = new int[15];
B. float fa = new float[20];
C. char[ ] ca = "Some String";
D. Object oa = new float[20];
2.2.2.2. Given below is a programme,
public class ArrayTest {
public static void main(String[ ] args){
float f1[ ], f[ ];
f1 = new float[10];
f = f1;
System.out.println("f[0] = " + f[0]);
} }
What is the result?What is the result?What is the result?What is the result?
A. It prints f2[0] = 0.0
B. It prints f2[0] = NaN
C. An error at ‘f2 = f1;’ causes compile to fail.
D. An error at ‘System.out.println("f2[0] = " + f2[0]);’ causes compile to fail.
3. Which two cause a compiler error? (Choose two.)3. Which two cause a compiler error? (Choose two.)3. Which two cause a compiler error? (Choose two.)3. Which two cause a compiler error? (Choose two.)
A. int[ ] scores = {3, 5, 7};
B. int [ ][ ] scores = {2,7,6}, {9,3,45};
C. String cats[ ] = {"Fluffy", "Spot", "Zeus"};
D. boolean results[ ] = new boolean [3] {true, false, true};
4. Which three form part of correct array declarations? (Choose three.)4. Which three form part of correct array declarations? (Choose three.)4. Which three form part of correct array declarations? (Choose three.)4. Which three form part of correct array declarations? (Choose three.)
A. public int a [ ]
B. static int [ ] a
C. public [ ] int a
D. public final int [ ] a
Certified Core Java Developer
www.vskills.in
5. Which two cause a compiler error? (Choose two.)5. Which two cause a compiler error? (Choose two.)5. Which two cause a compiler error? (Choose two.)5. Which two cause a compiler error? (Choose two.)
A. float[ ] f = new float(3);
B. float f2[ ] = new float[ ];
C. float[ ]f1 = new float[3];
D. float f3[ ] = new float[3];
Answers: 1 (A, D), 2 (A), 3 (B,D), 4 (A,B,D), 5 (A,B)
Core Java Certification

Mais conteúdo relacionado

Mais procurados

Mais procurados (20)

Core Java Introduction | Basics
Core Java Introduction  | BasicsCore Java Introduction  | Basics
Core Java Introduction | Basics
 
Java features
Java featuresJava features
Java features
 
Java Notes
Java Notes Java Notes
Java Notes
 
Java training in delhi
Java training in delhiJava training in delhi
Java training in delhi
 
Java Programming
Java ProgrammingJava Programming
Java Programming
 
Java basic
Java basicJava basic
Java basic
 
Java tutorial PPT
Java tutorial PPTJava tutorial PPT
Java tutorial PPT
 
Java Class 6 | Java Class 6 |Threads in Java| Applets | Swing GUI | JDBC | Ac...
Java Class 6 | Java Class 6 |Threads in Java| Applets | Swing GUI | JDBC | Ac...Java Class 6 | Java Class 6 |Threads in Java| Applets | Swing GUI | JDBC | Ac...
Java Class 6 | Java Class 6 |Threads in Java| Applets | Swing GUI | JDBC | Ac...
 
Java Basics
Java BasicsJava Basics
Java Basics
 
Java platform
Java platformJava platform
Java platform
 
Core Java Tutorials by Mahika Tutorials
Core Java Tutorials by Mahika TutorialsCore Java Tutorials by Mahika Tutorials
Core Java Tutorials by Mahika Tutorials
 
Basic Java Programming
Basic Java ProgrammingBasic Java Programming
Basic Java Programming
 
Introduction to java 101
Introduction to java 101Introduction to java 101
Introduction to java 101
 
Java history, versions, types of errors and exception, quiz
Java history, versions, types of errors and exception, quiz Java history, versions, types of errors and exception, quiz
Java history, versions, types of errors and exception, quiz
 
Presentation to java
Presentation  to  javaPresentation  to  java
Presentation to java
 
Core Java
Core JavaCore Java
Core Java
 
Core java
Core javaCore java
Core java
 
Object+oriented+programming+in+java
Object+oriented+programming+in+javaObject+oriented+programming+in+java
Object+oriented+programming+in+java
 
Java Basics
Java BasicsJava Basics
Java Basics
 
Introduction to Java
Introduction to JavaIntroduction to Java
Introduction to Java
 

Semelhante a Core Java Certification

Semelhante a Core Java Certification (20)

open sta testing Certification
open sta testing Certificationopen sta testing Certification
open sta testing Certification
 
CVS Certification
CVS CertificationCVS Certification
CVS Certification
 
C Sharp Certification
C Sharp CertificationC Sharp Certification
C Sharp Certification
 
Cocoa Programming Certification
Cocoa Programming CertificationCocoa Programming Certification
Cocoa Programming Certification
 
Windmill Testing certification
Windmill Testing certificationWindmill Testing certification
Windmill Testing certification
 
Curso de Programación Java Básico
Curso de Programación Java BásicoCurso de Programación Java Básico
Curso de Programación Java Básico
 
Let's talk about certification: SCJA
Let's talk about certification: SCJALet's talk about certification: SCJA
Let's talk about certification: SCJA
 
maven build certificaton
maven build certificatonmaven build certificaton
maven build certificaton
 
159747608 a-training-report-on
159747608 a-training-report-on159747608 a-training-report-on
159747608 a-training-report-on
 
the grinder testing certification
the grinder testing certificationthe grinder testing certification
the grinder testing certification
 
Mantis Bug Tracker Certification
Mantis Bug Tracker CertificationMantis Bug Tracker Certification
Mantis Bug Tracker Certification
 
Applying Anti-Reversing Techniques to Java Bytecode
Applying Anti-Reversing Techniques to Java BytecodeApplying Anti-Reversing Techniques to Java Bytecode
Applying Anti-Reversing Techniques to Java Bytecode
 
Apache Cassandra Certification
Apache Cassandra CertificationApache Cassandra Certification
Apache Cassandra Certification
 
Financial Valuation Certification
Financial Valuation CertificationFinancial Valuation Certification
Financial Valuation Certification
 
Jabber Certification
Jabber CertificationJabber Certification
Jabber Certification
 
The Magic Of Application Lifecycle Management In Vs Public
The Magic Of Application Lifecycle Management In Vs PublicThe Magic Of Application Lifecycle Management In Vs Public
The Magic Of Application Lifecycle Management In Vs Public
 
Javascript-heavy Salesforce Applications
Javascript-heavy Salesforce ApplicationsJavascript-heavy Salesforce Applications
Javascript-heavy Salesforce Applications
 
Salesforce Development Lifecycle and Deployment Architect | How to Prepare
Salesforce Development Lifecycle and Deployment Architect | How to PrepareSalesforce Development Lifecycle and Deployment Architect | How to Prepare
Salesforce Development Lifecycle and Deployment Architect | How to Prepare
 
java_bba_21_vision academy_final.pdf
java_bba_21_vision academy_final.pdfjava_bba_21_vision academy_final.pdf
java_bba_21_vision academy_final.pdf
 
Java bcs 21_vision academy_final
Java bcs 21_vision academy_finalJava bcs 21_vision academy_final
Java bcs 21_vision academy_final
 

Mais de Vskills

Mais de Vskills (20)

Vskills certified administrative support professional sample material
Vskills certified administrative support professional sample materialVskills certified administrative support professional sample material
Vskills certified administrative support professional sample material
 
vskills customer service professional sample material
vskills customer service professional sample materialvskills customer service professional sample material
vskills customer service professional sample material
 
Vskills certified operations manager sample material
Vskills certified operations manager sample materialVskills certified operations manager sample material
Vskills certified operations manager sample material
 
Vskills certified six sigma yellow belt sample material
Vskills certified six sigma yellow belt sample materialVskills certified six sigma yellow belt sample material
Vskills certified six sigma yellow belt sample material
 
Vskills production and operations management sample material
Vskills production and operations management sample materialVskills production and operations management sample material
Vskills production and operations management sample material
 
vskills leadership skills professional sample material
vskills leadership skills professional sample materialvskills leadership skills professional sample material
vskills leadership skills professional sample material
 
vskills facility management expert sample material
vskills facility management expert sample materialvskills facility management expert sample material
vskills facility management expert sample material
 
Vskills international trade and forex professional sample material
Vskills international trade and forex professional sample materialVskills international trade and forex professional sample material
Vskills international trade and forex professional sample material
 
Vskills production planning and control professional sample material
Vskills production planning and control professional sample materialVskills production planning and control professional sample material
Vskills production planning and control professional sample material
 
Vskills purchasing and material management professional sample material
Vskills purchasing and material management professional sample materialVskills purchasing and material management professional sample material
Vskills purchasing and material management professional sample material
 
Vskills manufacturing technology management professional sample material
Vskills manufacturing technology management professional sample materialVskills manufacturing technology management professional sample material
Vskills manufacturing technology management professional sample material
 
certificate in agile project management sample material
certificate in agile project management sample materialcertificate in agile project management sample material
certificate in agile project management sample material
 
Vskills angular js sample material
Vskills angular js sample materialVskills angular js sample material
Vskills angular js sample material
 
Vskills c++ developer sample material
Vskills c++ developer sample materialVskills c++ developer sample material
Vskills c++ developer sample material
 
Vskills c developer sample material
Vskills c developer sample materialVskills c developer sample material
Vskills c developer sample material
 
Vskills financial modelling professional sample material
Vskills financial modelling professional sample materialVskills financial modelling professional sample material
Vskills financial modelling professional sample material
 
Vskills basel iii professional sample material
Vskills basel iii professional sample materialVskills basel iii professional sample material
Vskills basel iii professional sample material
 
Vskills telecom management professional sample material
Vskills telecom management professional sample materialVskills telecom management professional sample material
Vskills telecom management professional sample material
 
Vskills retail management professional sample material
Vskills retail management professional sample materialVskills retail management professional sample material
Vskills retail management professional sample material
 
Vskills contract law analyst sample material
Vskills contract law analyst sample materialVskills contract law analyst sample material
Vskills contract law analyst sample material
 

Último

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
heathfieldcps1
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
Chris Hunter
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
negromaestrong
 

Último (20)

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Role Of Transgenic Animal In Target Validation-1.pptx
Role Of Transgenic Animal In Target Validation-1.pptxRole Of Transgenic Animal In Target Validation-1.pptx
Role Of Transgenic Animal In Target Validation-1.pptx
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 

Core Java Certification

  • 1. Certified Core Java Developer VS-1036
  • 2. Certified Core Java Developer www.vskills.in CertifiedCertifiedCertifiedCertified Core Java DeveloperCore Java DeveloperCore Java DeveloperCore Java Developer Certification CodeCertification CodeCertification CodeCertification Code VS-1036 Core Java Developer Certification helps demonstrate an individual's overall comprehension and expertise of Java programming language. VSkills Core Java Developer Certification holders have more than a working familiarity with Java programs—they are technically skilled to take advantage of the breadth of features efficiently and effectively. Java is an open source and platform independent programming language whose API's are easily accessible. It is widely used for client-server application, enterprise applications, dynamic web applications and web-services development and is in great demand in software companies, MNCs, Corporates and Government organizations. Why shouldWhy shouldWhy shouldWhy should one take this certification?one take this certification?one take this certification?one take this certification? This Course is intended for professionals and graduates wanting to excel in their chosen areas. It is also well suited for those who are already working and would like to take certification for further career progression. VSkills Core Java Developer Certification helps candidate differentiate in today's competitive job market, broaden their employment opportunities by displaying their advanced skills, and result in higher earning potential. VSkills Core Java Developer Certification can also lead to increased job satisfaction. Certified individuals have increased competency, productivity, and credibility with their employers, co-workers, and clients. For employers, the certification provides skill-verification tools that not only help assess a person's skills in using Java programming language but also the ability to quickly complete on-the-job tasks across multiple programs. Who will benefit from taking this certification?Who will benefit from taking this certification?Who will benefit from taking this certification?Who will benefit from taking this certification? The certification benefits programmers, developer, software professionals and students who want to present themselves as truly knowledgeable and differentiate themselves in a competitive job market. It also helps hiring managers make job placement decisions. Managers who hire candidates with a VSkills Core Java Developer Certification are helping minimize training costs. Test Details:Test Details:Test Details:Test Details: • Duration:Duration:Duration:Duration: 60 minutes • No. of questions:No. of questions:No. of questions:No. of questions: 50
  • 3. Certified Core Java Developer www.vskills.in • Maximum marks:Maximum marks:Maximum marks:Maximum marks: 50, Passing marks: 25 (50%); There is no negative marking in this module. Fee Structure:Fee Structure:Fee Structure:Fee Structure: Rs. 4,000/- (Includes all taxes) CCCCompanies that hireompanies that hireompanies that hireompanies that hire VskillsVskillsVskillsVskills CertifiedCertifiedCertifiedCertified Core Java DeveloperCore Java DeveloperCore Java DeveloperCore Java Developer Core Java Developers are in great demand. There are a lot of boutique niche companies, specializing in Integration Services, who are constantly hiring knowledgeable professionals. International job consultants also are constantly looking for Core Java Developer for overseas jobs. The skill is also greatly in demand in government projects.
  • 4. Certified Core Java Developer www.vskills.in Table of Content 1.1.1.1. Language FundamentalsLanguage FundamentalsLanguage FundamentalsLanguage Fundamentals 1.1. Basics of Java 1.2. Garbage Collections 1.3. Declarations and Access Control 1.4. Flow Control 2.2.2.2. Object Oriented ProgrammingObject Oriented ProgrammingObject Oriented ProgrammingObject Oriented Programming 2.1.Inheritance 2.2.Encapsulation 2.3.Polymorphism 3.3.3.3. Exception HandlingException HandlingException HandlingException Handling 3.1.Exceptions 3.2.Errors 3.3.Try---catch---finally blocks 3.4.Throw and throws 4.4.4.4. Input OutputInput OutputInput OutputInput Output 4.1.File I/O 4.2.BufferedReader 4.3.Streams and Bytes Data 5.5.5.5. Java.langJava.langJava.langJava.lang 5.1.Strings,StringBuffer 6.6.6.6. CollectionsCollectionsCollectionsCollections 6.1.Collections Interface 6.2.Vectors 6.3.ArrayList 6.4.Maps 6.5.Sets 7.7.7.7. ThreadsThreadsThreadsThreads 7.1.Basics of threads 7.2.Multithreading 7.3.AWT and Swings 8.8.8.8. AWT and Swings PackageAWT and Swings PackageAWT and Swings PackageAWT and Swings Package 8.1.Frames 8.2.Panels
  • 5. Certified Core Java Developer www.vskills.in 8.3.Frames Layout 9.9.9.9. JDBCJDBCJDBCJDBC 9.1.Connection to Database 9.2.Types of Statements 9.3.Types of Drivers
  • 6. Certified Core Java Developer www.vskills.in Course OutCourse OutCourse OutCourse Outlinelinelineline 1.1.1.1. Language FundamentalsLanguage FundamentalsLanguage FundamentalsLanguage Fundamentals Explains Basics of Java programming language Explains methods for garbage collection in Java Explains the method of Implementing access control and declarations Explains various flow control techniques 2.2.2.2. Object Oriented ProgramObject Oriented ProgramObject Oriented ProgramObject Oriented Programmingmingmingming Explains various techniques for inheritance in Java Explains the method of implementing encapsulation Methods for polymorphism 3.3.3.3. Exception HandlingException HandlingException HandlingException Handling Elaborates the basics of exceptions Explains different types of errors Explains the procedure of using try-catch-finally blocks Explains the procedure of implementing throw and throws 4.4.4.4. Input OutputInput OutputInput OutputInput Output Explains basics of file I/O procedure Explains the uses of bufferedreader Illustrates the procedure of implementing streams and bytes data 5.5.5.5. Java.langJava.langJava.langJava.lang Explains the procedure of using the Strings,StringBuffer 6.6.6.6. CollectionsCollectionsCollectionsCollections Illustrates the concepts of collections interface Illustrates the uses of vectors Explains the procedure of implementing array list Illustrates various methods of using maps Explains the procedure of creating and using sets
  • 7. Certified Core Java Developer www.vskills.in 7.7.7.7. ThreadsThreadsThreadsThreads Explains the basic principles and concepts of threads Explains the concepts and procedure of implementing multithreading 8.8.8.8. AWT and SwingsAWT and SwingsAWT and SwingsAWT and Swings Explains the concepts of AWT and swings package Illustrates the uses and functions of Frames Explains the procedure of implementing panels Explains the procedure and techniques of using frames layout 9.9.9.9. JDBCJDBCJDBCJDBC Explains the procedure and techniques to connect a database Explains the techniques and procedure to implement various types of statements Illustrates uses of different types of drivers
  • 8. Certified Core Java Developer www.vskills.in Sample QuestionsSample QuestionsSample QuestionsSample Questions 1. Which two create an instance of an array? (Choose two.)1. Which two create an instance of an array? (Choose two.)1. Which two create an instance of an array? (Choose two.)1. Which two create an instance of an array? (Choose two.) A. int[ ] ia = new int[15]; B. float fa = new float[20]; C. char[ ] ca = "Some String"; D. Object oa = new float[20]; 2.2.2.2. Given below is a programme, public class ArrayTest { public static void main(String[ ] args){ float f1[ ], f[ ]; f1 = new float[10]; f = f1; System.out.println("f[0] = " + f[0]); } } What is the result?What is the result?What is the result?What is the result? A. It prints f2[0] = 0.0 B. It prints f2[0] = NaN C. An error at ‘f2 = f1;’ causes compile to fail. D. An error at ‘System.out.println("f2[0] = " + f2[0]);’ causes compile to fail. 3. Which two cause a compiler error? (Choose two.)3. Which two cause a compiler error? (Choose two.)3. Which two cause a compiler error? (Choose two.)3. Which two cause a compiler error? (Choose two.) A. int[ ] scores = {3, 5, 7}; B. int [ ][ ] scores = {2,7,6}, {9,3,45}; C. String cats[ ] = {"Fluffy", "Spot", "Zeus"}; D. boolean results[ ] = new boolean [3] {true, false, true}; 4. Which three form part of correct array declarations? (Choose three.)4. Which three form part of correct array declarations? (Choose three.)4. Which three form part of correct array declarations? (Choose three.)4. Which three form part of correct array declarations? (Choose three.) A. public int a [ ] B. static int [ ] a C. public [ ] int a D. public final int [ ] a
  • 9. Certified Core Java Developer www.vskills.in 5. Which two cause a compiler error? (Choose two.)5. Which two cause a compiler error? (Choose two.)5. Which two cause a compiler error? (Choose two.)5. Which two cause a compiler error? (Choose two.) A. float[ ] f = new float(3); B. float f2[ ] = new float[ ]; C. float[ ]f1 = new float[3]; D. float f3[ ] = new float[3]; Answers: 1 (A, D), 2 (A), 3 (B,D), 4 (A,B,D), 5 (A,B)