Leonardkinyua
On this page, you find all documents, package deals, and flashcards offered by seller leonardkinyua.
- 324
- 0
- 5
Community
- Followers
- Following
329 items
Summary - HUMAN 40 – RELIGIONS OF THE WORLD
I Really like this book and it’s most exciting bit about pieces of literature is that 
they always show the real life things, and characters of the real world. Beowulf is an of 
such literature and I not only like the poem but also have a great love for Beowulf the 
person itself - Specifically, I love the poem for its simulation of a typical society where 
there come times when tribulations make challenges and is needed to help intervene. 
On the other hand, my admiration for Beowulf is becau...
- Summary
- • 2 pages •
I Really like this book and it’s most exciting bit about pieces of literature is that 
they always show the real life things, and characters of the real world. Beowulf is an of 
such literature and I not only like the poem but also have a great love for Beowulf the 
person itself - Specifically, I love the poem for its simulation of a typical society where 
there come times when tribulations make challenges and is needed to help intervene. 
On the other hand, my admiration for Beowulf is becau...
Summary - HUMAN 40 – RELIGIONS OF THE WORLD
- Summary
- • 3 pages •
Exam (elaborations) CAREER EXPLORATION LESSONS FOR EIGHTH GRADE
Exploring’s mission is to deliver character-building experiences and mentorship that allow 
youth to achieve their full potential in both life and work. With this principle in mind, the 
eighth grade career education curriculum offers students an in-depth opportunity to 
discover more about themselves and the world in which they live. Exploring guarantees their 
knowledge base is enriched in such a way as to prepare mind, body, and spirit to actively 
participate in and provide leadership to a...
- Exam (elaborations)
- • 137 pages •
Exploring’s mission is to deliver character-building experiences and mentorship that allow 
youth to achieve their full potential in both life and work. With this principle in mind, the 
eighth grade career education curriculum offers students an in-depth opportunity to 
discover more about themselves and the world in which they live. Exploring guarantees their 
knowledge base is enriched in such a way as to prepare mind, body, and spirit to actively 
participate in and provide leadership to a...
Exam (elaborations) Latmd31312
Digital Marketing is a field offering new scope and challenges. We know your eagerness to get 
onto the online marketing band-wagon. And, you are all set to attend a Digital Marketing 
Interview. 
But you have no clue regarding the kind of questions you will face. Cast off your worries. We 
offer a list of digital marketing interview questions. We provide the answers too. These 
questions are for both freshers and the experienced. 
Read them through to be all set to face the interview. 
The purp...
- Exam (elaborations)
- • 14 pages •
Digital Marketing is a field offering new scope and challenges. We know your eagerness to get 
onto the online marketing band-wagon. And, you are all set to attend a Digital Marketing 
Interview. 
But you have no clue regarding the kind of questions you will face. Cast off your worries. We 
offer a list of digital marketing interview questions. We provide the answers too. These 
questions are for both freshers and the experienced. 
Read them through to be all set to face the interview. 
The purp...
Exam (elaborations) Mathematics International Advanced Subsidiary/Adva
• Use black ink or ball-point pen. 
• If pencil is used for diagrams/sketches/graphs it must be dark (HB or B). 
• Fill in the boxes at the top of this page with your name, centre number and 
candidate number. 
• Answer all questions and ensure that your answers to parts of questions are 
clearly labelled. 
• Answer the questions in the spaces provided 
– there may be more space than you need. 
• You should show sufficient working to make your methods clear. Answers 
without workin...
- Exam (elaborations)
- • 32 pages •
• Use black ink or ball-point pen. 
• If pencil is used for diagrams/sketches/graphs it must be dark (HB or B). 
• Fill in the boxes at the top of this page with your name, centre number and 
candidate number. 
• Answer all questions and ensure that your answers to parts of questions are 
clearly labelled. 
• Answer the questions in the spaces provided 
– there may be more space than you need. 
• You should show sufficient working to make your methods clear. Answers 
without workin...
Summary - CGS3066: Web Programming and Design Summer 2014
. high-level, dynamic, untyped, and interpreted programming language 
... is prototype-based with first-class functions, … 
... supporting object-oriented, imperative, and functional programming 
... has an API for working with text, arrays, dates and regular expressions 
● Not particularly similar to Java: More like C crossed with Self/Scheme 
○ C-like statements with everything objects, closures, garbage collection, etc. 
● Also known as ECMAScript 
2 
CS142 Lecture Notes - JavaScript ...
- Summary
- • 24 pages •
. high-level, dynamic, untyped, and interpreted programming language 
... is prototype-based with first-class functions, … 
... supporting object-oriented, imperative, and functional programming 
... has an API for working with text, arrays, dates and regular expressions 
● Not particularly similar to Java: More like C crossed with Self/Scheme 
○ C-like statements with everything objects, closures, garbage collection, etc. 
● Also known as ECMAScript 
2 
CS142 Lecture Notes - JavaScript ...
Summary - CGS3066: Web Programming and Design Summer 2014
ull is used for representing the intentional absence of an object value and is a primitive value. Unlike undefined, 
it is not a property of the global object. 
It is equal to undefined but not identical to it. 
null == undefined; // true 
null === undefined; // false 
CAREFUL: The typeof null is 'object'. 
typeof null; // 'object'; 
To properly check if a value is null, compare it with the strict equality operator 
var a = null; 
a === null; // true 
Section 3.2: Testing for NaN using isNaN...
- Summary
- • 490 pages •
ull is used for representing the intentional absence of an object value and is a primitive value. Unlike undefined, 
it is not a property of the global object. 
It is equal to undefined but not identical to it. 
null == undefined; // true 
null === undefined; // false 
CAREFUL: The typeof null is 'object'. 
typeof null; // 'object'; 
To properly check if a value is null, compare it with the strict equality operator 
var a = null; 
a === null; // true 
Section 3.2: Testing for NaN using isNaN...
Summary - CGS3066: Web Programming and Design Summer 2014
JavaScript is a lightweight, interpreted programming language 
 Designed for creating network-centric applications 
 Complementary to and integrated with Java 
 Complementary to and integrated with HTML 
 Open and cross-platform 
JavaScript Syntax: 
A JavaScript consists of JavaScript statements that are placed within the <script>... </script> 
HTML tags in a web page. 
You can place the <script> tag containing your JavaScript anywhere within you web page but it...
- Summary
- • 39 pages •
JavaScript is a lightweight, interpreted programming language 
 Designed for creating network-centric applications 
 Complementary to and integrated with Java 
 Complementary to and integrated with HTML 
 Open and cross-platform 
JavaScript Syntax: 
A JavaScript consists of JavaScript statements that are placed within the <script>... </script> 
HTML tags in a web page. 
You can place the <script> tag containing your JavaScript anywhere within you web page but it...
Summary - CGS3066: Web Programming and Design Summer 2014
7. How do you write "Hello World" in an alert box? 
A. alertBox("Hello World"); 
B. msgBox("Hello World"); 
C. msg("Hello World"); 
D. alert("Hello World"); 
8. How do you create a function in JavaScript? 
A. function:myFunction() 
B. function myFunction() 
C.function = myFunction() 
9.How does a FOR loop start? 
A. for (i = 0; i <= 5; i++) 
B. for (i <= 5; i++) 
C. for (i = 0; i <= 5) 
D. for i = 1 to 5 
10. How can you add a comment in a JavaScript? 
A. //This is a comment 
...
- Summary
- • 2 pages •
7. How do you write "Hello World" in an alert box? 
A. alertBox("Hello World"); 
B. msgBox("Hello World"); 
C. msg("Hello World"); 
D. alert("Hello World"); 
8. How do you create a function in JavaScript? 
A. function:myFunction() 
B. function myFunction() 
C.function = myFunction() 
9.How does a FOR loop start? 
A. for (i = 0; i <= 5; i++) 
B. for (i <= 5; i++) 
C. for (i = 0; i <= 5) 
D. for i = 1 to 5 
10. How can you add a comment in a JavaScript? 
A. //This is a comment 
...
Class notes Complete JavaScript™ Tips & Secrets for Profession
Sometimes, you need to work with an array while ensuring you don't modify the original. Instead of a clone 
method, arrays have a slice method that lets you perform a shallow copy of any part of an array. Keep in mind 
that this only clones the first level. This works well with primitive types, like numbers and strings, but not objects. 
To shallow-clone an array (i.e. have a new array instance but with the same elements), you can use the following 
one-liner: 
var clone = arrayToC(); 
This cal...
- Class notes
- • 416 pages •
Sometimes, you need to work with an array while ensuring you don't modify the original. Instead of a clone 
method, arrays have a slice method that lets you perform a shallow copy of any part of an array. Keep in mind 
that this only clones the first level. This works well with primitive types, like numbers and strings, but not objects. 
To shallow-clone an array (i.e. have a new array instance but with the same elements), you can use the following 
one-liner: 
var clone = arrayToC(); 
This cal...