Answer:
#include <iostream>
using namespace std;
int main()
{
    int i = 45; 
    for ( i = 45; i <=165; i = i + 6) 
        cout << i << endl;
}
Explanation:
I corrected your code and highlighted the mistakes. Even though you wrote the correct algorithm, your code did not compile because of the typos you made. 
Remember, C++ is a case-sensitive language. That means, "For" is not same as "for".
Generally, variables and keywords are written in lower case. Of course, there are exceptions, such as constant variables are all written in uppercase letter and class names start with an uppercase letter.
 
        
             
        
        
        
Answer:
Explanation:
A ruler 
;););););););););););););););)
 
        
             
        
        
        
The answer that is a record in a relational database is called; A row
<h3>What is a record in relational database?</h3>
In relational databases, a record is defined as a group of related data held within the same structure. Furthermore, we can say that a record is a grouping of fields within a table that reference one particular object.
Now, in relational database, a row is called a record because each row, contains a unique instance of data or key for the categories defined by the columns.
Read more about Relational Database at; brainly.com/question/13262352
#SPJ12