Mindblown: a blog about philosophy.
-
Grammar Rule 7
When using two or more adjectives together, the usual order is opinion-adjective + fact-adjective + noun. (There are some additional rules for the order of fact adjectives.) I saw a nice French table. That was an interesting Shakespearian play.
-
Grammar Rule 6
Adjectives usually come before a noun (except when a verb separates the adjective from the noun). I have a big dog. She married a handsome Italian man. (Her husband is rich.)
-
Grammar Rule 5
When two singular subjects are connected by or, use a singular verb. The same is true for either/or and neither/nor. John or Mary is coming tonight. Either coffee or tea is fine. Neither John nor Mary was late.
-
Grammar Rule 4
The subject and verb must agree in number, that is a singular subject needs a singular verb and a plural subject needs a plural verb. John works in London. That monk eats once a day. John and Mary work in London. Most people eat three meals a day.
-
Grammar Rule 3
Every sentence must have a subject and a verb. An object is optional. Note that an imperative sentence may have a verb only, but the subject is understood. John teaches. John teaches English. Stop! (i.e. You stop!)
-
Grammar Rule 2
The order of a basic positive sentence is Subject-Verb-Object. (Negative and question sentences may have a different order.) John loves Mary. They were driving their car to Bangkok.
-
Grammar Rule 1
1. A sentence starts with a capital letter and ends with a period/full stop, a question mark or an exclamation mark. see Punctuation The fat cat sat on the mat. Where do you live? My dog is very clever!
-
What is Recursion?
Dart Recursion is the method where a function calls itself as its subroutine. It is used to solve the complex problem by dividing it into sub-part. A function which is called itself again and again or recursively, then this process is called recursion. The iterators can be an option to solve problems, but recursion is…
-
The main() function
The main() function is the top-level function of the Dart. It is the most important and vital function of the Dart programming language. The execution of the programming starts with the main() function. The main() function can be used only once in a program. It is responsible for all types of execution such as user-defined statements, functions, and libraries function. The…
-
Dart Anonymous Function
We have learned the Dart Function, which is defined by using a user-define name. Dart also provides the facility to specify a nameless function or function without a name. This type of function is known as an anonymous function, lambda, or closure. An anonymous function behaves the same as a regular function, but it does not…
Got any book recommendations?