Answer:
Google it, I can't send links, but the brainly faq link should show up
Answer is given below
Explanation:
differences between a file-processing system and a database management system is given below
file-processing system
- File system is a software that manages and organizes the files in a storage medium within a computer.
- It doesn’t provide backup and recovery of data if it is lost.
- There is less data consistency in file system.
- File systems provide less security in comparison to DBMS.
- It is less complex as compared to DBMS.
database management system
- DBMS is a software for managing the database
- It provides backup and recovery of data even if it is lost.
- DBMS has more security mechanisms as compared to file system
- It has more complexity in handling as compared to file system.
- There is more data consistency because of the process of normalization.
It allows for more accurate sizing of networks.
Answer:
Following are the code to the given question:
#include <iostream>//header file
using namespace std;
int main()//main method
{
int r=26,x,y;//defining integer variable
char c;//defining a character variable
for(x= 1; y<= r; x++)//using for loop for count value
{
for(y= 1; y<= x; y++)//using for loop to convert value in triangle
{
c=(char)(y+64);//convert value into character
cout << c;//print character value
}
cout << "\n";//use print method for line break
}
return 0;
}
Output:
Please find the attachment file.
Explanation:
In this code, three integer variable "x,y, and r", and one character variable "c" is declared, that is used in the nested for loop, in the first for loop it counts the character value and in the next for loop, it converts the value into a triangle and uses the char variable to print its character value.