-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapcsprep.html
More file actions
executable file
·773 lines (748 loc) · 51.9 KB
/
apcsprep.html
File metadata and controls
executable file
·773 lines (748 loc) · 51.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link href="./img/favicon.png" rel="icon">
<title>AP CS Exam Prep | Coding Minds Academy</title>
<meta name="keywords" content="AP Computer Science, AP Computer Science Boot Camp, Java, APCS, Kids Learning Coding, K-12 Programming, K-12 Coding, Kids Coding, After School Coding, After School Program">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="The AP CS Exam Prep course is designed to review the required topics in AP CS (Java) exam. The goal is to prepare students with the solid programming foundation for AP CS exam, as well as the tips to solve exam questions.">
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/stack-interface.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/socicon.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/lightbox.min.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/flickity.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/iconsmind.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/theme.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/custom.css" rel="stylesheet" type="text/css" media="all" />
<link href="https://fonts.googleapis.com/css?family=Open+Sans:200,300,400,400i,500,600,700%7CMerriweather:300,300i%7CMaterial+Icons" rel="stylesheet">
<link rel="icon" href="https://codingmindsacademy.com/img/my/logofav.png" mce_href="/https://codingmindsacademy.com/img/my/logofav.png" type="image/x-icon">
<link rel="shortcut icon" href="https://codingmindsacademy.com/img/my/logofav.png" mce_href="/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="https://codingmindsacademy.com/img/my/logofav.png" mce_href="/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="57x57" href="https://codingmindsacademy.com/img/my/logofav.png" />
<link rel="apple-touch-icon" sizes="72x72" href="https://codingmindsacademy.com/img/my/logofav.png" />
<link rel="apple-touch-icon" sizes="114x114" href="https://codingmindsacademy.com/img/my/logofav.png" />
<link rel="apple-touch-icon" sizes="144x144" href="https://codingmindsacademy.com/img/my/logofav.png" />
<div style='margin:0 auto;display:none;'>
<img src="https://codingmindsacademy.com/img/my/logofav.png" />
</div>
</head>
<body class=" ">
<a id="start"></a>
<div style='margin:0 auto;display:none;'>
<img src="https://codingmindsacademy.com/img/my/logofav.png" />
</div>
<div class="nav-container ">
<div class="bar bar--sm visible-xs">
<div class="container">
<div class="row">
<div class="col-xs-3 col-sm-2">
<a href="index.html">
<img class="logo logo-dark" alt="logo" src="img/my/logo1.png" />
<img class="logo logo-light" alt="logo" src="img/my/logo1.png" />
</a>
</div>
<div class="col-xs-9 col-sm-10 text-right">
<a href="#" class="hamburger-toggle" data-toggle-class="#menu1;hidden-xs">
<i class="icon icon--sm stack-interface stack-menu"></i>
</a>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</div>
<!--end bar-->
<nav id="menu1" class="bar bar-1 hidden-xs">
<div class="container">
<div class="row">
<div class="col-md-1 col-sm-2 hidden-xs">
<div class="bar__module">
<a href="index.html"> <img class="logo logo-dark" alt="logo" src="img/my/logo1.png"> <img class="logo logo-light" alt="logo" src="img/my/logo1.png"> </a>
</div>
</div>
<div class="col-md-11 col-sm-12 text-right text-left-xs text-left-sm">
<div class="bar__module">
<ul class="menu-horizontal text-left">
<li> <a href="index.html">
Home
</a> </li>
<li> <a href="index.html#summercamp">
Our Programs
</a> </li>
<li>
<a href="portfolios.html">
Portfolios
</a>
</li>
<li> <a href="page-whycoding.html">
Why Coding
</a> </li>
</a> </li>
<li> <a href="page-about-us-1.html">
About Us
</a> </li>
</ul>
</div>
<div class="bar__module">
<!-- <a class="btn btn--sm type--uppercase" href="#customise-template"> <span class="btn__text">
Contact Us
</span> </a> -->
<a class="btn btn--sm btn--primary type--uppercase" href="page-contact-us.html"> <span class="btn__text">
Contact Us
</span> </a>
</div>
</div>
</div>
</div>
</nav>
<!--end bar-->
</div>
<div class="main-container">
<section class="text-center height-50">
<div class="container pos-vertical-center">
<div class="row">
<div class="col-sm-8">
<i class="icon icon-Coding color--primary"></i>
<h1>AP CS Exam Prep</h1>
<h3>Grade 9 - 12</h3>
<p class="lead">
The AP CS Exam Prep course is designed to review the required topics in AP CS (Java) exam. The goal is to prepare students with the solid programming foundation for AP CS exam, as well as the tips to solve exam questions.
</p>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="cover height-80 imagebg text-center" data-overlay="4">
<div class="background-image-holder">
<img alt="background" src="img/apcsprep/bg.jpg" />
</div>
<div class="container pos-vertical-center">
<div class="row">
<div class="col-sm-8">
<h1>
AP CS Exam Prep
</h1>
<p class="lead">
Exercise, coding, and get ready for AP CS!
</p>
<div class="modal-instance block">
<div class="video-play-icon video-play-icon--sm modal-trigger"></div>
<span>
<strong>Learn more about AP CS</strong>
</span>
<div class="modal-container">
<div class="modal-content bg-dark" data-width="60%" data-height="60%">
<iframe src="https://apstudent.collegeboard.org/apcourse/ap-computer-science-a" allowfullscreen="allowfullscreen"></iframe>
</div>
<!--end of modal-content-->
</div>
<!--end of modal-container-->
</div>
<!--end of modal instance-->
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="">
<div class="container">
<div class="text-center">
<i class="icon icon-Information color--primary"></i>
</div>
<h3 class="text-center">About the AP CS Exam Prep</h3>
<br>
<!--end of row-->
<div class="row">
<div class="col-sm-6 col-sm-offset-3">
<!-- <i class="icon icon-Fashion color--primary"></i> -->
<ul class="bullets">
<li><b>Course Session:</b> 1-1.5 hours per session; total 16 sessions (16-24 hours)</li>
<li><b>Course Schedule:</b> Please see the detailed topics and schedule for the current session below.</li>
<li><b>Grade:</b> 9th Grade+(including advanced junior high)</li>
<li><b>Programming Prerequisite:</b> Java</li>
<li><b>Session Date/Time:</b> Flexible schedule</li>
<li><b>Course Format:</b> Online Live Broadcasting</li>
<li><b>Tuition:</b> total $950-$1280 (The first session is free)</li>
</ul>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="text-center bg--secondary">
<div class="container">
<div class="row">
<div class="col-sm-8">
<i class="icon icon-Fashion color--primary"></i>
<h3>Who Should Take the Course</h3>
<ul class="bullets">
<li>If you have already studied AP CS or have been preparing the AP CS exam</li>
<li>If you already have a solid Java programming background</li>
<li>If you want to be familiar with AP CS exam and take it without a course offered from your high school</li>
<li>If you want to gain Computer Science research experience or plan to attend science fairs</li>
<li>If you want to choose Computer Science or Engineering as your major in college</li>
</ul>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<!-- <section class="text-center bg--secondary">
<div class="container">
<div class="row">
<div class="col-sm-8">
<i class="icon icon-Angry color--primary"></i>
<h3>Who Should Not Take the Course</h3>
<ul class="bullets">
<li>If you have already studied AP CS or have been preparing the AP CS exam (Please check out our AP CS Advanced Course)</li>
<li>If you want to learn AP CSP (Computer Science Principle) or take AP CSP exam (Please check out our AP CSP courses)</li>
<li>If you already have a solid Java programming background</li>
<li>If you want to learn other programming langauges (e.g., Python)</li>
<li>If you have already accomplished the advanced programming projects or attended science fairs (Please check out our science fair project course)</li>
</ul>
</div>
</div>
</div>
</section> -->
<section class="text-center">
<div class="container">
<div class="row">
<div class="col-sm-8">
<i class="icon icon-Video-Tripod color--primary"></i>
<h3>Why Choose Online Live Broadcast</h3>
<ul class="bullets">
<li>Students need to frequently accomplish programming practices during the AP CS learning process, so the traditional classroom setup is not appropriate for the hands-on learning experience</li>
<li>The traditioanl classroom is often affected by the logistics, class time, and learning equipment. Online course is more efficient, and easy for students and parents to arrange their learning time</li>
<li>Most of the online courses today are based on the pre-recorded videos. The drawback is that students often do not have a good plan or motivation to follow the lesson plan consistently</li>
<li>For programming beginners, they often need a lot of personalized guidance and help in the beginning of the study, but the video-based online course cannot ofter timely assistance and support</li>
<li>The online live broadcast course not only ensures students to follow the lesson plans and make consistent progress, but enables the live interaction with students just like in a real classroom</li>
</ul>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="text-center bg--secondary">
<div class="container">
<div class="row">
<div class="col-sm-8">
<i class="icon icon-Target color--primary"></i>
<h3>Course Goals</h3>
<ul class="bullets">
<li>Finish the complete set of exercises required by the AP CS exam</li>
<li>Build the solid Java programming skills and train the computational thinking</li>
<li>Be able to design and implement programming algorithms independently</li>
<li>Master how to learn and prepare the AP CS exam independently</li>
<li>Know the exam tips with confidence</li>
</ul>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class=" ">
<div class="container">
<div class="text-center">
<i class="icon icon-Calendar-3 color--primary"></i>
<h3 class="text-center">Course Curriculum</h3>
</div>
<div class="row">
<div class="col-md-8 col-md-offset-2 col-sm-10 col-sm-offset-1">
<div class="process-1">
<div class="process__item">
<h4>Chapter 1 Review
<br>Introductory Java Language Features</h4>
<!-- <ul class="bullets">
<li>Introduction to Computer Science, and AP CS</li>
<li>Introduction to Java programming</li>
<li>Setup the Java programming environment</li>
<li>Write your first Java program</li>
</ul> -->
</div>
<div class="process__item">
<h4>Chapter 1 Exercise
<br>Introductory Java Language Features</h4>
<!-- <ul class="bullets">
<li>Introduction to Computer Science, and AP CS</li>
<li>Introduction to Java programming</li>
<li>Setup the Java programming environment</li>
<li>Write your first Java program</li>
</ul> -->
</div>
<div class="process__item">
<h4>Chapter 2 Review
<br>Classes and Objects</h4>
<!-- <ul class="bullets">
<li>Understanding variables</li>
<li>Using Java Comments</li>
<li>Arithmetic expressions in Java programs</li>
<li>Java data types</li>
</ul> -->
</div>
<div class="process__item">
<h4>Chapter 2 Exercise
<br>Classes and Objects</h4>
<!-- <ul class="bullets">
<li>Understanding variables</li>
<li>Using Java Comments</li>
<li>Arithmetic expressions in Java programs</li>
<li>Java data types</li>
</ul> -->
</div>
<div class="process__item">
<h4>Chapter 3 Review
<br> Inheritance and Polymorphism</h4>
<!-- <ul class="bullets">
<li>Java String class</li>
<li>String methods</li>
<li>String usage and operations</li>
<li>Comparing strings</li>
</ul> -->
</div>
<div class="process__item">
<h4>Chapter 3 Exercise
<br> Inheritance and Polymorphism</h4>
<!-- <ul class="bullets">
<li>Java String class</li>
<li>String methods</li>
<li>String usage and operations</li>
<li>Comparing strings</li>
</ul> -->
</div>
<div class="process__item">
<h4>Chapter 4 Review
<br>Standard Classes</h4>
<!-- <ul class="bullets">
<li>Logical operations</li>
<li>If statement</li>
<li>Build complex logical control</li>
</ul> -->
</div>
<div class="process__item">
<h4>Chapter 4 Exercise
<br>Standard Classes</h4>
<!-- <ul class="bullets">
<li>Logical operations</li>
<li>If statement</li>
<li>Build complex logical control</li>
</ul> -->
</div>
<div class="process__item">
<h4>Chapter 5 Review
<br>Program Design and Analysis</h4>
<!-- <ul class="bullets">
<li>Repetition and iteration in Java</li>
<li>Java While Loop</li>
<li>Loop control and infinite loops</li>
</ul> -->
</div>
<div class="process__item">
<h4>Chapter 5 Exercise
<br>Program Design and Analysis</h4>
<!-- <ul class="bullets">
<li>Repetition and iteration in Java</li>
<li>Java While Loop</li>
<li>Loop control and infinite loops</li>
</ul> -->
</div>
<div class="process__item">
<h4>Chapter 6 Review
<br>Arrays and Array Lists</h4>
<!-- <ul class="bullets">
<li>Java For loop</li>
<li>Nested loops</li>
<li>Loops in practice</li>
</ul> -->
</div>
<div class="process__item">
<h4>Chapter 6 Exercise
<br>Arrays and Array Lists</h4>
<!-- <ul class="bullets">
<li>Java For loop</li>
<li>Nested loops</li>
<li>Loops in practice</li>
</ul> -->
</div>
<div class="process__item">
<h4>Chapter 7 Review
<br>Recursion</h4>
<!-- <ul class="bullets">
<li>Standard input and output</li>
<li>File input and output</li>
<li>Manipulating data using loops and conditional statement</li>
</ul> -->
</div>
<div class="process__item">
<h4>Chapter 7 Exercise
<br>Recursion</h4>
<!-- <ul class="bullets">
<li>Standard input and output</li>
<li>File input and output</li>
<li>Manipulating data using loops and conditional statement</li>
</ul> -->
</div>
<div class="process__item">
<h4>Chapter 8 Review
<br>Sorting and Searching</h4>
<!-- <ul class="bullets">
<li>Declaring and initializing arrays</li>
<li>Manipulating arrays with loops</li>
<li>Creating parallel arrays</li>
</ul> -->
</div>
<div class="process__item">
<h4>Chapter 8 Exercise
<br>Sorting and Searching</h4>
<!-- <ul class="bullets">
<li>Declaring and initializing arrays</li>
<li>Manipulating arrays with loops</li>
<li>Creating parallel arrays</li>
</ul> -->
</div>
</div>
<!--end process-->
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="bg--secondary">
<div class="container">
<div class="text-center">
<i class="icon icon-Administrator color--primary"></i>
<h3>Course Instructor</h3>
</div>
<div class="row">
<div class="col-sm-6 col-sm-offset-3">
<p>
<a href="https://yusun.io" target="_blank">Dr. Yu Sun</a> is an Assistant Professor of Computer Science at Cal Poly Pomona. He has expertise in the areas of cloud computing, mobile computing, Internet-Of-Things (IoT) and large-scale distributed systems. Before joining Cal Poly Pomona, he was a post-doc research associate at Vanderbilt University, conducting the research on applying Bluetooth sensors to build large-scale indoor navigation system, which has been transferred into a startup company - <a href="https://zii.io" target="_blank">Ziiio</a>. He has extensive software industry experiences on building large-scale mobile, cloud, embedded and IoT systems. He worked as the Director of Engineering at <a href="https://cloudpoint.io/" target="_blank">Cloudpoint Labs</a>, where he led the research and development on the infrastructure of the high-precision 3D augmented reality technology for mobile platforms; He also worked in Amazon Web Services as a software engineer and participated in the development of the world’s first cloud-based mobile web browser for Amazon Kindle Fire tablet. Recently, he founded <a href="http://softcom.io" target="_blank">SoftCom Lab</a> in Computer Science Department to organize students on research and startup projects.
</p>
<p>
Dr. Sun is passionate about Computer Science education. He has been actively working on a number of outreach activities related with high schools and colleges. He is the recipient of Google IgniteCS award. Since 2016, an undergraduate team he led offered <a href="https://cppignite.com" target="_blank">CS courses</a> for middle school and high schools in Pomona, Hacienda Heights, and Rialto School Districts. In Summer 2016, he organized the the Computer Science Department’s first <a href="https://cppsummercamp.com" target="_blank">mobile app programming summer camp</a> for 18 students from 12 different high school and middle schools. In addition, Dr. Sun is the faculty director for the Google AppliedCS program, which brings Google’s engineers to campus to teach students hands-on programming techniques and skills. Recently, Dr. Sun has been invited to become a judge for the California State Science Fair (CSSF) and the Intel International Science and Engineering Fair (ISEF). In May 2017, Dr. Sun organized the first <a href="https://www.cpp.edu/~hspc/" target="_blank">Southern California High School Programming Contest</a>. A total of 96 students from 24 different high schools competed in the content.
</p>
<p>
In early 2017, Dr. Sun founded <a href="https://codingmindsacademy.com/" target="_blank">Coding Minds Academy</a>, in order to further promote CS education for K12 students. The mission of the academy is to grow students interests and passion about CS, and enable students to learn practical and useful technologies in a fun context, by always doing and building things.
</p>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="text-center ">
<div class="container">
<h2 class="text-center">Course Highlights</h2>
<div class="row">
<div class="col-sm-4">
<div class="feature feature-3 boxed boxed--lg boxed--border">
<i class="icon icon--lg icon-Video-Tripod color--primary"></i>
<h4>24 Hours Online Live Course</h4>
<p>
Stay with the study plan, and learn consistently
</p>
</div>
<!--end feature-->
</div>
<div class="col-sm-4">
<div class="feature feature-3 boxed boxed--lg boxed--border">
<i class="icon icon--lg icon-Administrator color--primary"></i>
<h4>Learn with Professors</h4>
<p>
Gain extra experiences about the real industry and research
</p>
</div>
<!--end feature-->
</div>
<div class="col-sm-4">
<div class="feature feature-3 boxed boxed--lg boxed--border">
<i class="icon icon--lg icon-Hand color--primary"></i>
<h4>Live and Real-time Interaction</h4>
<p>
Get your question answered in class and get help from the assistants
</p>
</div>
<!--end feature-->
</div>
<div class="col-sm-4">
<div class="feature feature-3 boxed boxed--lg boxed--border">
<i class="icon icon--lg icon-Idea color--primary"></i>
<h4>QA Discussion and Virtual Office Hours</h4>
<p>
Every of your questions will be answered, so you will never be bothered by guessing the correct answer
</p>
</div>
<!--end feature-->
</div>
<div class="col-sm-4">
<div class="feature feature-3 boxed boxed--lg boxed--border">
<i class="icon icon--lg icon-Air-Balloon color--primary"></i>
<h4>Well-Designed Assignments and Projects</h4>
<p>
Learn by doing is the key for CS study, and all the assignments and projects are designed for the goals
</p>
</div>
<!--end feature-->
</div>
<div class="col-sm-4">
<div class="feature feature-3 boxed boxed--lg boxed--border">
<i class="icon icon--lg icon-Key color--primary"></i>
<h4>Apply Colleges with More Experiences</h4>
<p>
Programming is just the first step. Build projects, attend science fairs will help you get into the top unversities
</p>
</div>
<!--end feature-->
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="text-center bg--secondary hidden" ng-hide="true">
<div class="container">
<h2 class="text-center">注册报名</h2>注册报名</h2>Registration</h2>
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="pricing pricing-1 boxed boxed--lg boxed--border">
<h3>Price</h3>
<span class="h2"><strong>$950 - $1280</strong></span>
<span class="type--fine-print">All credit cards are supported</span>
<hr>
<ul>
<li><span class="checkmark bg--primary-1"></span><span>The first session is FREE</span></li>
<li><span class="checkmark bg--primary-1"></span><span>24 hours live sessions</span></li>
<li><span class="checkmark bg--primary-1"></span><span>Interaction and get help anytime</span></li>
<li><span class="checkmark bg--primary-1"></span><span>Learn more with professors</span></li>
</ul>
<a class="btn btn--primary" href="https://codingminds.wufoo.com/forms/w8nfa6l1wdf8xc/">
<span class="btn__text">
REGISTER NOW
</span>
</a>
</div><!--end of pricing-->
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<!-- <section class="switchable ">
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-12">
<table class="border--round table--alternate-row">
<thead>
<tr>
<th class="col-sm-3 col-md-3">日期</th>
<th class="col-sm-3 col-md-3">时间</th>
<th class="col-sm-3 col-md-3">地点</th>
<th class="col-sm-2 col-md-2">价格</th>
<th class="col-sm-1 col-md-1">注册</th>
</tr>
</thead>
<tbody>
<tr>
<td>7/3-7/7</td>
<td>9AM-12PM</td>
<td>Irvine, CA</td>
<td>$180/周</td>
<td><a class="btn btn--primary" target="_blank" href="https://codingminds.wufoo.com/forms/r930rui0cs574j/">
<span class="btn__text">注册</span>
</a></td>
</tr>
<tr>
<td>7/24-7/28</td>
<td>9AM-12PM</td>
<td>Irvine, CA</td>
<td>$180/周</td>
<td><a class="btn btn--primary" target="_blank" href="https://codingminds.wufoo.com/forms/r930rui0cs574j/">
<span class="btn__text">注册</span>
</a></td>
</tr>
<tr>
<td>7/31-8/4</td>
<td>9AM-12PM</td>
<td>Irvine, CA</td>
<td>$180/周</td>
<td><a class="btn btn--primary" target="_blank" href="https://codingminds.wufoo.com/forms/r930rui0cs574j/">
<span class="btn__text">注册</span>
</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</section> -->
<!-- <section class="bg--secondary">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="text-block">
<h4>Frequently Asked Questions</h4>
</div>
</div>
<div class="col-md-4">
<div class="text-block">
<h5>How do refunds work?</h5>
<p>
Open a
<a href="#">refund request</a> with us and we can work with you to resolve it ASAP.
</p>
</div>
<div class="text-block">
<h5>Do I need to buy a SPRK robot?</h5>
<p>
No. We will provide a SPRK robot and a tablet for each student to use during the camp.
</p>
</div>
<div class="text-block">
<h5>Is there a bulk-buy discount?</h5>
<p>
We have corporate and enterprise arrangements that our pricing team can assist with on a case-by-case basis.
<a href="#">Contact Us</a> for info.
</p>
</div>
</div>
<div class="col-md-4">
<div class="text-block">
<h5>Is there any programming background required?</h5>
<p>
No. The program has been designed to teach young kids the fundamentals of programming with zero background.
</p>
</div>
<div class="text-block">
<h5>Do I need an SSL certificate?</h5>
<p>
This depends on whether your plan to process the payment on your site or not. We recommend using a third-party provider to unburden yourself.
</p>
</div>
</div>
</div>
</div>
</section> -->
<section class="space--xs imagebg" data-gradient-bg='#4876BD,#5448BD,#8F48BD,#BD48B1'>
<div class="container">
<div class="row">
<div class="cta cta--horizontal text-center-xs">
<div class="col-sm-9">
<h4>Interested in learning programs with fun?</h4>
</div>
<!-- <div class="col-sm-5">
<p class="lead">
Start learning programs now
</p>
</div> -->
<div class="col-sm-3 text-right text-center-xs">
<a class="btn btn--primary type--uppercase" target="_blank" href="page-contact-us.html">
<span class="btn__text">
Contact Us
</span>
</a>
</div>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<footer class="footer-3 text-center-xs space--xs ">
<div class="container">
<div class="row">
<div class="col-sm-6">
<img alt="Image" class="logo" src="img/my/logo1.png" />
<ul class="list-inline list--hover">
<li>
<a href="#">
<!-- <span class="type--fine-print">Get Started</span> -->
</a>
</li>
<li>
<a href="#">
<span class="type--fine-print">Contact@CodingMindsAcademy.com</span>
</a>
</li>
</ul>
</div>
<div class="col-sm-6 text-right text-center-xs">
<ul class="social-list list-inline list--hover">
<li>
<a href="#">
<i class="socicon socicon-google icon icon--xs"></i>
</a>
</li>
<li>
<a href="#">
<i class="socicon socicon-twitter icon icon--xs"></i>
</a>
</li>
<li>
<a href="#">
<i class="socicon socicon-facebook icon icon--xs"></i>
</a>
</li>
<li>
<a href="#">
<i class="socicon socicon-instagram icon icon--xs"></i>
</a>
</li>
</ul>
</div>
</div>
<!--end of row-->
<div class="row">
<div class="col-sm-6">
<p class="type--fine-print">
Learn coding with fun | <a href="apcsprep-cn.html">中文</a>
</p>
</div>
<div class="col-sm-6 text-right text-center-xs">
<span class="type--fine-print">©
<span class="update-year"></span> Coding Minds Inc.</span>
<a class="type--fine-print" href="#">Privacy Policy</a>
<a class="type--fine-print" href="#">Legal</a>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</footer>
</div>
<!--<div class="loader"></div>-->
<a class="back-to-top inner-link" href="#start" data-scroll-class="100vh:active">
<i class="stack-interface stack-up-open-big"></i>
</a>
<script src="js/jquery-3.1.1.min.js"></script>
<script src="js/flickity.min.js"></script>
<script src="js/easypiechart.min.js"></script>
<script src="js/parallax.js"></script>
<script src="js/typed.min.js"></script>
<script src="js/datepicker.js"></script>
<script src="js/isotope.min.js"></script>
<script src="js/ytplayer.min.js"></script>
<script src="js/lightbox.min.js"></script>
<script src="js/granim.min.js"></script>
<script src="js/countdown.min.js"></script>
<script src="js/twitterfetcher.min.js"></script>
<script src="js/spectragram.min.js"></script>
<script src="js/smooth-scroll.min.js"></script>
<script src="js/scripts.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-98249988-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>