11/11/2016
"Quadratic Equations" just got more simple.
Just follow this link:
https://www.mathsisfun.com/algebra/quadratic-equation.html
Quadratic Equations
Do you see b2 − 4ac in the formula above? It is called the Discriminant, because it can "discriminate" between the possible types of answer:
14/09/2016
14 September, 2016.
Mathematics: Tips & Tricks
How to calculate "a square" ?
See in the picture ...
04/09/2016
04-09-2016 :: English :: Quiz of the Day
[ Comment your answer, the correct answer will be disclosed at Night at 10pm ]
1.
Question: Find the closest Antonym.
Word: Elan
Meaning: Spirit, Enthusiasm
Options: (a) Brashness, (b) Dignity, (c) Composure, (d) Nervousness.
2.
Question: Choose the correctly spelt word.
Options: (a) Efflorascence, (b) Efflorescence, (c) Efllorescence, (d) Eflorescence.
3.
Question: Substitute the sentence with a word.
Sentence: One who does not believe in the existence of God.
04/09/2016
04-09-2016 :: English :: Idiom/Phrase of the Day
Idiom: An apple of Discord
Meaning: A cause of Quarrel
Usage: Kashmir has been an apple of discord between India and Pakistan.
04/09/2016
04-09-2016 :: Computer Science :: Technical Questions
Question 1: Other than in a FOR statement, when is the comma operator used?
Answer: The comma operator is commonly used to separate variable declarations, function arguments, and expressions, as well as the elements of a for statement.
Question 2: How can you tell whether a Loop ended prematurely?
Answer: Generally, loops are dependent on one or more variables. Your program can check those variables outside the loop to ensure that the loop executed properly.
Question 3: What is the difference between GOTO and longjmp( ) and setjmp()?
Answer: GOTO statement implements a local jump of program ex*****on and the longjmp() and setjmp() functions implement a nonlocal or far jump of program ex*****on. Generally, a jump in the ex*****on of any kind should be avoided because it is not considered a good programming practice to use such statements as GOTO and longjmp in your program.
Question 4: What is LVALUE?
Answer: The LVALUE is an expression to which a value can be assigned. The LVALUE expression is located on the left side of an assignment statement, whereas a RVALUE is located on the right side of an assignment statement. Each assignment statement must have a LVALUE and a RVALUE. The LVALUE expression must reference a storable variable in memory. It cannot be constant.
Question 5: Can an array be a LVALUE?
Answer: Is an ARRAY an expression to which we can assign a value? The answer to this question is, No! Because an array is composed of several separate array elements that cannot be treated as a whole for assignment purposes. The following statement is, therefore, illegal:
int x[5], y[5];
x = y;
You could, however, use a for loop to iterate through each element of the array and assign values individually
04/09/2016
04-09-2016 :: English :: Words of the Day
Word 1: Paean
[ pee-uh n ] (Noun)
Definition: a song, film, or piece of writing that praises someone or something very enthusiastically
Example: "The song is a paean to solitude and independence."
Synonyms & Related Words: Praising and Applauding.
Word 2: Crucible
[ kroo-suh-buh l ] (Noun)
Definition 1: a place or situation that forces people to change or make difficult decisions.
Example: “New York is large, glamorous, easy-going, kindly and incurious, but above all it is a crucible, because it is large enough to be incurious.”
Definition 2: A Container in which metals or other substances can be heated to very high temperatures.
Synonyms & Related Words: Laboratory Equipment.
Word 3: Juxtapose
[ juhk-stuh-pohz ] (Verb)
Definition: To put things that are not similar next to each other.
Example: “The exhibition juxtaposes Picasso's early drawings with some of his later works”
Synonyms & Related Words: Placing and Positioning an object.
Word 4: Gratuity
[ gruh-tyoo-i-tee ] (Noun, Plural)
Definitioin 1: A small amount of money for someone who has provided you with a service, in addition to the official amount and for their personal use.
Example: "The guides sometimes receive gratuities from the tourists, which supplement their salaries."
Definition 2: A large amount of money given to someone on leaving their job.
Example: "After he was disabled in the accident, he left the army with a one-off gratuity of £5,000."
Synonyms & Related Words: Payment Methods.
Word 5: Slyboots
[ slahy-boots ] (Noun, used with singular Verb)
Definition: A person who avoids showing or telling other people what he or she is thinking or intending.
Example: "You old slyboots! Why didn't you tell us about your new girlfriend?"
Synonyms & Related Words: Secrecy, Privacy.
03/09/2016
03-09-2016 :: Computer Science
Technical Question 1:
What is a local block?
Answer:
A local block is any portion of a C program that is enclosed by the left brace ({) and the right brace (}).
An if statement or a switch statement can also contain braces, so the portion of code between these two braces would be considered a local block.
Technical Question 2:
Should variables be stored in local blocks?
Answer:
The use of local blocks for storing variables is unusual and therefore should be avoided, with only rare exceptions. One of these exceptions would be for debugging purposes, when you might want to declare a local instance of a global variable to test within your function. You also might want to use a local block when you want to make your program more readable in the current context.
Technical Question 3:
When is a SWITCH statement better than multiple IF statements?
Answer:
A SWITCH statement is generally best to use when you have more than two conditional expressions based on a single variable of numeric type.
Technical Question 4:
Is a default case necessary in a SWITCH statement?
Answer:
No, but it is not a bad idea to put Default statements in SWITCH statements for error or logic-checking purposes.
Technical Question 5:
Can the last case of a SWITCH statement skip including the Break?
Answer:
Even though the last case of a switch statement does not require a break statement at the end, you should add break statements to all cases of the switch statement, including the last case. You should do so primarily because your program has a strong chance of being maintained by someone other than you who might add cases but neglect to notice that the last case has no break statement.
03/09/2016
03-09-2016 :: English
Word of the Day1: Gaposis
[Gap-oh-sis] (Noun)
Definition: A noticeable gap or series of Gaps, as between fastened buttons or snaps on an overly tight garment.
Word of the Day 2: Quodlibet
[Kwahd-luh-bet] (Noun)
Definition 1: a philosophical or theological point proposed for disputation. / A topic or issue offered for debate.
Definition 2: a whimsical combination of familiar melodies or texts. / A fanciful medley of tunes or musical pieces.
Word of the Day 3: Pundit
[Pun-dit] (Noun)
Definition: Somebody who expresses an opinion.