SlideShare une entreprise Scribd logo
1  sur  10
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. 2,000/- (Includes all taxes)
CoCoCoCompanies that hirempanies that hirempanies that hirempanies 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 OutlCourse OutlCourse OutlCourse Outlineineineine
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 ProgrammObject Oriented ProgrammObject Oriented ProgrammObject Oriented Programminginginging
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)
Certified Core Java Developer

Contenu connexe

Tendances

Java Training | Java Tutorial for Beginners | Java Programming | Java Certifi...
Java Training | Java Tutorial for Beginners | Java Programming | Java Certifi...Java Training | Java Tutorial for Beginners | Java Programming | Java Certifi...
Java Training | Java Tutorial for Beginners | Java Programming | Java Certifi...Edureka!
 
Bea weblogic job_interview_preparation_guide
Bea weblogic job_interview_preparation_guideBea weblogic job_interview_preparation_guide
Bea weblogic job_interview_preparation_guidePankaj Singh
 
Java Interview Questions and Answers | Spring and Hibernate Interview Questio...
Java Interview Questions and Answers | Spring and Hibernate Interview Questio...Java Interview Questions and Answers | Spring and Hibernate Interview Questio...
Java Interview Questions and Answers | Spring and Hibernate Interview Questio...Edureka!
 
159747608 a-training-report-on
159747608 a-training-report-on159747608 a-training-report-on
159747608 a-training-report-onhomeworkping7
 
PRG 420 NERD Education Counseling--prg420nerd.com
PRG 420 NERD Education Counseling--prg420nerd.comPRG 420 NERD Education Counseling--prg420nerd.com
PRG 420 NERD Education Counseling--prg420nerd.comvenkat60044
 
PRG 420 NERD Become Exceptional--prg420nerd.com
PRG 420 NERD Become Exceptional--prg420nerd.comPRG 420 NERD Become Exceptional--prg420nerd.com
PRG 420 NERD Become Exceptional--prg420nerd.comagathachristie127
 
Java Tutorial For Beginners - Step By Step | Java Basics | Java Certification...
Java Tutorial For Beginners - Step By Step | Java Basics | Java Certification...Java Tutorial For Beginners - Step By Step | Java Basics | Java Certification...
Java Tutorial For Beginners - Step By Step | Java Basics | Java Certification...Edureka!
 
Core java interview questions
Core java interview questionsCore java interview questions
Core java interview questionsrithustutorials
 
DevLabs Alliance Top 20 Software Testing Interview Questions for SDET - by De...
DevLabs Alliance Top 20 Software Testing Interview Questions for SDET - by De...DevLabs Alliance Top 20 Software Testing Interview Questions for SDET - by De...
DevLabs Alliance Top 20 Software Testing Interview Questions for SDET - by De...DevLabs Alliance
 
Java interview questions
Java interview questionsJava interview questions
Java interview questionsSoba Arjun
 
PRG 420 Education Counseling / prg420.com
PRG 420 Education Counseling / prg420.comPRG 420 Education Counseling / prg420.com
PRG 420 Education Counseling / prg420.comkopiko76
 
Dev labs alliance top 20 basic java interview questions for sdet
Dev labs alliance top 20 basic java interview questions for sdetDev labs alliance top 20 basic java interview questions for sdet
Dev labs alliance top 20 basic java interview questions for sdetDevLabs Alliance
 
Reversing and Patching Java Bytecode
Reversing and Patching Java BytecodeReversing and Patching Java Bytecode
Reversing and Patching Java BytecodeTeodoro Cipresso
 
PRG 420 Education for Service--prg420.com
PRG 420 Education for Service--prg420.comPRG 420 Education for Service--prg420.com
PRG 420 Education for Service--prg420.comwilliamwordsworth25
 
Java Tutorial | Java Programming Tutorial | Java Basics | Java Training | Edu...
Java Tutorial | Java Programming Tutorial | Java Basics | Java Training | Edu...Java Tutorial | Java Programming Tutorial | Java Basics | Java Training | Edu...
Java Tutorial | Java Programming Tutorial | Java Basics | Java Training | Edu...Edureka!
 
DevLabs Alliance Top 50 Selenium Interview Questions for SDET
DevLabs Alliance Top 50 Selenium Interview Questions for SDETDevLabs Alliance Top 50 Selenium Interview Questions for SDET
DevLabs Alliance Top 50 Selenium Interview Questions for SDETDevLabs Alliance
 
Top 20 software testing interview questions for sdet
Top 20 software testing interview questions for sdetTop 20 software testing interview questions for sdet
Top 20 software testing interview questions for sdetDevLabs Alliance
 
Technical interview questions
Technical interview questionsTechnical interview questions
Technical interview questionsSoba Arjun
 
Top 20 cucumber interview questions for sdet
Top 20 cucumber interview questions for sdetTop 20 cucumber interview questions for sdet
Top 20 cucumber interview questions for sdetDevLabs Alliance
 

Tendances (20)

Java Training | Java Tutorial for Beginners | Java Programming | Java Certifi...
Java Training | Java Tutorial for Beginners | Java Programming | Java Certifi...Java Training | Java Tutorial for Beginners | Java Programming | Java Certifi...
Java Training | Java Tutorial for Beginners | Java Programming | Java Certifi...
 
Bea weblogic job_interview_preparation_guide
Bea weblogic job_interview_preparation_guideBea weblogic job_interview_preparation_guide
Bea weblogic job_interview_preparation_guide
 
Java Interview Questions and Answers | Spring and Hibernate Interview Questio...
Java Interview Questions and Answers | Spring and Hibernate Interview Questio...Java Interview Questions and Answers | Spring and Hibernate Interview Questio...
Java Interview Questions and Answers | Spring and Hibernate Interview Questio...
 
159747608 a-training-report-on
159747608 a-training-report-on159747608 a-training-report-on
159747608 a-training-report-on
 
PRG 420 NERD Education Counseling--prg420nerd.com
PRG 420 NERD Education Counseling--prg420nerd.comPRG 420 NERD Education Counseling--prg420nerd.com
PRG 420 NERD Education Counseling--prg420nerd.com
 
PRG 420 NERD Become Exceptional--prg420nerd.com
PRG 420 NERD Become Exceptional--prg420nerd.comPRG 420 NERD Become Exceptional--prg420nerd.com
PRG 420 NERD Become Exceptional--prg420nerd.com
 
Java Tutorial For Beginners - Step By Step | Java Basics | Java Certification...
Java Tutorial For Beginners - Step By Step | Java Basics | Java Certification...Java Tutorial For Beginners - Step By Step | Java Basics | Java Certification...
Java Tutorial For Beginners - Step By Step | Java Basics | Java Certification...
 
Core java interview questions
Core java interview questionsCore java interview questions
Core java interview questions
 
DevLabs Alliance Top 20 Software Testing Interview Questions for SDET - by De...
DevLabs Alliance Top 20 Software Testing Interview Questions for SDET - by De...DevLabs Alliance Top 20 Software Testing Interview Questions for SDET - by De...
DevLabs Alliance Top 20 Software Testing Interview Questions for SDET - by De...
 
Java interview questions
Java interview questionsJava interview questions
Java interview questions
 
PRG 420 Education Counseling / prg420.com
PRG 420 Education Counseling / prg420.comPRG 420 Education Counseling / prg420.com
PRG 420 Education Counseling / prg420.com
 
Dev labs alliance top 20 basic java interview questions for sdet
Dev labs alliance top 20 basic java interview questions for sdetDev labs alliance top 20 basic java interview questions for sdet
Dev labs alliance top 20 basic java interview questions for sdet
 
Reversing and Patching Java Bytecode
Reversing and Patching Java BytecodeReversing and Patching Java Bytecode
Reversing and Patching Java Bytecode
 
PRG 420 Education for Service--prg420.com
PRG 420 Education for Service--prg420.comPRG 420 Education for Service--prg420.com
PRG 420 Education for Service--prg420.com
 
Best interview questions
Best interview questionsBest interview questions
Best interview questions
 
Java Tutorial | Java Programming Tutorial | Java Basics | Java Training | Edu...
Java Tutorial | Java Programming Tutorial | Java Basics | Java Training | Edu...Java Tutorial | Java Programming Tutorial | Java Basics | Java Training | Edu...
Java Tutorial | Java Programming Tutorial | Java Basics | Java Training | Edu...
 
DevLabs Alliance Top 50 Selenium Interview Questions for SDET
DevLabs Alliance Top 50 Selenium Interview Questions for SDETDevLabs Alliance Top 50 Selenium Interview Questions for SDET
DevLabs Alliance Top 50 Selenium Interview Questions for SDET
 
Top 20 software testing interview questions for sdet
Top 20 software testing interview questions for sdetTop 20 software testing interview questions for sdet
Top 20 software testing interview questions for sdet
 
Technical interview questions
Technical interview questionsTechnical interview questions
Technical interview questions
 
Top 20 cucumber interview questions for sdet
Top 20 cucumber interview questions for sdetTop 20 cucumber interview questions for sdet
Top 20 cucumber interview questions for sdet
 

Similaire à Certified Core Java Developer

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
 
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
 
Mantis Bug Tracker Certification
Mantis Bug Tracker CertificationMantis Bug Tracker Certification
Mantis Bug Tracker CertificationVskills
 
the grinder testing certification
the grinder testing certificationthe grinder testing certification
the grinder testing 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
 
Financial Valuation Certification
Financial Valuation CertificationFinancial Valuation Certification
Financial Valuation CertificationVskills
 
Jabber Certification
Jabber CertificationJabber Certification
Jabber CertificationVskills
 
Javascript-heavy Salesforce Applications
Javascript-heavy Salesforce ApplicationsJavascript-heavy Salesforce Applications
Javascript-heavy Salesforce ApplicationsSalesforce Developers
 
Apache Cassandra Certification
Apache Cassandra CertificationApache Cassandra Certification
Apache Cassandra CertificationVskills
 
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
 
Django Developer Certification
Django Developer CertificationDjango Developer Certification
Django Developer CertificationVskills
 
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
 

Similaire à Certified Core Java Developer (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
 
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
 
Mantis Bug Tracker Certification
Mantis Bug Tracker CertificationMantis Bug Tracker Certification
Mantis Bug Tracker Certification
 
the grinder testing certification
the grinder testing certificationthe grinder testing certification
the grinder testing 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
 
Financial Valuation Certification
Financial Valuation CertificationFinancial Valuation Certification
Financial Valuation Certification
 
Jabber Certification
Jabber CertificationJabber Certification
Jabber Certification
 
Javascript-heavy Salesforce Applications
Javascript-heavy Salesforce ApplicationsJavascript-heavy Salesforce Applications
Javascript-heavy Salesforce Applications
 
Apache Cassandra Certification
Apache Cassandra CertificationApache Cassandra Certification
Apache Cassandra Certification
 
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
 
Django Developer Certification
Django Developer CertificationDjango Developer Certification
Django Developer Certification
 
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
 
What is Java? Presentation On Introduction To Core Java By PSK Technologies
What is Java? Presentation On Introduction To Core Java By PSK TechnologiesWhat is Java? Presentation On Introduction To Core Java By PSK Technologies
What is Java? Presentation On Introduction To Core Java By PSK Technologies
 

Plus de Narender Rana

Vskills certification
Vskills certificationVskills certification
Vskills certificationNarender Rana
 
Vs 1044 certified android apps developer brochure
Vs 1044 certified android apps developer brochureVs 1044 certified android apps developer brochure
Vs 1044 certified android apps developer brochureNarender Rana
 
Certified Router Support Professional
Certified Router Support ProfessionalCertified Router Support Professional
Certified Router Support ProfessionalNarender Rana
 
Certified HTML5 Developer
Certified HTML5 DeveloperCertified HTML5 Developer
Certified HTML5 DeveloperNarender Rana
 
Certified IT Support Professional
Certified IT Support ProfessionalCertified IT Support Professional
Certified IT Support ProfessionalNarender Rana
 
Certified ASP.Net Programmer
Certified ASP.Net ProgrammerCertified ASP.Net Programmer
Certified ASP.Net ProgrammerNarender Rana
 
Certified Software Testing Professional
Certified Software Testing ProfessionalCertified Software Testing Professional
Certified Software Testing ProfessionalNarender Rana
 
Certified Computer Fundamentals Professional
Certified Computer Fundamentals ProfessionalCertified Computer Fundamentals Professional
Certified Computer Fundamentals ProfessionalNarender Rana
 
Certified International Logistics Management Professional
Certified International Logistics Management ProfessionalCertified International Logistics Management Professional
Certified International Logistics Management ProfessionalNarender Rana
 
Vs 1010 certified equity research analyst-brochure
Vs 1010 certified equity research analyst-brochureVs 1010 certified equity research analyst-brochure
Vs 1010 certified equity research analyst-brochureNarender Rana
 
Certified human resources manager brochure
Certified human resources manager  brochureCertified human resources manager  brochure
Certified human resources manager brochureNarender Rana
 
Certified foreign exchange professional-brochure
Certified foreign exchange professional-brochureCertified foreign exchange professional-brochure
Certified foreign exchange professional-brochureNarender Rana
 
Certified Merger and Acquisition Analyst Brochure
Certified Merger and Acquisition Analyst BrochureCertified Merger and Acquisition Analyst Brochure
Certified Merger and Acquisition Analyst BrochureNarender Rana
 
Certified compensation and benefits manager brochure
Certified compensation and benefits manager brochureCertified compensation and benefits manager brochure
Certified compensation and benefits manager brochureNarender Rana
 

Plus de Narender Rana (14)

Vskills certification
Vskills certificationVskills certification
Vskills certification
 
Vs 1044 certified android apps developer brochure
Vs 1044 certified android apps developer brochureVs 1044 certified android apps developer brochure
Vs 1044 certified android apps developer brochure
 
Certified Router Support Professional
Certified Router Support ProfessionalCertified Router Support Professional
Certified Router Support Professional
 
Certified HTML5 Developer
Certified HTML5 DeveloperCertified HTML5 Developer
Certified HTML5 Developer
 
Certified IT Support Professional
Certified IT Support ProfessionalCertified IT Support Professional
Certified IT Support Professional
 
Certified ASP.Net Programmer
Certified ASP.Net ProgrammerCertified ASP.Net Programmer
Certified ASP.Net Programmer
 
Certified Software Testing Professional
Certified Software Testing ProfessionalCertified Software Testing Professional
Certified Software Testing Professional
 
Certified Computer Fundamentals Professional
Certified Computer Fundamentals ProfessionalCertified Computer Fundamentals Professional
Certified Computer Fundamentals Professional
 
Certified International Logistics Management Professional
Certified International Logistics Management ProfessionalCertified International Logistics Management Professional
Certified International Logistics Management Professional
 
Vs 1010 certified equity research analyst-brochure
Vs 1010 certified equity research analyst-brochureVs 1010 certified equity research analyst-brochure
Vs 1010 certified equity research analyst-brochure
 
Certified human resources manager brochure
Certified human resources manager  brochureCertified human resources manager  brochure
Certified human resources manager brochure
 
Certified foreign exchange professional-brochure
Certified foreign exchange professional-brochureCertified foreign exchange professional-brochure
Certified foreign exchange professional-brochure
 
Certified Merger and Acquisition Analyst Brochure
Certified Merger and Acquisition Analyst BrochureCertified Merger and Acquisition Analyst Brochure
Certified Merger and Acquisition Analyst Brochure
 
Certified compensation and benefits manager brochure
Certified compensation and benefits manager brochureCertified compensation and benefits manager brochure
Certified compensation and benefits manager brochure
 

Dernier

Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxJisc
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxDr. Ravikiran H M Gowda
 
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
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxCeline George
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
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
 
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
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and ModificationsMJDuyan
 
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
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Pooja Bhuva
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jisc
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxPooja Bhuva
 
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
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxJisc
 
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
 
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.pdfPoh-Sun Goh
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...Amil baba
 
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
 
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
 

Dernier (20)

Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
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
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
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
 
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
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
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
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
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
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
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
 
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
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
 
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
 
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
 

Certified Core Java Developer

  • 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. 2,000/- (Includes all taxes) CoCoCoCompanies that hirempanies that hirempanies that hirempanies 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 OutlCourse OutlCourse OutlCourse Outlineineineine 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 ProgrammObject Oriented ProgrammObject Oriented ProgrammObject Oriented Programminginginging 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)