Answer:
Logical flow
Explanation:
In speech writing, LOGICAL FLOW can be defined as all aspects of your writing that helps the reader move smoothly from one sentence to the next, and from one paragraph to another.
With the Logical flow, one will be able to guide his thoughts coherently and sequentially in which Readers can fully absorb and easily understand the message.
Answer:
A computer is an electronic device that manipulates information, or data. It has the ability to store, retrieve, and process data. You may already know that you can use a computer to type documents, send email, play games, and browse the Web
Explanation:
Follow me..............
String because in python a succession of Unicode characters is called a string. Unicode was created to encompass all characters in all languages and bring encoding standardization.
<h3>What is python?</h3>
Python is a programming language for creating websites and software, as well as automating processes and conducting data analysis.
Python is a general-purpose programming language, which means it can be used to develop a wide range of applications and isn't tailored to any particular problem.
Thus, option B is correct.
For more details about python, click here
brainly.com/question/13441316
#SPJ1
Answer:
Explanation:
#include <iostream>
using namespace std;
int main()
{
string cwords[8]={"ten", "fading", "post", "card", "thunder", "hinge", "trailing", "batting"};
string temp="";
for (int i=0; i<8; i++)
{
temp=cwords[i];
int j=temp.length();
if (temp[j-3]=='i' && temp[j-2]=='n' && temp[j-1]=='g')
{
cout<<temp<<endl;
}
}
return 0;
}