Answer:
I think this answer would be...
Three of the rights guaranteed by the bill of rights would be freedom of speech, freedom of religion, and the right to bear arms. Freedom of speech lets me say what I need to or what but there are consequences to what I say. Freedom of religion allows me to practice any religion in the united states without it being illegal. The right to bear arms allows me to own a gun to hunt or protect myself when needed with a license or orange card.
Answer:
#include <iostream>
#include <stdlib.h>
#include <time.h>
using namespace std;
int main()
{
srand (time(NULL)); //initialize random seed
int guess;
int number = rand() % 2; //generate random number 0 or 1
cout<<"Enter the guess (0 or 1): ";
cin>>guess; //store in guess
if(number == guess){ //check if number equal to guess
cout<<"Guess is correct."<<endl; //if true print correct message.
}else{
cout<<"Guess is incorrect."<<endl; //otherwise print correct message.
}
return 0;
}
Explanation:
first include the three library iostream for input/output, stdlib,h for using the rand() function and time for using the time() function.
create the main function and initialize the random number generation seed, then generate the random number using the function rand() from 0 to 1.
after that, take input from user and then with the help of conditional statement if else check if random number is equal to guess number or not and print the appropriate message.
Answer:
1. Wrong as per my knowledge, SQLite may be an electronic database software that stores data in relations(tables).
2. Wrong. Content provider interface controls the flow of knowledge from your android application to an external data storage location. Data storage is often in any database or maybe it'll be possible to store the info in an SQLite database also.
3.Right. SQLite uses one file to store data. It also creates a rollback file to backup the stored data/logs the transactions.
4. Wrong. The queries are almost like a traditional electronic database system, the queries are going to be answered as per the conditions given and should return a group of answers or one answer depending upon the info and sort of query used.
5. Right. A cursor helps to point to one entry within the database table. this may be very helpful in manipulating the present row of the query easily.
Answer: Reports
Explanation:
Some companies always ask to the employees to create the particular report for the session with their clients.
As, the report is the main communication channel between the company employees and clients where all the information are complied together and focus for transmitting the data clearly.
Efficient reports are basically help in the decision making and problem with sufficient knowledge.
On the other hand, all the other options are not needed for session with the clients in the organization. Therefore, report is the correct option.
Answer:
The Correct answer is option A: Domain Name System
Explanation:
Let look at each option;
Domain Name System:
We we type an address for example brainly website it goes to DNS server and find the IP address of the computer where brainly website is located. Then the request goes to the IP address. This is the mechanism of DNS.
Resource Locator:
Resource Locator is the URL For example brainly website
Web Browser:
Web browser is a software which is used for internet browsing for example Firefox
Web Server:
Web Server is a computer which give services to clients.