Answer:
HARASSMENT
IMPERSONATION
INAPPROPRIATE PHOTOGRAPHS
WEBSITE CREATION
VIDEO SHAMING
• Enlist the odd numbers out of them
• Enlist the prime numbers out of odd number list and printtheir sum (add all the prime numbers)
Answer:Following is the c++ code for the problem:
#include <iostream>
using namespace std;
int main() {
int number;
cout<<"Enter the number"<<endl;
cin>>number;
int i=0,c=0,odd[500];
while(i<=number)//loop for printing the numbers form 0 to number.
{
cout<<i<<" ";
if(i%2!=0)// storing in the odd array if the number is odd.
{
odd[c++]=i;//storing odd numbers..
}
i++;
}
cout<<endl;
i=0;
cout<<"The odd numbers are "<<endl;
while(i<c)//loop to print the odd numbers.
{
cout<<odd[i]<<" ";
i++;
}
cout<<endl<<"The prime numbers are "<<endl;
i=0;
int sum=0;
while(i<c)//loop to print the prime numbers..
{
int div=2;
while(div<odd[i])
{
if(odd[i]%div==0)
break;
div++;
}
if(div==odd[i])
{
cout<<odd[i]<<" ";
sum+=odd[i];//updating the sum..
}
i++;
}
cout<<endl<<"The sum of odd prime numbers is "<<sum<<endl;//printing the sum..
return 0;
}
Output :
Enter the number
49
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
The odd numbers are
1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49
The prime numbers are
3 5 7 11 13 17 19 23 29 31 37 41 43 47
The sum of odd prime numbers is 326.
Explanation:
First I have printed the values from 0 to n and i have taken an array to store odd numbers.After that i have printed the odd values.And after that i have printed prime numbers among the odd numbers and their sum.These all operations are done using while loop.
Using First fit algorithm:
Using Best-fit algorithm:
Using Worst-fit algorithm:
Properly labeling the six different processes would be:
Best fit algorithm is the best as the name suggests, while the worst fit algorithm is the worst as not all memory is allocated
Read more about memory partitions here:
brainly.com/question/12726841
Answer:
We have six memory partitions, let label them:
100MB (F1), 170MB (F2), 40MB (F3), 205MB (F4), 300MB (F5) and 185MB (F6).
We also have six processes, let label them:
200MB (P1), 15MB (P2), 185MB (P3), 75MB (P4), 175MB (P5) and 80MB (P6).
Using First-fit
The remaining free space while using First-fit include: F1 having 10MB, F2 having 90MB, F3 having 40MB as it was not use at all, F4 having 5MB, F5 having 115MB and F6 having 10MB.
Using Best-fit
The remaining free space while using Best-fit include: F1 having 25MB, F2 having 170MB as it was not use at all, F3 having 25MB, F4 having 5MB, F5 having 45MB and F6 having no space remaining.
Using Worst-fit
The remaining free space while using Worst-fit include: F1 having 100MB, F2 having 90MB, F3 having 40MB, F4 having 5MB, F5 having 100MB and F6 having 110MB.
Explanation:
First-fit allocate process to the very first available memory that can contain the process.
Best-fit allocate process to the memory that exactly contain the process while trying to minimize creation of smaller partition that might lead to wastage.
Worst-fit allocate process to the largest available memory.
From the answer given; best-fit perform well as all process are allocated to memory and it reduces wastage in the form of smaller partition. Worst-fit is indeed the worst as some process could not be assigned to any memory partition.
Answer:
Following are the solution to the given question:
Explanation:
The subject I select is Social Inclusion Management because I am most interested in this as I would only enhance my wide adaptability and also people's ability to know and how I can manage and understand people.
Under 15 min to this location. The time I went online but for this issue, I began collecting data on the workability to tap, such as a connection to the monster, glass doors, etc.
For example. At example. I get to learn through indeed.com that the HR manager's Avg compensation is about $80,600 a year. I can gather from Linkedin data about market openings for HR at tech companies like Hcl, Genpact, etc. Lenskart has an HR director open vacancy.
This from I learns that for qualified practitioners I have at least 3 years experience in the management of human resources & that I need various talents like organizing, communications, technical skills, etc.
The analytical decision-making style most likely requires the most amount of data analysis.
Define data analysis.
Data analysis is the process of systematically inspecting, cleaning, transforming, and modeling data with the goal of discovering useful information, drawing conclusions, and supporting decision-making. Data analysis is used in a wide range of fields, including business, science, social sciences, and engineering, to extract insights from raw data and identify patterns, trends, and relationships. The process of data analysis typically involves using statistical and mathematical techniques, as well as visualization tools, to interpret and communicate the results of the analysis.
The analytical decision-making style is most likely to require the most amount of data analysis. Analytical decision-making involves a methodical and thorough approach to gathering and analyzing data before making a decision. This style of decision-making is often used in complex or high-stakes situations, where there are many variables to consider and the consequences of a poor decision could be significant. Analytical decision-making involves collecting data from multiple sources, analyzing the data using various methods, and making a decision based on the results of the analysis. This style of decision-making can be time-consuming and requires a significant amount of data analysis to ensure that all relevant information has been considered before making a decision.
To learn more about the data analysis click here
#SPJ1
Input a String:
code
Input an integer:
3
eeedddoooccc
import java.util.*;
public class myClass {
public static void main(String args[]) {
Scanner scan = new Scanner(System.in);
System.out.print("Input a String: ");
String str = scan.nextLine();
System.out.print("Input an integer: ");
int num = scan.nextInt();
for(int i=str.length()-1; i>=0; i--) {
for(int j=0; j<num; j++) {
System.out.print(str.charAt(i));
}
}
}
}
The keyboards that include all the keys found on a typical virtual keyboard including function and navigation keys are called;
Laptops
Read more at; https://brainly.in/question/11722276
Answer:
multimedia keyboard i think
Explanation: