SlideShare a Scribd company logo
1 of 10
Download to read 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

More Related Content

What's hot (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
 

Similar to Core Java Certification

open sta testing Certification
open sta testing Certificationopen sta testing Certification
open sta testing CertificationVskills
 
CVS Certification
CVS CertificationCVS Certification
CVS CertificationVskills
 
C Sharp Certification
C Sharp CertificationC Sharp Certification
C Sharp CertificationVskills
 
Cocoa Programming Certification
Cocoa Programming CertificationCocoa Programming Certification
Cocoa Programming CertificationVskills
 
Windmill Testing certification
Windmill Testing certificationWindmill Testing certification
Windmill Testing certificationVskills
 
maven build certificaton
maven build certificatonmaven build certificaton
maven build certificatonVskills
 
159747608 a-training-report-on
159747608 a-training-report-on159747608 a-training-report-on
159747608 a-training-report-onhomeworkping7
 
the grinder testing certification
the grinder testing certificationthe grinder testing certification
the grinder testing certificationVskills
 
Mantis Bug Tracker Certification
Mantis Bug Tracker CertificationMantis Bug Tracker Certification
Mantis Bug Tracker CertificationVskills
 
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 BytecodeTeodoro Cipresso
 
Apache Cassandra Certification
Apache Cassandra CertificationApache Cassandra Certification
Apache Cassandra CertificationVskills
 
Financial Valuation Certification
Financial Valuation CertificationFinancial Valuation Certification
Financial Valuation CertificationVskills
 
Jabber Certification
Jabber CertificationJabber Certification
Jabber CertificationVskills
 
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 PublicDavid Solivan
 
Javascript-heavy Salesforce Applications
Javascript-heavy Salesforce ApplicationsJavascript-heavy Salesforce Applications
Javascript-heavy Salesforce ApplicationsSalesforce Developers
 
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 PrepareAdinaCoyle
 
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.pdfakankshasorate1
 

Similar to 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
 

More from Vskills

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 materialVskills
 
vskills customer service professional sample material
vskills customer service professional sample materialvskills customer service professional sample material
vskills customer service professional sample materialVskills
 
Vskills certified operations manager sample material
Vskills certified operations manager sample materialVskills certified operations manager sample material
Vskills certified operations manager sample materialVskills
 
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 materialVskills
 
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 materialVskills
 
vskills leadership skills professional sample material
vskills leadership skills professional sample materialvskills leadership skills professional sample material
vskills leadership skills professional sample materialVskills
 
vskills facility management expert sample material
vskills facility management expert sample materialvskills facility management expert sample material
vskills facility management expert sample materialVskills
 
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 materialVskills
 
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 materialVskills
 
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 materialVskills
 
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 materialVskills
 
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 materialVskills
 
Vskills angular js sample material
Vskills angular js sample materialVskills angular js sample material
Vskills angular js sample materialVskills
 
Vskills c++ developer sample material
Vskills c++ developer sample materialVskills c++ developer sample material
Vskills c++ developer sample materialVskills
 
Vskills c developer sample material
Vskills c developer sample materialVskills c developer sample material
Vskills c developer sample materialVskills
 
Vskills financial modelling professional sample material
Vskills financial modelling professional sample materialVskills financial modelling professional sample material
Vskills financial modelling professional sample materialVskills
 
Vskills basel iii professional sample material
Vskills basel iii professional sample materialVskills basel iii professional sample material
Vskills basel iii professional sample materialVskills
 
Vskills telecom management professional sample material
Vskills telecom management professional sample materialVskills telecom management professional sample material
Vskills telecom management professional sample materialVskills
 
Vskills retail management professional sample material
Vskills retail management professional sample materialVskills retail management professional sample material
Vskills retail management professional sample materialVskills
 
Vskills contract law analyst sample material
Vskills contract law analyst sample materialVskills contract law analyst sample material
Vskills contract law analyst sample materialVskills
 

More from 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
 

Recently uploaded

Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structuredhanjurrannsibayan2
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxEsquimalt MFRC
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfDr Vijay Vishwakarma
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfSherif Taha
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSCeline George
 
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.christianmathematics
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxPooja Bhuva
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxPooja Bhuva
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and ModificationsMJDuyan
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - Englishneillewis46
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptxMaritesTamaniVerdade
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17Celine George
 
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxOn_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxPooja Bhuva
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxmarlenawright1
 
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.pptxAreebaZafar22
 

Recently uploaded (20)

Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
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.
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxOn_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).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
 

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)