SlideShare ist ein Scribd-Unternehmen logo
1 von 17
Downloaden Sie, um offline zu lesen
OCP Java SE 8 Exam
Sample Questions	
Generics	and	Collec.ons	
Hari	Kiran	&	S	G	Ganesh
Ques.on		
Choose	the	correct	op.on	based	on	this	program:
	
import	java.u-l.*;	
class	U-li-esTest	{	
				public	sta-c	void	main(String	[]args)	{	
								List<int>	intList	=	new	ArrayList<>();	
								intList.add(10);	
								intList.add(20);	
								System.out.println("The	list	is:	"	+	intList);	
				}	
}	
	
A.	It	prints	the	following:	The	list	is:	[10,	20]	
B.	It	prints	the	following:	The	list	is:	[20,	10]	
C.	It	results	in	a	compiler	error	
D.	It	results	in	a	run-me	excep-on
	
h<ps://ocpjava.wordpress.com
Answer	
h<ps://ocpjava.wordpress.com	
Choose	the	correct	op.on	based	on	this	program:
	
import	java.u-l.*;	
class	U-li-esTest	{	
				public	sta-c	void	main(String	[]args)	{	
								List<int>	intList	=	new	ArrayList<>();	
								intList.add(10);	
								intList.add(20);	
								System.out.println("The	list	is:	"	+	intList);	
				}	
}	
	
A.	It	prints	the	following:	The	list	is:	[10,	20]	
B.	It	prints	the	following:	The	list	is:	[20,	10]	
C.	It	results	in	a	compiler	error	
D.	It	results	in	a	run-me	excep-on
Explana.on	
C.	It	results	in	a	compiler	error	
	
You	cannot	specify	primi-ve	types	along	with	generics,	so	
List<int>	needs	to	be	changed	to	List<Integer>.	
	
h<ps://ocpjava.wordpress.com
Ques.on		
Choose	the	correct	op.on	based	on	this	program:	
	
import	java.u-l.*;	
class	U-li-esTest	{	
				public	sta-c	void	main(String	[]args)	{	
								List<Integer>	intList	=	new	LinkedList<>();	
								List<Double>	dblList	=	new	LinkedList<>();	
								System.out.println("First	type:	"	+	intList.getClass());	
								System.out.println("Second	type:"	+	dblList.getClass());	
				}	
}	
	
	
A.	It	prints	the	following:	
First	type:	class	java.u-l.LinkedList	
Second	type:class	java.u-l.LinkedList	
	
B.	It	prints	the	following:	
First	type:	class	java.u-l.LinkedList<Integer>	
Second	type:class	java.u-l.LinkedList<Double>	
	
C.	It	results	in	a	compiler	error	
	
D.	It	results	in	a	run-me	excep-on	
h<ps://ocpjava.wordpress.com
Answer	
h<ps://ocpjava.wordpress.com	
Choose	the	correct	op.on	based	on	this	program:	
	
import	java.u-l.*;	
class	U-li-esTest	{	
				public	sta-c	void	main(String	[]args)	{	
								List<Integer>	intList	=	new	LinkedList<>();	
								List<Double>	dblList	=	new	LinkedList<>();	
								System.out.println("First	type:	"	+	intList.getClass());	
								System.out.println("Second	type:"	+	dblList.getClass());	
				}	
}	
	
	
A.	It	prints	the	following:	
First	type:	class	java.u.l.LinkedList	
Second	type:class	java.u.l.LinkedList	
	
B.	It	prints	the	following:	
First	type:	class	java.u-l.LinkedList<Integer>	
Second	type:class	java.u-l.LinkedList<Double>	
	
C.	It	results	in	a	compiler	error	
	
D.	It	results	in	a	run-me	excep-on
Explana.on	
A.	It	prints	the	following:	
First	type:	class	java.u-l.LinkedList	
Second	type:class	java.u-l.LinkedList	
	
Due	to	type	erasure,	aYer	compila-on	both	types	are	treated	
as	same	LinkedList	type.	
	
h<ps://ocpjava.wordpress.com
Ques.on		
Choose	the	correct	op.on	based	on	this	program:	
import	java.u-l.Arrays;	
class	DefaultSorter	{	
				public	sta-c	void	main(String[]	args)	{	
								String[]	brics	=	{"Brazil",	"Russia",	"India",	"China"};	
								Arrays.sort(brics,	null);	//	LINE	A	
								for(String	country	:	brics)	{	
												System.out.print(country	+	"	");	
								}	
				}	
}	
	
A.	This	program	will	result	in	a	compiler	error	in	line	marked	with	comment	
LINE	A	
B.	When	executed,	the	program	prints	the	following:	Brazil	Russia	India	China	
C.	When	executed,	the	program	prints	the	following:	Brazil	China	India	Russia	
D.	When	executed,	the	program	prints	the	following:	Russia	India	China	Brazil	
E.	When	executed,	the	program	throws	a	run-me	excep-on	of	
NullPointerExcep-on	when	execu-ng	the	line	marked	with	comment	LINE	A	
F.	When	executed,	the	program	throws	a	run-me	excep-on	of	
h<ps://ocpjava.wordpress.com
Answer	
h<ps://ocpjava.wordpress.com	
Choose	the	correct	op.on	based	on	this	program:	
import	java.u-l.Arrays;	
class	DefaultSorter	{	
				public	sta-c	void	main(String[]	args)	{	
								String[]	brics	=	{"Brazil",	"Russia",	"India",	"China"};	
								Arrays.sort(brics,	null);	//	LINE	A	
								for(String	country	:	brics)	{	
												System.out.print(country	+	"	");	
								}	
				}	
}	
	
A.	This	program	will	result	in	a	compiler	error	in	line	marked	with	comment	
LINE	A	
B.	When	executed,	the	program	prints	the	following:	Brazil	Russia	India	China	
C.	When	executed,	the	program	prints	the	following:	Brazil	China	India	Russia	
D.	When	executed,	the	program	prints	the	following:	Russia	India	China	Brazil	
E.	When	executed,	the	program	throws	a	run-me	excep-on	of	
NullPointerExcep-on	when	execu-ng	the	line	marked	with	comment	LINE	A	
F.	When	executed,	the	program	throws	a	run-me	excep-on	of
Explana.on	
C.	When	executed,	the	program	prints	the	following:	Brazil	
China	India	Russia	
	
When	null	is	passed	as	a	second	argument	to	the	Arrays.sort()	
method,	it	means	that	the	default	Comparable	(i.e.,	natural	
ordering	for	the	elements)	should	be	used.	The	default	
Comparator	results	in	sor-ng	the	elements	in	ascending	
order.	The	program	does	not	result	in	a	NullPointerExcep-on	
or	any	other	excep-ons	or	a	compiler	error.	
h<ps://ocpjava.wordpress.com
Ques.on		
Choose	the	correct	op.on	based	on	this	code	segment:	
	
"abracadabra".chars().dis-nct().peek(ch	->	System.	out	.prinb("%c	",	
ch)).sorted();	
	
A.	It	prints:	“a	b	c	d	r”	
B.	It	prints:	“a	b	r	c	d”	
C.	It	crashes	by	throwing	a	java.u-l.IllegalFormatConversionExcep-on	
D.	This	program	terminates	normally	without	prin-ng	any	output	in	the	
console
h<ps://ocpjava.wordpress.com
Answer	
h<ps://ocpjava.wordpress.com	
Choose	the	correct	op.on	based	on	this	code	segment:	
	
"abracadabra".chars().dis-nct().peek(ch	->	System.	out	.prinb("%c	",	
ch)).sorted();	
	
A.	It	prints:	“a	b	c	d	r”	
B.	It	prints:	“a	b	r	c	d”	
C.	It	crashes	by	throwing	a	java.u-l.IllegalFormatConversionExcep-on	
D.	This	program	terminates	normally	without	prin.ng	any	output	in	the	
console
Explana.on	
D.	This	program	terminates	normally	without	prin-ng	any	
output	in	the	console	
	
A	stream	pipeline	is	lazily	evaluated.	Since	there	is	no	
terminal	opera-on	provided	(such	as	count,	forEach,	
reduce,	or	collect),	this	pipeline	is	not	evaluated	and	hence	
the	peek	does	not	print	any	output	to	the	console.	
	
h<ps://ocpjava.wordpress.com
Ques.on		
Choose	the	correct	op.on	based	on	this	program:	
	
class	Consonants	{	
				private	sta-c	boolean	removeVowels(int	c)	{	
								switch(c)	{	
												case	'a':	case	'e':	case	'i':	case	'o':	case	'u':	return	true;	
								}	
								return	false;	
				}	
				public	sta-c	void	main(String	[]args)	{	
	"avada	kedavra".chars()	
	 	.filter(Consonants::removeVovels)	
	 	.forEach(ch	->	System.out.prinb("%c",	ch));	
				}	
}	
	
A.	This	program	results	in	a	compiler	error	
B.	This	program	prints:	"aaaeaa"	
C.	This	program	prints:	"vd	kdvr"	
D.	This	program	prints:	"	avada	kedavra	"	
E.	This	program	crashes	by	throwing	a	java.u-l.IllegalFormatConversionExcep-on	
h<ps://ocpjava.wordpress.com
Answer	
h<ps://ocpjava.wordpress.com	
Choose	the	correct	op.on	based	on	this	program:	
	
class	Consonants	{	
				private	sta-c	boolean	removeVowels(int	c)	{	
								switch(c)	{	
												case	'a':	case	'e':	case	'i':	case	'o':	case	'u':	return	true;	
								}	
								return	false;	
				}	
				public	sta-c	void	main(String	[]args)	{	
	"avada	kedavra".chars()	
	 	.filter(Consonants::removeVovels)	
	 	.forEach(ch	->	System.out.prinb("%c",	ch));	
				}	
}	
	
A.	This	program	results	in	a	compiler	error	
B.	This	program	prints:	"aaaeaa"	
C.	This	program	prints:	"vd	kdvr"	
D.	This	program	prints:	"	avada	kedavra	"	
E.	This	program	crashes	by	throwing	a	java.u-l.IllegalFormatConversionExcep-on
Explana.on	
B.	This	program	prints:	“aaaeaa”		
	
Because	the	Consonants::removeVowels	returns	true	when	
there	is	a	vowel	passed,	only	those	characters	are	retained	
in	the	stream	by	the	filter	method.	Hence,	this	program	
prints	“aaaeaa”.	
h<ps://ocpjava.wordpress.com
•  Check out our latest book for
OCPJP 8 exam preparation
•  http://amzn.to/1NNtho2
•  www.apress.com/9781484218358
(download source code here)
•  https://ocpjava.wordpress.com
(more ocpjp 8 resources here)
http://facebook.com/ocpjava

Weitere ähnliche Inhalte

Was ist angesagt?

C++ Files and Streams
C++ Files and Streams C++ Files and Streams
C++ Files and Streams Ahmed Farag
 
Scala Talk at FOSDEM 2009
Scala Talk at FOSDEM 2009Scala Talk at FOSDEM 2009
Scala Talk at FOSDEM 2009Martin Odersky
 
Decision Making and Branching in C
Decision Making and Branching  in CDecision Making and Branching  in C
Decision Making and Branching in CRAJ KUMAR
 
Functional programming
Functional programmingFunctional programming
Functional programmingijcd
 
Object Oriented Programming Concepts
Object Oriented Programming ConceptsObject Oriented Programming Concepts
Object Oriented Programming Conceptsthinkphp
 
Java Exception handling
Java Exception handlingJava Exception handling
Java Exception handlingkamal kotecha
 
Exception Handling in JAVA
Exception Handling in JAVAException Handling in JAVA
Exception Handling in JAVASURIT DATTA
 
Expression and Operartor In C Programming
Expression and Operartor In C Programming Expression and Operartor In C Programming
Expression and Operartor In C Programming Kamal Acharya
 
Exception handling in java
Exception handling in javaException handling in java
Exception handling in javaPratik Soares
 
Java - Generic programming
Java - Generic programmingJava - Generic programming
Java - Generic programmingRiccardo Cardin
 
File Handling In C++(OOPs))
File Handling In C++(OOPs))File Handling In C++(OOPs))
File Handling In C++(OOPs))Papu Kumar
 

Was ist angesagt? (20)

Loops in java script
Loops in java scriptLoops in java script
Loops in java script
 
C++ Files and Streams
C++ Files and Streams C++ Files and Streams
C++ Files and Streams
 
Type Casting in C++
Type Casting in C++Type Casting in C++
Type Casting in C++
 
Java Basics
Java BasicsJava Basics
Java Basics
 
Javanotes
JavanotesJavanotes
Javanotes
 
Strings in Java
Strings in JavaStrings in Java
Strings in Java
 
Interface in java
Interface in javaInterface in java
Interface in java
 
Functions in c
Functions in cFunctions in c
Functions in c
 
Scala Talk at FOSDEM 2009
Scala Talk at FOSDEM 2009Scala Talk at FOSDEM 2009
Scala Talk at FOSDEM 2009
 
Decision Making and Branching in C
Decision Making and Branching  in CDecision Making and Branching  in C
Decision Making and Branching in C
 
Functional programming
Functional programmingFunctional programming
Functional programming
 
Object Oriented Programming Concepts
Object Oriented Programming ConceptsObject Oriented Programming Concepts
Object Oriented Programming Concepts
 
Java Exception handling
Java Exception handlingJava Exception handling
Java Exception handling
 
Core java
Core javaCore java
Core java
 
Exception Handling in JAVA
Exception Handling in JAVAException Handling in JAVA
Exception Handling in JAVA
 
Expression and Operartor In C Programming
Expression and Operartor In C Programming Expression and Operartor In C Programming
Expression and Operartor In C Programming
 
Exception handling in java
Exception handling in javaException handling in java
Exception handling in java
 
Java - Generic programming
Java - Generic programmingJava - Generic programming
Java - Generic programming
 
Classes objects in java
Classes objects in javaClasses objects in java
Classes objects in java
 
File Handling In C++(OOPs))
File Handling In C++(OOPs))File Handling In C++(OOPs))
File Handling In C++(OOPs))
 

Ähnlich wie OCP Java SE 8 Exam - Sample Questions - Generics and Collections

OCJP Samples Questions: Exceptions and assertions
OCJP Samples Questions: Exceptions and assertionsOCJP Samples Questions: Exceptions and assertions
OCJP Samples Questions: Exceptions and assertionsHari kiran G
 
9)Answerimport java.util.; import java.lang.; import java.pdf
9)Answerimport java.util.; import java.lang.; import java.pdf9)Answerimport java.util.; import java.lang.; import java.pdf
9)Answerimport java.util.; import java.lang.; import java.pdfanandf0099
 
Oracle Certified Associate (OCA) Java SE 8 Programmer II (1Z0-809) - Practice...
Oracle Certified Associate (OCA) Java SE 8 Programmer II (1Z0-809) - Practice...Oracle Certified Associate (OCA) Java SE 8 Programmer II (1Z0-809) - Practice...
Oracle Certified Associate (OCA) Java SE 8 Programmer II (1Z0-809) - Practice...Udayan Khattry
 
1z0 851 exam-java standard edition 6 programmer certified professional
1z0 851 exam-java standard edition 6 programmer certified professional1z0 851 exam-java standard edition 6 programmer certified professional
1z0 851 exam-java standard edition 6 programmer certified professionalIsabella789
 
Review Questions for Exam 10182016 1. public class .pdf
Review Questions for Exam 10182016 1. public class .pdfReview Questions for Exam 10182016 1. public class .pdf
Review Questions for Exam 10182016 1. public class .pdfmayorothenguyenhob69
 
Description (Part A) In this lab you will write a Queue implementati.pdf
Description (Part A) In this lab you will write a Queue implementati.pdfDescription (Part A) In this lab you will write a Queue implementati.pdf
Description (Part A) In this lab you will write a Queue implementati.pdfrishabjain5053
 
Java Programs
Java ProgramsJava Programs
Java Programsvvpadhu
 
Java Questions and Answers
Java Questions and AnswersJava Questions and Answers
Java Questions and AnswersRumman Ansari
 
Wap to implement bitwise operators
Wap to implement bitwise operatorsWap to implement bitwise operators
Wap to implement bitwise operatorsHarleen Sodhi
 
Core java pract_sem iii
Core java pract_sem iiiCore java pract_sem iii
Core java pract_sem iiiNiraj Bharambe
 

Ähnlich wie OCP Java SE 8 Exam - Sample Questions - Generics and Collections (20)

Java programs
Java programsJava programs
Java programs
 
OCJP Samples Questions: Exceptions and assertions
OCJP Samples Questions: Exceptions and assertionsOCJP Samples Questions: Exceptions and assertions
OCJP Samples Questions: Exceptions and assertions
 
9)Answerimport java.util.; import java.lang.; import java.pdf
9)Answerimport java.util.; import java.lang.; import java.pdf9)Answerimport java.util.; import java.lang.; import java.pdf
9)Answerimport java.util.; import java.lang.; import java.pdf
 
Java concurrency questions and answers
Java concurrency questions and answers Java concurrency questions and answers
Java concurrency questions and answers
 
Oracle Certified Associate (OCA) Java SE 8 Programmer II (1Z0-809) - Practice...
Oracle Certified Associate (OCA) Java SE 8 Programmer II (1Z0-809) - Practice...Oracle Certified Associate (OCA) Java SE 8 Programmer II (1Z0-809) - Practice...
Oracle Certified Associate (OCA) Java SE 8 Programmer II (1Z0-809) - Practice...
 
1z0 851 exam-java standard edition 6 programmer certified professional
1z0 851 exam-java standard edition 6 programmer certified professional1z0 851 exam-java standard edition 6 programmer certified professional
1z0 851 exam-java standard edition 6 programmer certified professional
 
Review Questions for Exam 10182016 1. public class .pdf
Review Questions for Exam 10182016 1. public class .pdfReview Questions for Exam 10182016 1. public class .pdf
Review Questions for Exam 10182016 1. public class .pdf
 
Description (Part A) In this lab you will write a Queue implementati.pdf
Description (Part A) In this lab you will write a Queue implementati.pdfDescription (Part A) In this lab you will write a Queue implementati.pdf
Description (Part A) In this lab you will write a Queue implementati.pdf
 
Java 8 features
Java 8 featuresJava 8 features
Java 8 features
 
Java Programs
Java ProgramsJava Programs
Java Programs
 
Core java Essentials
Core java EssentialsCore java Essentials
Core java Essentials
 
[10 points]Add the.pdf
[10 points]Add the.pdf[10 points]Add the.pdf
[10 points]Add the.pdf
 
Java Questions and Answers
Java Questions and AnswersJava Questions and Answers
Java Questions and Answers
 
Wap to implement bitwise operators
Wap to implement bitwise operatorsWap to implement bitwise operators
Wap to implement bitwise operators
 
54240326 (1)
54240326 (1)54240326 (1)
54240326 (1)
 
54240326 copy
54240326   copy54240326   copy
54240326 copy
 
Core java pract_sem iii
Core java pract_sem iiiCore java pract_sem iii
Core java pract_sem iii
 
7
77
7
 
Java and j2ee_lab-manual
Java and j2ee_lab-manualJava and j2ee_lab-manual
Java and j2ee_lab-manual
 
Major Java 8 features
Major Java 8 featuresMajor Java 8 features
Major Java 8 features
 

Mehr von Ganesh Samarthyam

Applying Refactoring Tools in Practice
Applying Refactoring Tools in PracticeApplying Refactoring Tools in Practice
Applying Refactoring Tools in PracticeGanesh Samarthyam
 
CFP - 1st Workshop on “AI Meets Blockchain”
CFP - 1st Workshop on “AI Meets Blockchain”CFP - 1st Workshop on “AI Meets Blockchain”
CFP - 1st Workshop on “AI Meets Blockchain”Ganesh Samarthyam
 
Great Coding Skills Aren't Enough
Great Coding Skills Aren't EnoughGreat Coding Skills Aren't Enough
Great Coding Skills Aren't EnoughGanesh Samarthyam
 
College Project - Java Disassembler - Description
College Project - Java Disassembler - DescriptionCollege Project - Java Disassembler - Description
College Project - Java Disassembler - DescriptionGanesh Samarthyam
 
Coding Guidelines - Crafting Clean Code
Coding Guidelines - Crafting Clean CodeCoding Guidelines - Crafting Clean Code
Coding Guidelines - Crafting Clean CodeGanesh Samarthyam
 
Design Patterns - Compiler Case Study - Hands-on Examples
Design Patterns - Compiler Case Study - Hands-on ExamplesDesign Patterns - Compiler Case Study - Hands-on Examples
Design Patterns - Compiler Case Study - Hands-on ExamplesGanesh Samarthyam
 
Bangalore Container Conference 2017 - Brief Presentation
Bangalore Container Conference 2017 - Brief PresentationBangalore Container Conference 2017 - Brief Presentation
Bangalore Container Conference 2017 - Brief PresentationGanesh Samarthyam
 
Bangalore Container Conference 2017 - Poster
Bangalore Container Conference 2017 - PosterBangalore Container Conference 2017 - Poster
Bangalore Container Conference 2017 - PosterGanesh Samarthyam
 
Software Design in Practice (with Java examples)
Software Design in Practice (with Java examples)Software Design in Practice (with Java examples)
Software Design in Practice (with Java examples)Ganesh Samarthyam
 
OO Design and Design Patterns in C++
OO Design and Design Patterns in C++ OO Design and Design Patterns in C++
OO Design and Design Patterns in C++ Ganesh Samarthyam
 
Bangalore Container Conference 2017 - Sponsorship Deck
Bangalore Container Conference 2017 - Sponsorship DeckBangalore Container Conference 2017 - Sponsorship Deck
Bangalore Container Conference 2017 - Sponsorship DeckGanesh Samarthyam
 
Let's Go: Introduction to Google's Go Programming Language
Let's Go: Introduction to Google's Go Programming LanguageLet's Go: Introduction to Google's Go Programming Language
Let's Go: Introduction to Google's Go Programming LanguageGanesh Samarthyam
 
Google's Go Programming Language - Introduction
Google's Go Programming Language - Introduction Google's Go Programming Language - Introduction
Google's Go Programming Language - Introduction Ganesh Samarthyam
 
Java Generics - Quiz Questions
Java Generics - Quiz QuestionsJava Generics - Quiz Questions
Java Generics - Quiz QuestionsGanesh Samarthyam
 
Software Architecture - Quiz Questions
Software Architecture - Quiz QuestionsSoftware Architecture - Quiz Questions
Software Architecture - Quiz QuestionsGanesh Samarthyam
 
Core Java: Best practices and bytecodes quiz
Core Java: Best practices and bytecodes quizCore Java: Best practices and bytecodes quiz
Core Java: Best practices and bytecodes quizGanesh Samarthyam
 

Mehr von Ganesh Samarthyam (20)

Wonders of the Sea
Wonders of the SeaWonders of the Sea
Wonders of the Sea
 
Animals - for kids
Animals - for kids Animals - for kids
Animals - for kids
 
Applying Refactoring Tools in Practice
Applying Refactoring Tools in PracticeApplying Refactoring Tools in Practice
Applying Refactoring Tools in Practice
 
CFP - 1st Workshop on “AI Meets Blockchain”
CFP - 1st Workshop on “AI Meets Blockchain”CFP - 1st Workshop on “AI Meets Blockchain”
CFP - 1st Workshop on “AI Meets Blockchain”
 
Great Coding Skills Aren't Enough
Great Coding Skills Aren't EnoughGreat Coding Skills Aren't Enough
Great Coding Skills Aren't Enough
 
College Project - Java Disassembler - Description
College Project - Java Disassembler - DescriptionCollege Project - Java Disassembler - Description
College Project - Java Disassembler - Description
 
Coding Guidelines - Crafting Clean Code
Coding Guidelines - Crafting Clean CodeCoding Guidelines - Crafting Clean Code
Coding Guidelines - Crafting Clean Code
 
Design Patterns - Compiler Case Study - Hands-on Examples
Design Patterns - Compiler Case Study - Hands-on ExamplesDesign Patterns - Compiler Case Study - Hands-on Examples
Design Patterns - Compiler Case Study - Hands-on Examples
 
Bangalore Container Conference 2017 - Brief Presentation
Bangalore Container Conference 2017 - Brief PresentationBangalore Container Conference 2017 - Brief Presentation
Bangalore Container Conference 2017 - Brief Presentation
 
Bangalore Container Conference 2017 - Poster
Bangalore Container Conference 2017 - PosterBangalore Container Conference 2017 - Poster
Bangalore Container Conference 2017 - Poster
 
Software Design in Practice (with Java examples)
Software Design in Practice (with Java examples)Software Design in Practice (with Java examples)
Software Design in Practice (with Java examples)
 
OO Design and Design Patterns in C++
OO Design and Design Patterns in C++ OO Design and Design Patterns in C++
OO Design and Design Patterns in C++
 
Bangalore Container Conference 2017 - Sponsorship Deck
Bangalore Container Conference 2017 - Sponsorship DeckBangalore Container Conference 2017 - Sponsorship Deck
Bangalore Container Conference 2017 - Sponsorship Deck
 
Let's Go: Introduction to Google's Go Programming Language
Let's Go: Introduction to Google's Go Programming LanguageLet's Go: Introduction to Google's Go Programming Language
Let's Go: Introduction to Google's Go Programming Language
 
Google's Go Programming Language - Introduction
Google's Go Programming Language - Introduction Google's Go Programming Language - Introduction
Google's Go Programming Language - Introduction
 
Java Generics - Quiz Questions
Java Generics - Quiz QuestionsJava Generics - Quiz Questions
Java Generics - Quiz Questions
 
Java Generics - by Example
Java Generics - by ExampleJava Generics - by Example
Java Generics - by Example
 
Software Architecture - Quiz Questions
Software Architecture - Quiz QuestionsSoftware Architecture - Quiz Questions
Software Architecture - Quiz Questions
 
Docker by Example - Quiz
Docker by Example - QuizDocker by Example - Quiz
Docker by Example - Quiz
 
Core Java: Best practices and bytecodes quiz
Core Java: Best practices and bytecodes quizCore Java: Best practices and bytecodes quiz
Core Java: Best practices and bytecodes quiz
 

Kürzlich hochgeladen

WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open SourceWSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open SourceWSO2
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisamasabamasaba
 
WSO2CON 2024 Slides - Open Source to SaaS
WSO2CON 2024 Slides - Open Source to SaaSWSO2CON 2024 Slides - Open Source to SaaS
WSO2CON 2024 Slides - Open Source to SaaSWSO2
 
WSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security ProgramWSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security ProgramWSO2
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...masabamasaba
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...masabamasaba
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastPapp Krisztián
 
WSO2Con204 - Hard Rock Presentation - Keynote
WSO2Con204 - Hard Rock Presentation - KeynoteWSO2Con204 - Hard Rock Presentation - Keynote
WSO2Con204 - Hard Rock Presentation - KeynoteWSO2
 
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benonimasabamasaba
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...masabamasaba
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...Shane Coughlan
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnAmarnathKambale
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfonteinmasabamasaba
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyviewmasabamasaba
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...masabamasaba
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...masabamasaba
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...masabamasaba
 
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...WSO2
 

Kürzlich hochgeladen (20)

WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open SourceWSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
WSO2CON 2024 Slides - Open Source to SaaS
WSO2CON 2024 Slides - Open Source to SaaSWSO2CON 2024 Slides - Open Source to SaaS
WSO2CON 2024 Slides - Open Source to SaaS
 
WSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security ProgramWSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security Program
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the past
 
WSO2Con204 - Hard Rock Presentation - Keynote
WSO2Con204 - Hard Rock Presentation - KeynoteWSO2Con204 - Hard Rock Presentation - Keynote
WSO2Con204 - Hard Rock Presentation - Keynote
 
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
 
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
 

OCP Java SE 8 Exam - Sample Questions - Generics and Collections