Answer:
dont think u can actually report someone, pero u can report their questions/answers by clicking on the little flag icon and selecting why u want to report them. if they get reported enough they can be banned for about a day or so,, or they could get permanently banned
Explanation:
The answer to this is FALSE. I just took the test & got 100%.
Copying text from a web browser is an example of an intelligent automation solution that uses artificial intelligence.
<h3>What is intelligent automation solution?</h3>
The intelligent automation solution is the combination of new technologies such as artificial intelligence and robotic automations that helps to enhance and enable the program to learn, interpret, and respond by itself.
The complete questions is as follows:
- signing-in to various desktop applications
- filling out forms with basic contact information
- copying text from a web browser
- recognizing and interpreting natural language
The best example for intelligent automation solution is copying text from web browser as the AI interprets the command and the robotic automation will provide its output.
Therefore, option 3. is correct.
Learn more about intelligent automation solution, here:
brainly.com/question/24977867
#SPJ1
Answer: <u>EXE files are mainly used to indicate that the file is executable</u>
<u>MSI files show that the file is a Windows Installer</u>
<u />
Explanation:
EXE files are mainly used to indicate that the file is executable
MSI files show that the file is a Windows Installer
<u>MSI files are only used with launchers, EXE does not need to be used with launchers </u>
Hope this helped :)
#include<stdio.h>
#include<stdlib.h>
int comment1(FILE *fp)
{
char ch;
int count=0;
while(fscanf(fp,"%c",&ch)!=EOF)
{
if(ch=='\n')
{
return count;
}
count++;
}
return count;
}
int comment2(FILE *fp)
{
char ch;
int count=0;
while(fscanf(fp,"%c",&ch)!=EOF)
{
if(ch=='*')
{
fscanf(fp,"%c",&ch);
if(ch=='/')
{
return count;
}
count++;
}
count++;
}
return 0;
}
int main()
{
printf("Enter the file name:");
char s[1000],ch,ch1;
scanf("%s",s);
FILE*fp;
fp = fopen(s,"r");
int count=0;
while(fscanf(fp,"%c",&ch)!=EOF)
{
if(ch=='\"')
{
while(fscanf(fp,"%c",&ch)!=EOF)
{
if(ch=='\"')
{
break;
}
if(ch=='\\')
{
fscanf(fp,"%c",&ch);
}
}
}
else if(ch=='/')
{
fscanf(fp,"%c",&ch);
if(ch=='/')
{
count += comment1(fp);
}
else if(ch=='*')
{
count += comment2(fp);
}
}
}
printf("%d\n",count);
return 0;
}