SlideShare a Scribd company logo
OCP Java SE 8 Exam
Sample Questions	
Java	Streams	
Hari	Kiran	&	S	G	Ganesh
Ques4on		
Choose	the	correct	op4on	based	on	this	code	segment:	
	
"abracadabra".chars().distinct()
.peek(ch -> System. out .printf("%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	
Choose	the	correct	op4on	based	on	this	code	segment:	
	
"abracadabra".chars().distinct()
.peek(ch -> System. out .printf("%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	prin4ng	any	output	in	
the	console	
h=ps://ocpjava.wordpress.com
Explana4on	
D	.	This	program	terminates	normally	without	prin=ng	
any	output	in	the	console	
	
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
Ques4on		
Choose	the	correct	op4on	based	on	this	program:	
	
class Consonants {
private static boolean removeVowels(int c) {
switch(c) {
case 'a': case 'e': case 'i': case 'o': case 'u': return true;
}
return false;
}
public static void main(String []args) {
"avada kedavra".chars().filter(Consonants::removeVowels)
.forEach(ch -> System.out.printf("%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	
Choose	the	correct	op4on	based	on	this	program:	
	
class Consonants {
private static boolean removeVowels(int c) {
switch(c) {
case 'a': case 'e': case 'i': case 'o': case 'u': return true;
}
return false;
}
public static void main(String []args) {
"avada kedavra".chars().filter(Consonants::removeVowels)
.forEach(ch -> System.out.printf("%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
Explana4on	
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	ïŹlter	method.		
	
Hence,	this	program	prints	“aaaeaa”.	
h=ps://ocpjava.wordpress.com
Ques4on		
Choose	the	best	op4on	based	on	this	program:	
	
import java.util.stream.Stream;
public class AllMatch{
public static void main(String []args) {
boolean result = Stream.of("do", "re", "mi", "fa", "so", "la", "ti")
.filter(str -> str.length() > 5) // #1
.peek(System.out::println) // #2
.allMatch(str -> str.length() > 5); // #3
System.out.println(result);
}
}
A.	This	program	results	in	a	compiler	error	in	line	marked	with	comment	#1	
B.	This	program	results	in	a	compiler	error	in	line	marked	with	comment	#2	
C.	This	program	results	in	a	compiler	error	in	line	marked	with	comment	#3	
D.	This	program	prints:	false	
E.	This	program	prints	the	strings	“do”,	“re”,	“mi”,	“fa”,	“so”,	“la”,	“=”,	and	
“false”	in	separate	lines	
F.	This	program	prints:	true	
h=ps://ocpjava.wordpress.com
Answer	
Choose	the	best	op4on	based	on	this	program:	
	
import java.util.stream.Stream;
public class AllMatch{
public static void main(String []args) {
boolean result = Stream.of("do", "re", "mi", "fa", "so", "la", "ti")
.filter(str -> str.length() > 5) // #1
.peek(System.out::println) // #2
.allMatch(str -> str.length() > 5); // #3
System.out.println(result);
}
}
A.	This	program	results	in	a	compiler	error	in	line	marked	with	comment	#1	
B.	This	program	results	in	a	compiler	error	in	line	marked	with	comment	#2	
C.	This	program	results	in	a	compiler	error	in	line	marked	with	comment	#3	
D.	This	program	prints:	false	
E.	This	program	prints	the	strings	“do”,	“re”,	“mi”,	“fa”,	“so”,	“la”,	“=”,	and	
“false”	in	separate	lines	
F.	This	program	prints:	true	
h=ps://ocpjava.wordpress.com
Explana4on	
F	.	This	program	prints:	true	
	
The	predicate	str	->	str.length()	>	5	returns	false	for	all	the	
elements	because	the	length	of	each	string	is	2.		
	
Hence,	the	ïŹlter()	method	results	in	an	empty	stream	and	the	
peek()	method	does	not	print	anything.	The	allMatch()	
method	returns	true	for	an	empty	stream	and	does	not	
evaluate	the	given	predicate.		
	
Hence	this	program	prints	true	
h=ps://ocpjava.wordpress.com
Ques4on		
Choose	the	best	op4on	based	on	this	program:	
import java.util.regex.Pattern;
import java.util.stream.Stream;
public class SumUse {
public static void main(String []args) {
Stream<String> words = Pattern.compile(“ “).splitAsStream(“a bb ccc”);
System.out.println(words.map(word -> word.length()).sum());
}
}
A.	Compiler	error:	Cannot	ïŹnd	symbol	“sum”	in	interface	Stream<Integer>	
B.	This	program	prints:	3	
C.	This	program	prints:	5	
D.	This	program	prints:	6	
E.	This	program	crashes	by	throwing	java.lang.IllegalStateExcep=on
h=ps://ocpjava.wordpress.com
Answer	
Choose	the	best	op4on	based	on	this	program:	
import java.util.regex.Pattern;
import java.util.stream.Stream;
public class SumUse {
public static void main(String []args) {
Stream<String> words = Pattern.compile(“ “).splitAsStream(“a bb ccc”);
System.out.println(words.map(word -> word.length()).sum());
}
}
A.	Compiler	error:	Cannot	ïŹnd	symbol	“sum”	in	interface	Stream<Integer>	
B.	This	program	prints:	3	
C.	This	program	prints:	5	
D.	This	program	prints:	6	
E.	This	program	crashes	by	throwing	java.lang.IllegalStateExcep=on
h=ps://ocpjava.wordpress.com
Explana4on	
A	.	Compiler	error:	Cannot	ïŹnd	symbol	“sum”	in	interface	
Stream<Integer>	
	
Data	and	calcula=on	methods	such	as	sum()	and	average()	
are	not	available	in	the	Stream<T>	interface;	they	are	
available	only	in	the	primi=ve	type	versions	IntStream,	
LongStream,	and	DoubleStream.		
	
To	create	an	IntStream	,	one	solu=on	is	to	use	mapToInt()	
method	instead	of	map()	method	in	this	program.	If	
mapToInt()	were	used,	this	program	would	compile	without	
errors,	and	when	executed,	it	will	print	6	to	the	console.	
h=ps://ocpjava.wordpress.com
Ques4on		
Determine	the	behaviour	of	this	program:	
	
class LambdaFunctionTest {
@FunctionalInterface
interface LambdaFunction {
int apply(int j);
boolean equals(java.lang.Object arg0);
}
public static void main(String []args) {
LambdaFunction lambdaFunction = i -> i * i; // #1
System.out.println(lambdaFunction.apply(10));
}
}
A.	This	program	results	in	a	compiler	error:	interfaces	cannot	be	deïŹned	inside	
classes	
B.	This	program	results	in	a	compiler	error:	@Func=onalInterface	used	for	
LambdaFunc=on	that	deïŹnes	two	abstract	methods	
C.	This	program	results	in	a	compiler	error	in	code	marked	with	#1:	syntax	error	
D.	This	program	compiles	without	errors,	and	when	run,	it	prints	100	in	console	
h=ps://ocpjava.wordpress.com
Answer	
Determine	the	behaviour	of	this	program:	
	
class LambdaFunctionTest {
@FunctionalInterface
interface LambdaFunction {
int apply(int j);
boolean equals(java.lang.Object arg0);
}
public static void main(String []args) {
LambdaFunction lambdaFunction = i -> i * i; // #1
System.out.println(lambdaFunction.apply(10));
}
}
A.	This	program	results	in	a	compiler	error:	interfaces	cannot	be	deïŹned	inside	
classes	
B.	This	program	results	in	a	compiler	error:	@Func=onalInterface	used	for	
LambdaFunc=on	that	deïŹnes	two	abstract	methods	
C.	This	program	results	in	a	compiler	error	in	code	marked	with	#1:	syntax	error	
D.	This	program	compiles	without	errors,	and	when	run,	it	prints	100	in	
console	
h=ps://ocpjava.wordpress.com
Explana4on	
D.	is	the	correct	answer	as	this	program	compiles	without	
errors,	and	when	run,	it	prints	100	in	console.		
Why	other	op4ons	are	wrong:	
A.  An	interface	can	be	deïŹned	inside	a	class	
B.  The	signature	of	the	equals	method	matches	that	of	the	
equal	method	in	Object	class;	hence	it	is	not	counted	as	
an	abstract	method	in	the	func=onal	interface		
C.  It	is	acceptable	to	omit	the	parameter	type	when	there	
is	only	one	parameter	and	the	parameter	and	return	
type	are	inferred	from	the	LambdaFunc=on	abstract	
method	declara=on	int	apply(int	j)	
h=ps://ocpjava.wordpress.com
Ques4on		
Choose	the	best	op4on	based	on	this	program:	
	
import java.util.*;
class Sort {
public static void main(String []args) {
List<String> strings = Arrays.asList("eeny ", "meeny ", "miny ", "mo ");
Collections.sort(strings, (str1, str2) -> str2.compareTo(str1));
strings.forEach(string -> System.out.print(string));
}
}
A.	Compiler	error:	improper	lambda	func=on	deïŹni=on	
B.	This	program	prints:	eeny	meeny	miny	mo	
C.	This	program	prints:	mo	miny	meeny	eeny	
D.	This	program	will	compile	ïŹne,	and	when	run,	will	crash	by	throwing	a	
run=me	excep=on.	
h=ps://ocpjava.wordpress.com
Answer	
Choose	the	best	op4on	based	on	this	program:	
	
import java.util.*;
class Sort {
public static void main(String []args) {
List<String> strings = Arrays.asList("eeny ", "meeny ", "miny ", "mo ");
Collections.sort(strings, (str1, str2) -> str2.compareTo(str1));
strings.forEach(string -> System.out.print(string));
}
}
A.	Compiler	error:	improper	lambda	func=on	deïŹni=on	
B.	This	program	prints:	eeny	meeny	miny	mo	
C.	This	program	prints:	mo	miny	meeny	eeny	
D.	This	program	will	compile	ïŹne,	and	when	run,	will	crash	by	throwing	a	
run=me	excep=on.	
h=ps://ocpjava.wordpress.com
Explana4on	
C	.	This	program	prints:	mo	miny	meeny	eeny	
	
This	is	a	proper	deïŹni=on	of	a	lambda	expression.	Since	the	
second	argument	of	Collec=ons.sort()	method	takes	the	
func=onal	interface	Comparator	and	a	matching	lambda	
expression	is	passed	in	this	code.		
	
Note	that	second	argument	is	compared	with	the	
ïŹrst	argument	in	the	lambda	expression	(str1,	str2)	->	
str2.compareTo(str1)	.	For	this	reason,	the	comparison	is	
performed	in	descending	order.	
h=ps://ocpjava.wordpress.com
Ques4on		
What	will	be	the	result	of	execu4ng	this	code	segment	?	
	
Stream.of("ace ", "jack ", "queen ", "king ", "joker ")
.mapToInt(card -> card.length())
.filter(len -> len > 3)
.peek(System.out::print)
.limit(2);
A.	This	code	segment	prints:	jack	queen	king	joker	
B.	This	code	segment	prints:	jack	queen	
C.	This	code	segment	prints:	king	joker	
D.	This	code	segment	does	not	print	anything	on	the	console	
h=ps://ocpjava.wordpress.com
Answer	
What	will	be	the	result	of	execu4ng	this	code	segment	?	
	
Stream.of("ace ", "jack ", "queen ", "king ", "joker ")
.mapToInt(card -> card.length())
.filter(len -> len > 3)
.peek(System.out::print)
.limit(2);
A.	This	code	segment	prints:	jack	queen	king	joker	
B.	This	code	segment	prints:	jack	queen	
C.	This	code	segment	prints:	king	joker	
D.	This	code	segment	does	not	print	anything	on	the	console	
h=ps://ocpjava.wordpress.com
Explana4on	
D.	This	code	segment	does	not	print	anything	on	the	
console	
	
The	limit()	method	is	an	intermediate	opera=on	and	
not	a	terminal	opera=on.	
	
Since	there	is	no	terminal	opera=on	in	this	code	
segment,	elements	are	not	processed	in	the	stream	
and	hence	it	does	not	print	anything	on	the	console.	
h=ps://ocpjava.wordpress.com
Ques4on		
Choose	the	correct	op4on	based	on	the	following	code	segment:	
	
Comparator<String> comparer =
(country1, country2) -> country2.compareTo(country2); // COMPARE_TO
String[ ] brics = {"Brazil", "Russia", "India", "China"};
Arrays.sort(brics, null);
Arrays.stream(brics).forEach(country -> System.out.print(country + " "));
	
A.	The	program	results	in	a	compiler	error	in	the	line	marked	with	the	comment	
COMPARE_TO	
B.	The	program	prints	the	following:	Brazil	Russia	India	China	
C.	The	program	prints	the	following:	Brazil	China	India	Russia	
D.	The	program	prints	the	following:	Russia	India	China	Brazil	
E.	The	program	throws	the	excep=on	InvalidComparatorExcep=on	
h=ps://ocpjava.wordpress.com
Answer	
Choose	the	correct	op4on	based	on	the	following	code	segment:	
	
Comparator<String> comparer =
(country1, country2) -> country2.compareTo(country2); // COMPARE_TO
String[ ] brics = {"Brazil", "Russia", "India", "China"};
Arrays.sort(brics, null);
Arrays.stream(brics).forEach(country -> System.out.print(country + " "));
	
A.	The	program	results	in	a	compiler	error	in	the	line	marked	with	the	comment	
COMPARE_TO	
B.	The	program	prints	the	following:	Brazil	Russia	India	China	
C.	The	program	prints	the	following:	Brazil	China	India	Russia	
D.	The	program	prints	the	following:	Russia	India	China	Brazil	
E.	The	program	throws	the	excep=on	InvalidComparatorExcep=on	
h=ps://ocpjava.wordpress.com
Explana4on	
C.	The	program	prints	the	following:	Brazil	China	India	
Russia.	
	
For	the	sort()	method,	null	value	is	passed	as	the	
second	argument,	which	indicates	that	the	elements’	
“natural	ordering”	should	be	used.	In	this	case,	
natural	ordering	for	Strings	results	in	the	strings	
sorted	in	ascending	order.		
	
Note	that	passing	null	to	the	sort()	method	does	not	
result	in	a	NullPointerExcep=on.	
	
h=ps://ocpjava.wordpress.com
Ques4on		
Choose	the	correct	op4on	based	on	this	program:	
	
import java.util.stream.Stream;
public class Reduce {
public static void main(String []args) {
Stream<String> words = Stream.of("one", "two", "three");
int len = words.mapToInt(String::length).reduce(0, (len1, len2) ->
len1 + len2);
System.out.println(len);
}
}
	
A.	This	program	does	not	compile	and	results	in	compiler	error(s)	
B.	This	program	prints:	onetwothree	
C.	This	program	prints:	11	
D.	This	program	throws	an	IllegalArgumentExcep=on	
h=ps://ocpjava.wordpress.com
Answer	
Choose	the	correct	op4on	based	on	this	program:	
	
import java.util.stream.Stream;
public class Reduce {
public static void main(String []args) {
Stream<String> words = Stream.of("one", "two", "three");
int len = words.mapToInt(String::length).reduce(0, (len1, len2) ->
len1 + len2);
System.out.println(len);
}
}
	
A.	This	program	does	not	compile	and	results	in	compiler	error(s)	
B.	This	program	prints:	onetwothree	
C.	This	program	prints:	11	
D.	This	program	throws	an	IllegalArgumentExcep=on	
h=ps://ocpjava.wordpress.com
Explana4on	
C.	This	program	prints:	11	
	
This	program	compiles	without	any	errors.	The	
variable	words	point	to	a	stream	of	Strings.	The	call	
mapToInt(String::length)	results	in	a	stream	of	
Integers	with	the	length	of	the	strings.	One	of	the	
overloaded	versions	of	reduce()	method	takes	two	
arguments:	
	
T	reduce(T	iden=ty,	BinaryOperator<T>	accumulator);	
The	ïŹrst	argument	is	the	iden=ty	value,	which	is	given	
as	the	value	0	here.	
	
The	second	operand	is	a	BinaryOperator	match	for	
the	lambda	expression	(len1,	len2)	->	len1	+	len2.	The	
reduce()	method	thus	adds	the	length	of	all	the	three	
strings	in	the	stream,	which	results	in	the	value	11.	
h=ps://ocpjava.wordpress.com
Ques4on		
Choose	the	correct	op4on	based	on	this	code	segment	:	
	
List<Integer> ints = Arrays.asList(1, 2, 3, 4, 5);
ints.replaceAll(i -> i * i); // LINE
System.out.println(ints);
A.	This	code	segment	prints:	[1,	2,	3,	4,	5]	
B.	This	program	prints:	[1,	4,	9,	16,	25]	
C.	This	code	segment	throws	java.lang.UnsupportedOpera=onExcep=on	
D.	This	code	segment	results	in	a	compiler	error	in	the	line	marked	with	the	
comment	LINE	
h=ps://ocpjava.wordpress.com
Answer	
Choose	the	correct	op4on	based	on	this	code	segment	:	
	
List<Integer> ints = Arrays.asList(1, 2, 3, 4, 5);
ints.replaceAll(i -> i * i); // LINE
System.out.println(ints);
A.	This	code	segment	prints:	[1,	2,	3,	4,	5]	
B.	This	program	prints:	[1,	4,	9,	16,	25]	
C.	This	code	segment	throws	java.lang.UnsupportedOpera=onExcep=on	
D.	This	code	segment	results	in	a	compiler	error	in	the	line	marked	with	the	
comment	LINE	
h=ps://ocpjava.wordpress.com
Explana4on	
b)	This	program	prints:	[1,	4,	9,	16,	25]	
	
The	replaceAll()	method	(added	in	Java	8	to	the	List	
interface)	takes	an	UnaryOperator	as	the	argument.	In	
this	case,	the	unary	operator	squares	the	integer	
values.	Hence,	the	program	prints	[1,	4,	9,	16,	25].		
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
Linkedin OCP Java group

More Related Content

PPSX
JDBC: java DataBase connectivity
PPTX
JPA For Beginner's
PDF
OCP Java SE 8 Exam - Sample Questions - Lambda Expressions
PDF
Computer science class 12 project on Super Market Billing
PPTX
Optional in Java 8
DOCX
Java practical
PPSX
Collections - Maps
JDBC: java DataBase connectivity
JPA For Beginner's
OCP Java SE 8 Exam - Sample Questions - Lambda Expressions
Computer science class 12 project on Super Market Billing
Optional in Java 8
Java practical
Collections - Maps

What's hot (20)

PPT
PDF
Computer Science class 12
PPTX
Access modifiers in java
DOCX
Project for Student Result System
DOCX
computer science project on movie booking system
PPT
Java basic
PPTX
Android activity lifecycle
DOCX
Computer science project work
PPTX
Introduction to Node js
PPT
JDBC Architecture and Drivers
PDF
Java Collections | Collections Framework in Java | Java Tutorial For Beginner...
PDF
Hibernate Presentation
ODP
Garbage collection
PDF
MOVIE TICKET BOOKING-COMPUTER SCIENCE C++ PROJECT
PPTX
Java Notes
PPTX
report on snake game
PPT
Online Examination System
PDF
Profiling tools and Android Performance patterns
PPT
Introduction to Android Fragments
PPTX
Garbage collection
Computer Science class 12
Access modifiers in java
Project for Student Result System
computer science project on movie booking system
Java basic
Android activity lifecycle
Computer science project work
Introduction to Node js
JDBC Architecture and Drivers
Java Collections | Collections Framework in Java | Java Tutorial For Beginner...
Hibernate Presentation
Garbage collection
MOVIE TICKET BOOKING-COMPUTER SCIENCE C++ PROJECT
Java Notes
report on snake game
Online Examination System
Profiling tools and Android Performance patterns
Introduction to Android Fragments
Garbage collection
Ad

Similar to OCP Java SE 8 Exam - Sample Questions - Java Streams API (17)

PPT
Java Programmin: Selections
PDF
OXUS20 JAVA Programming Questions and Answers PART I
PPTX
OCJP Samples Questions: Exceptions and assertions
DOCX
 staple  here  (-­‐2  if  not  stapled  or .docx
PDF
Java puzzle-1195101951317606-3
PPTX
Java SE 17 Study Guide for Certification - Chapter 02
PDF
Java Puzzle
PDF
Which if statement below tests if letter holds R (letter is a char .pdf
PPTX
Master the Concepts Behind the Java 10 Challenges and Eliminate Stressful Bugs
PPTX
OCA Java SE 8 Exam Chapter 6 Exceptions
PPT
PDF
Review Questions for Exam 10182016 1. public class .pdf
PDF
OCP Java SE 8 Exam - Sample Questions - Exceptions and Assertions
DOCX
Test final jav_aaa
DOCX
What is an exception in java?
PDF
Cracking OCA and OCP Java 8 Exams
Java Programmin: Selections
OXUS20 JAVA Programming Questions and Answers PART I
OCJP Samples Questions: Exceptions and assertions
 staple  here  (-­‐2  if  not  stapled  or .docx
Java puzzle-1195101951317606-3
Java SE 17 Study Guide for Certification - Chapter 02
Java Puzzle
Which if statement below tests if letter holds R (letter is a char .pdf
Master the Concepts Behind the Java 10 Challenges and Eliminate Stressful Bugs
OCA Java SE 8 Exam Chapter 6 Exceptions
Review Questions for Exam 10182016 1. public class .pdf
OCP Java SE 8 Exam - Sample Questions - Exceptions and Assertions
Test final jav_aaa
What is an exception in java?
Cracking OCA and OCP Java 8 Exams
Ad

More from Ganesh Samarthyam (20)

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

Recently uploaded (20)

PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PDF
Understanding Forklifts - TECH EHS Solution
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PDF
medical staffing services at VALiNTRY
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PDF
Digital Strategies for Manufacturing Companies
PDF
How Creative Agencies Leverage Project Management Software.pdf
PDF
AI in Product Development-omnex systems
PPTX
history of c programming in notes for students .pptx
PDF
Softaken Excel to vCard Converter Software.pdf
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PPTX
Introduction to Artificial Intelligence
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
 
PPTX
Odoo POS Development Services by CandidRoot Solutions
PPTX
CHAPTER 2 - PM Management and IT Context
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PPTX
ai tools demonstartion for schools and inter college
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
Adobe Illustrator 28.6 Crack My Vision of Vector Design
Understanding Forklifts - TECH EHS Solution
Wondershare Filmora 15 Crack With Activation Key [2025
medical staffing services at VALiNTRY
Upgrade and Innovation Strategies for SAP ERP Customers
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
Digital Strategies for Manufacturing Companies
How Creative Agencies Leverage Project Management Software.pdf
AI in Product Development-omnex systems
history of c programming in notes for students .pptx
Softaken Excel to vCard Converter Software.pdf
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
Introduction to Artificial Intelligence
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
 
Odoo POS Development Services by CandidRoot Solutions
CHAPTER 2 - PM Management and IT Context
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Which alternative to Crystal Reports is best for small or large businesses.pdf
ai tools demonstartion for schools and inter college
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...

OCP Java SE 8 Exam - Sample Questions - Java Streams API