Author Archives: Aurora Alvarado

Hey! Check my code for the question 2 of the #Quiz10 on Github https://github.com/Auralgo/-TC1017/blob/master/quiz102.cpp I got some information from this page http://www.lawebdelprogramador.com/foros/Dev-C/1462757-Ayuda-con-un-programa-que-calcule-el-producto-punto-de-dos-vectores-interviniendo-un-vector.html but the problem

Hey! Check my code for the question 2 of the on Github https://github.com/Auralgo/-TC1017/blob/master/quiz102.cpp I got some information from this page http://www.lawebdelprogramador.com/foros/Dev-C/1462757-Ayuda-con-un-programa-que-calcule-el-producto-punto-de-dos-vectores-interviniendo-un-vector.html but the problem with that code is that it allows you to do a dot product of non same size vectors.

Check my Question 1 of the #Quiz10 on my Github! https://github.com/Auralgo/-TC1017/blob/master/quiz10.cpp #TC1017. I got some help for the implementation of the arrays by my DEAR

Check my Question 1 of the on my Github! https://github.com/Auralgo/-TC1017/blob/master/quiz10.cpp . I got some help for the implementation of the arrays by my DEAR friend Abel Chavez, you're a nerd! <3

#ECOS

Bonus quiz done!

Question 4 of the #Quiz9 on Github https://github.com/Auralgo/-TC1017/blob/master/qu4.cpp #TC1017

#Quiz9 question 3. Here’s the link to my code on Github. https://github.com/Auralgo/-TC1017/blob/master/qu3.cpp #TC1017

question 3. Here's the link to my code on Github. https://github.com/Auralgo/-TC1017/blob/master/qu3.cpp

The link to my question2 code for the #Quiz9 on Github https://github.com/Auralgo/-TC1017/blob/master/qu2.cpp #TC1017

The link to my question2 code for the on Github https://github.com/Auralgo/-TC1017/blob/master/qu2.cpp

Here’s a link to my code for the question 1 of the #Quiz9 on Github https://github.com/Auralgo/-TC1017/blob/master/qu1.cpp #TC1017

Here's a link to my code for the question 1 of the on Github https://github.com/Auralgo/-TC1017/blob/master/qu1.cpp

#Mastery25 Creation/use of strings

A string is a series of characters treated as a single unit. A string may include letters, digits and various special characters written in double quotation marks: “Aurora Alvarado”

Strings are like arrays, because an array name is also a constant pointer to its first element. 

A string can be stored in an array using steam extraction with cin:

cin >> word;

The string entered by the user is stored in word. 

For more information about string look for “C++ How to program” by Deitel

Still having problems with #WSQ11 Yo soy 196, but here’s the link to my code on Github https://github.com/Auralgo/-TC1017/blob/master/palind.cpp #TC1017

Still having problems with Yo soy 196, but here's the link to my code on Github https://github.com/Auralgo/-TC1017/blob/master/palind.cpp

#Mastery18 Nesting of conditional statements

The ifif...else and nested if...else statement are used to make one-time decisions in C++ Programming, that is, to execute some code/s and ignore some code/s depending upon the test condition. Without decision making, the program runs in similar way every time. 

The if statement checks whether the test condition is true or not. If the test condition is true, it executes the code/s inside the body of if statement. But it the test condition is false, it skips the code/s inside the body of if statement.

The if keyword is followed by test condition inside parenthesis ( ). If the test condition is true, the codes inside curly bracket is executed but if test condition is false, the codes inside curly bracket { } is skipped and control of program goes just below the body of if as shown in figure above.

I found the code shown in the picture in http://www.tutorialspoint.com/cplusplus/cpp_nested_if.htm and information in http://www.programiz.com/cpp-programming/if-else 

Just simple conditionals!