1. Using VPN : Using VPN changes the IP address of your computer, changing the server for VPN again and again will change the IP and thus the omegle may suspect you as a robot or someone trying to load their server traffic and thus their algorithm banns it.
2. Leaving the account logged in : Sometimes when we shut a laptop from a friends house or another computer in house we leave the account logged in and thus if the account is logged in more then 5-6 times the server may think that the account is being used by someone else and thus banns it.
Answer:
The code is designed using C++ with comments
Explanation:
#include<bits/stdc++.h>
using namespace std;
int main(){
int pay, hours; //declaring hourly pay rate and number of hours worked
cout<<"Enter hourly pay rate: "<<endl; //taking user input
cin>>pay;
cout<<"Enter hours worked: "<<endl; //taking user input
cin>>hours;
int gross;
if (hours<=40){
gross=hours*pay; //calculating gross pay
}
else if (hours>40){
gross=40*pay+(hours-40)*1.5*pay; //calculating gross pay for overtime
}
int withholding, netpay;
//calculation of withholding..
if (gross>1000){
withholding=(gross*28)/100;
}
else if (gross>600 && gross<=1000){
withholding=(gross*21)/100;
}
else if (gross<=600){
withholding=(gross*10)/100;
}
netpay=gross-withholding; //calculation of netpay
cout<<"Gross pay is $"<<gross<<endl; //output
cout<<"Net pay is $"<<netpay<<endl; //output
return 0;
}
Answer:
C. Lists involve data with multiple themes
Explanation:
<em>First of all, it will be beneficial to explain all the concepts involved.</em>
<em />
A spreadsheet is an electronic ledger in which data is arranged in rows and columns of a grid and can be manipulated and used in calculations.
A database can be defined as a structured set of data held in a computer, especially one that is accessible in various ways.
A theme in data storage refers to the subject matter or topic that categorizes various data sets.
A spreadsheet can be used to store and analyse simple data sets as shown in the options A, B and D. However for option C, a database must be used if it needs to be done accurately.
A data base is more robust than a spreadsheet and can accommodate a lot more diversities in the data sets.
Spreadsheets are built to simplify data analysis, and have their candid limitations - they cannot assure data integrity or consistency when dealing with data of various subject matters.
Lists that involve data with multiple themes can be easily handled with data bases, because data bases specialize in collecting raw data in a tabular form which cannot be formatted. This helps sort out the data into their various themes.
The tables on a database can be programmed to accept a particular theme of data, and nothing else. however, this cannot be done with spreadsheets, as the cells accept the data first before it is formatted to the data type it is. Thus databases help ensure consistency and integrity of the data when dealing with data of multiple themes
When investing in technology there are four types of feasibility to look for, economic feasibility which determines if the benefits outweigh the costs, operational feasibility which determines if the system is used the way it is intended, technical feasibility which determines if the technology exists to make the new system work, and schedule feasibility which determines if the technology can be implemented in a timely manner.
The only answer that does not fit one of these feasibilities is C) How does it look?
Answer:
public class CheckPalindrome{
public static boolean IsPalindrome(String str){
if(str.Length<1)
{
return true;
}
else
{
if(str[0]!=str[str.length-1])
return false;
else
return IsPalindrome(str.substring(1,str.Length-2));
}
}
public static void main(string args[])
{
//console.write("checking palindromes");
string input;
boolean flag;
input=Console.ReadLine();
flag= IsPalindrome(input);
if(flag)
{
Console.WriteLine("Received"+input+"is indeed palindrome");
}
else
{
Console.WriteLine("received"+input+"is not a palindrome");
}
}
Explanation: