The________ partitioning scheme enables you to create more than four primary partitions without needing to use dynamic disks

Answers

Answer 1

Answer:

three primary partitions


Related Questions

Help a brother out


Write a java program with these specifications.





playRps – This method plays 24 rounds of rps and returns the total points earned. For each of the 24 rounds, player1’s hand
gesture will be based on calling the nextInt method of the given Random object. If the next integer is even, player1 will play
rock. If it is odd, player1 will play paper. Player1 never plays scissors. Player2 will play rock in the first round, paper in the
second round, scissors in the third round, and repeat the cycle starting with rock again in the fourth round. The method will sum
the return values for the 24 calls to rps and return the total. Note, since an invalid input is never passed in to an rps call using
playRps, your return value should always be a non-negative number.

Answers

Answer:

import java.util.*;  

class Main {

 private enum RPS { Rock, Paper, Scissors };

 private static RPS[] options = { RPS.Rock, RPS.Paper, RPS.Scissors };

 private static String[] names = {"Rock", "Paper", "Scissors"};

 // Return 1 if player 1 beats player 2, 0 otherwise

 static public int rps( RPS p1, RPS p2 ) {

   if (p1 == RPS.Rock && p2 == RPS.Scissors) return 1;

   if (p1 == RPS.Scissors && p2 == RPS.Paper) return 1;

   if (p1 == RPS.Paper && p2 == RPS.Rock) return 1;

   return 0;

 }

 static public int playRps() {

   Random rnd = new Random();      

   int totalPoints = 0;

   

   for(int round = 0; round < 24; round++) {

     int randomNumber = rnd.nextInt(2);  

     RPS player1 = options[randomNumber];      

     RPS player2 = options[round%3];

     String name1 = names[randomNumber];

     String name2 = names[round%3];

     int score = rps(player1, player2);

     if (player1 == player2) {

       System.out.printf("%d. Both players %s. Draw.\n",  round+1, name1);

     } else if (score == 0) {

       System.out.printf("%d. %s does not beat %s, player 1 loses.\n",  round+1, name1, name2);

     } else {

       System.out.printf("%d. %s beats %s, player 1 wins.\n", round+1, name1, name2);

     }      

     totalPoints += score;

   }

   return totalPoints;

 }

 public static void main(String[] args) {

   System.out.println("Playing RPS.");

   int total = playRps();

   System.out.printf("Player 1 earned %d points.\n", total);

 }

}

What two devices in a computer are black boxes

Answers

Answer:

the hdmi and hardrive

Explanation:

Oceans cover what percentage of the Earth's surface?
97%
O 71%
87%
99%​

Answers

Answer:

71%

Explanation:

I thik so because the percentage of oceans on earth is more

Answer:

71%

Explanation:

If it's about covering of earth's surface by water then it is 71%

But when it's about oceans covering percentage of water on earth is 97%.

Which code will allow Jean to print I like to code! on the screen?

Print ("I like to code!")
Print (I like to code!)
Print ("I like to code!)
Print = I like to code!

Answers

Answer:

4

Explanation:

Print=I like to code! which it is good

Answer:

Print ("I like to code!")

Explanation:

If this is python, then this is the correct answer, you should specify which programming language this is in when you post it.

I need a three-digit multiplication that gives me 225 I mean: _x_x_ = 225 thanks​

Answers

Answer:

3 times 5 times 15.

Explanation:

We know 225=15 times 15. (Since it is a square.) And 15 can be split up into 3 and 5. So we can write 225 as 3 times 5 times 15.

if 100 KB file is stored in 2 MB folder how many files can be stored in the folder​

Answers

Answer:

20 files.

Explanation:

Given the following data;

Size of file = 100 kilobytes.

Folder size (memory) = 2 megabytes.

Method 1

1000 kilobytes = 1 megabytes.

100 kilobytes  = x megabytes

Cross-multiplying, we have;

1000x = 100

x = 100/1000

x = 0.1 mb

Now, to find the number of files that can be stored;

[tex] Number \; of \; files = \frac {Memory}{Size \; of \; each \; file} [/tex]

Substituting into the equation, we have;

[tex] Number \; of \; files = \frac {2}{0.1} [/tex]

Number of files = 20 files.

Method II

We know that;

1 kilobytes = 0.001 megabytes. 100 kilobytes = 0.1 megabytes. 1000 kilobytes = 1 megabytes. 2000 kilobytes = 2 megabytes.

Substituting into the formula, we have;

[tex] Number \; of \; files = \frac {Memory}{Size \; of \; each \; file} [/tex]

Substituting into the equation, we have;

[tex] Number \; of \; files = \frac {2000}{100} [/tex]

Number of files = 20 files.

what is the processing speed for the second generation of computers​

Answers

Answer:

10mbps

Explanation:

that's what the internet says

Write a recursive method called method3 that accepts an integer parameter and returns the integer reformed by repeating digits 1 and 2. For example, method3 (123456) will return 11223456 repeating only 1 and 2 and method3 (21) will return 2211. If the number is 0, return 0. You may assume that n is not negative

Answers

Answer:

Explanation:

The following is written in Java and creates only the method3 and returns a new method after doubling all of the 2's and 1's in the input.

public static int method3(int x) {

       int finalValue = 0;

       String number = String.valueOf(x);

       for (int i = 0; i < number.length(); i++) {

           if (number.charAt(i) == 1 || number.charAt(i) == 2) {

               finalValue += Integer.valueOf(number.charAt(i));

               finalValue += Integer.valueOf(number.charAt(i));

           } else {

               finalValue += Integer.valueOf(number.charAt(i));

           }

       }

       return finalValue;

   }

widow in respect to word processing ​

Answers

Answer:

To use the word widow.

Explanation:

She became a widow at the age of 95, due to the passing of her husband by natural causes.

Write a program named CheckCredit that prompts users to enter a purchase price for an item.

If the value entered is greater than a credit limit of $8,000, display You have exceeded the credit limit; otherwise, display Approved.

Answers

THIS IS FOR PYTHON

price = float(input('Price: '))

if price > 8000:

   print('You have exceeded the credit limit')

else:

   print('Approved')

The credit limit on your credit card is the most you are permitted to spend.

What is Credit limit?

Your credit limit won't be disclosed to you until the card you requested for is authorized. Applying for a secured credit card, where your security deposit frequently matches your credit limit, is an exception to this rule.

Also keep in mind that your credit limit is a real, set amount that you must adhere to.

You might be given the option to opt in and go beyond your limit, but only if you pay a cost. I strongly advise against signing up since it will be like having overdraft protection on your credit card. It leads inevitably to significant debt.

Therefore, The credit limit on your credit card is the most you are permitted to spend.

To learn more about Credit limit, refer to the link:

https://brainly.com/question/31053768

#SPJ3

A hard drive cannot be partitioned until the device
is set.

Answers

Yeah that true I asked my grandpa

how do i create a a BASIC program to triple the salary of frontline workers?​

Answers

Answer:

In Latin America and the European Union, for example, 12 and 37 percent of health workers are public sector employees, respectively. Hence wage increases may reduce funding available for other critical medical supplies and equipment, particularly in developing countries with limited fiscal resources. Wage increases for one category of workers, however well justified, can also trigger demands from other workers, particularly in countries with strong trade unions. Temporary salary increases or supplementary payments also tend to become permanent, thereby creating long-term distortions and problems of fiscal sustainability. The first step, then, is to quickly assess the level and structure of health worker compensation to quantify the amount of additional wages that should be paid. Health facility staff consists of frontline medical staff (doctors, nurses, community health workers) as well as non-medical administrative and support staff. In many World Bank client countries, the total gross wages of health workers will consist of:

1.Basic salary. This is based on pay grades in civil service pay laws, or wage legislation for public health workers.

2.Overtime allowance or compensation for overtime work. This is usually in the form of a percentage of basic pay for additional hours worked beyond what is normally specified.

3.Hazard allowance or harmful work conditions allowance. These will be allowances as a percentage of pay for working conditions that are considered risky to the individual.

Other allowances.

4.Other allowances. These typically factor in seniority, additional training, or educational qualifications, as well as working in rural areas or remote locations

5.Performance pay. These are additional payments conditional on either inputs (e.g., working hours), outputs (e.g., patients treated), or outcomes (e.g., patient satisfaction).

6.Per diems or salary supplements. These are usually for attending workshops or training and can be a significant (more than 10 percent) proportion of gross wages.

Cross-national data on health worker wages is very limited. The data that the World Bank has for 10 countries in Latin America and 27 in the European Union shows that while health care workers do enjoy a premium over workers in other sectors of the economy, the premium decreases with country income levels. For countries in the upper income category, they experience a penalty compared to similar workers in lower-income countries (controlling for sex, education, and location). These averages, however, hide variations across different categories of health workers (medical workers represent between 20 and 50 percent of all health care sector workers for countries in Latin America and the European Union).

areas on which the development of the computer as a communication technology is based

Answers

Answer:

Artificial Intelligence.

Automated personal digital assistant.

THz frequencies for Communications (5G & 6G)

Blockchain.

Virtual reality and augmented reality.

Internet of Things (IoT)

Visible light communication.

LTE.

Explanation:

Write a program that reads a file called 'test.txt' and prints out the contents on the screen after removing all spaces and newlines. Punctuations will be preserved. For example, if 'test.txt' contains: This is a test file, for chapter 06. This a new line in the file! Then, your program's output will show: Thisisatestfile,forchapter06.Thisanewlineinthefile! Hint: Consider using the 'strip()' and 'replace()' functions.

Answers

Answer:

I don't know  you should figure that out good luck

Explanation:

good luck

1. What is friend function and friend class? Class “stu-info” stores all the details related to students like (name, reg, section , marks of 5 subjects). Class “show_details” will act like a friend of class “stu-info” and perform following operations: basic_details() and result(). These functions will work on the private data members of “stu-info”.

Answers

Answer:

banksjakjajbsjsishbsjso sjjsnsjsjsksk hsjsnks jsjsjsbsh jebsjjsjsbdhdjej

Explanation:

nsnkwjejev s hejej eje eiebjdbdibe sjeb

8.11 LAB: Count characters - functions Write a program whose input is a character and a string, and whose output indicates the number of times the character appears in the string. Ex: If the input is: n Monday, the output is: 1 Ex: If the input is: z Today is Monday, the output is: 0 Ex: If the input is: n It's a sunny day, the output is: 2 Case matters. n is different than N. Ex: If the input is: n Nobody, the output is: 0 Your program must define and call the following function that returns the number of times the input character appears in the input string. int CountCharacters(char userChar, const string

Answers

Answer:

#include<iostream>

using namespace std;

int CountCharacters(char userChar, const string inputstr){

   int k = 0;

   int iter = 0;

   for (iter = 0; iter < inputstr.size(); iter++){

       if (inputstr[iter] ==  userChar){

           ++k;        }}

   return k;}

int main(){

   string str;

   char userChar[1];

   cout<<"Char: ";    cin>>userChar;

   cin.ignore();

   cout<<"String: ";   getline(cin, str);

   cout<<CountCharacters(userChar[0],str);

   return 0;}

Explanation:

Written in C++:

The function is defined here:

int CountCharacters(char userChar, const string inputstr){

This initializes a count variable k to 0

   int k = 0;

This initializes an iterating variable iter to 0

   int iter = 0;

This iterates through the characters of the string being passed to the function

   for (iter = 0; iter < inputstr.size(); iter++){

This checks for matching characters

       if (inputstr[iter] ==  userChar){

If found,  k is incremented by 1

           ++k;        }}

This returns the total count

   return k;}

The main begins here

int main(){

This declares a string variable

   string str;

This declares a character variable

   char userChar[1];

This gets input for the character variable

   cout<<"Char: ";    cin>>userChar;

This lets the user get another input

   cin.ignore();

This gets input for the string variable

   cout<<"String: ";   getline(cin, str);

This calls the function and return the count of character in the string

   cout<<CountCharacters(userChar[0],str);

what is keyboard? answer me

Answers

Answer:

something you put your fingers on

Explanation:

something you type on

Build a class and a driver for use in searching your computer’s secondary storage (hard disk or flash memory) for a specific file from a set of files indicated by a starting path. Lets start by looking at a directory listing. Note that every element is either a file or a directory.
Introduction and Driver
In this assignment, your job is to write a class that searches through a file hierarchy (a tree) for a specified file. Your FindFile class will search a directory (and all subdirectories) for a target file name.
For example, in the file hierarchy pictured above, the file "lesson.css" will be found once in a directory near the root or top-level drive name (e.g. "C:\") . Your FindFile class will start at the path indicated and will search each directory and subdirectory looking for a file match. Consider the following code that could help you build your Driver.java:
String targetFile = "lesson.css";
String pathToSearch ="
C:\\WCWC"; FindFile finder = new FindFile(MAX_NUMBER_OF_FILES_TO_FIND);
Finder.directorySearch(targetFile, pathToSearch);
File Searching
In general, searching can take multiple forms depending on the structure and order of the set to search. If we can make promises about the data (this data is sorted, or deltas vary by no more than 10, etc.), then we can leverage those constraints to perform a more efficient search. Files in a file system are exposed to clients of the operating system and can be organized by filename, file creation date, size, and a number of other properties. We’ll just be interested in the file names here, and we’ll want perform a brute force (i.e., sequential) search of these files looking for a specific file. The way in which we’ll get file information from the operating system will involve no ordering; as a result, a linear search is the best we can do. We’d like to search for a target file given a specified path and return the location of the file, if found. You should sketch out this logic linearly before attempting to tackle it recursively.
FindFile Class Interface
FindFile(int maxFiles): This constructor accepts the maximum number of files to find.
void directorySearch(String target, String dirName): The parameters are the target file name to look for and the directory to start in.
int getCount(): This accessor returns the number of matching files found
String[] getFiles(): This getter returns the array of file locations, up to maxFiles in size.
Requirements
Your program should be recursive.
You should build and submit at least two files: FindFile.java and Driver.java.
Throw an exception (IllegalArgumentException) if the path passed in as the starting directory is not a valid directory.
Throw an exception if you've found the MAX_NUMBER_OF_FILES_TO_FIND and catch and handle this in your main driver. Your program shouldn't crash but rather exit gracefully in the unusual situation that we've discovered the maximum number of files we were interested in, reporting each of the paths where the target files were found.
The only structures you can use in this assignment are basic arrays and your Stack, Queue, or ArrayList from the previous homeworks. Do not use built-in data structures like Java's ArrayList. To accomplish this, put in the following constructor and method to your ArrayList, Stack, or Queue:
public ArrayList(Object[] input) { data = input;
numElements = input.length;
}
public Object get(int index) {
return data[index];
}

Answers

Answer:

hxjdbjebjdbdubainsinnsubd jdn dkdjddkndjbdubdb su djsbsijdnudb djdbdujd udbdj. djdjdjidndubdu dubdjdbdinndjndidn s dj dudbdjubd dujdjjdjdb djdbdjd udbdudb jndjdbudbdue idbd dudbid d dujejdunebudbdjdj d

Type (dog, cat, budgie, lizard, horse, etc.) Create a class that keeps track of the attributes above for pet records at the animal clinic. Decide what instance variables are needed and their data types. Make sure you use int, double, and String data types. Make the instance variables private. Write 2 constructors, one with no parameters and one with many parameters to initialize all the instance variables. Write accessor (get) methods for each of the instance variables. Write mutator (set) methods for each of the instance variables. In the main method of the Animal Clinic class, create 3 Pet objects by calling their constructors. Then call the accessor methods, mutator methods and toString() methods to test all of your methods.

Answers

Answer:

If you did the exercise with two Dog objects, it was a bit boring, right? After all, we have nothing to separate the dogs from each other and no way of knowing, without looking at the source code, which dog produced which bark.

In the previous article, I mentioned that when you create objects, you call a special method called a constructor. The constructor looks like the class name written as a method. For example, for a Dog class, the constructor would be called Dog().

The special thing about constructors is that they are the path to any new object, so they are a great place to call code that initializes an object with default values. Further, the return value from a constructor method is always an object of the class itself, which is why we can assign the return value of the constructor to a variable of the type of class we create.

However, so far, we have not actually created a constructor at all, so how come we can still call that method?

In many languages, C# included, the language gives you a free and empty constructor without you having to do anything. It is implied that you want a constructor; otherwise there would be no way of using the class for anything, so the languages just assume that you have written one.

This invisible and free constructor is called the default constructor, and, in our example, it will look like this:

public Dog(){ }

Notice that this syntax is very similar to the Speak() method we created earlier, except that we do not explicitly return a value nor do we even declare the return type of the method. As I mentioned earlier, a constructor always returns an instance of the class to which it belongs.

In this case, that is the class Dog, and that is why when we write Dog myDog = new Dog(), we can assign the new object to a variable named myDog which is of type Dog.

So let’s add the default constructor to our Dog class. You can either copy the line above or, in Visual Studio, you can use a shortcut: type ctor and hit Tab twice. It should generate the default constructor for you.

The default constructor doesn’t actually give us anything new because it is now explicitly doing what was done implicitly before. However, it is a method, so we can now add content inside the brackets that will execute whenever we call this constructor. And because the constructor runs as the very first thing in an object’s construction, it is a perfect place to add initialization code.

For example, we could set the Name property of our objects to something by adding code such as this:

public Dog()

{

   this.Name = "Snoopy";

}

This example will set the Name property of any new objects to “Snoopy”.

Of course, that’s not very useful because not all dogs are called “Snoopy”, so instead, let us change the method signature of the constructor so that it accepts a parameter.

The parentheses of methods aren’t just there to look pretty; they serve to contain parameters that we can use to pass values to a method. This function applies to all methods, not just constructors, but let’s do it for a constructor first.

Change the default constructor signature to this:

public Dog(string dogName)

This addition allows us to send a string parameter into the constructor, and that when we do, we can refer to that parameter by the name dogName.

Then, add the following line to the method block:

this.Name = dogName;

This line sets this object’s property Name to the parameter we sent into the constructor.

Note that when you change the constructor’s signature, you get a case of the red squigglies in your Program.cs file.When we add our own explicit constructors, C# and .NET will not implicitly create a default constructor for us. In our Program.cs file, we are still creating the Dog objects using the default parameter-less constructor, which now no longer exists.

To fix this problem, we need to add a parameter to our constructor call in Program.cs. We can, for example, update our object construction line as such:

Dog myDog = new Dog(“Snoopy”);

Doing so will remove the red squigglies and allow you to run the code again. If you leave or set your breakpoint after the last code line, you can look at the Locals panel and verify that your object’s Name property has indeed been? Got it?

The program that keeps track of the attributes above for pet records at the animal clinic is in explanation part.

What is programming?

Making a set of instructions that instruct a computer how to carry out a task is the process of programming. Computer programming languages like JavaScript, Python, and C++ can all be used for programming.

The program can be:

public class Pet {

private String name;

private int age;

private double weight;

private String type;

private String breed;

public Pet() {

}

/**

* param name

* param age

* param weight

* param type

* param breed

*/

public Pet(String name, int age, double weight, String type, String breed) {

this.name = name;

this.age = age;

this.weight = weight;

this.type = type;

this.breed = breed;

}

/**

* return the name

*/

public String getName() {

return name;

}

/**

* param name

* the name to set

*/

public void setName(String name) {

this.name = name;

}

/**

* return the age

*/

public int getAge() {

return age;

}

/**

* param age

* the age to set

*/

public void setAge(int age) {

this.age = age;

}

/**

* return the weight

*/

public double getWeight() {

return weight;

}

/**

* param weight

* the weight to set

*/

public void setWeight(double weight) {

this.weight = weight;

}

/**

* return the type

*/

public String getType() {

return type;

}

/**

* param type

* the type to set

*/

public void setType(String type) {

this.type = type;

}

/**

* return the breed

*/

public String getBreed() {

return breed;

}

/**

* param breed

* the breed to set

*/

public void setBreed(String breed) {

this.breed = breed;

}

/*

* (non-Java)

*

*/

public String toString() {

return "Pet :: Name=" + name + ", age=" + age + ", weight=" + weight

+ ", type=" + type + ", breed=" + breed;

}

}

Thus, this is the program for the given scenario.

For more details regarding programming, visit:

https://brainly.com/question/11023419

#SPJ5

The type of memory that stores data
Currently in used is called​

Answers

Answer:

RAM (Random Access Memory)

hope it is helpful...

RAM (Random Access Memory) is the hardware in a computing device where the operating system (OS), application programs and data in current use

What were Roman Capitals first used for?

Answers

Answer:

Square capitals were used to write inscriptions, and less often to supplement everyday handwriting. When written in documents this style is known as Latin book hand. For everyday writing the Romans used a current cursive hand known as Latin cursive. Notable examples of square capitals used for inscriptions are found on the Roman Pantheon, Trajan's Column, and the Arch of Titus, all in Rome. Square capitals are characterized by sharp, straight lines, supple curves, thick and thin strokes, angled stressing and incised serifs. These Roman capitals are also called majuscules, as a counterpart to minuscule letters such as Merovingian and Carolingian.

used to write inscriptions

In the early days of the Internet, most access was done via a modem over an ________.
Question 10 options:

Analog telephone line

Fax

Telegram

None of the above

Answers

Answer:

analog telephone line

Explanation:

I hope this helps! :)

☁️☁️☁️☁️☁️☁️☁️☁️☁️

Write a program that reads an integer, a list of words, and a character. The integer signifies how many words are in the list. The output of the program is every word in the list that contains the character at least once. Assume at least one word in the list will contain the given character.
Ex: If the input is:
4 hello zoo sleep drizzle z
then the output is:
zoo
drizzle
To achieve the above, first read the list into a vector. Keep in mind that the character 'a' is not equal to the character 'A'.
5.23.1: LAB: Contains the character
#include
#include
using namespace std;
int main() {
/* Type your code here. */
return 0;
}

Answers

Answer:

In C++:

#include<iostream>

#include<vector>

using namespace std;

int main() {

int len;

cout<<"Length: ";  cin>>len;

string inpt;

vector<string> vect;

for(int i =0;i<len;i++){

   cin>>inpt;

   vect.push_back(inpt); }

char ch;

cout<<"Input char: ";  cin>>ch;  

for(int i =0;i<len;i++){

   size_t found = vect.at(i).find(ch);  

       if (found != string::npos){

           cout<<vect.at(i)<<" ";

           i++;

       }

}  

return 0;

}

Explanation:

This declares the length of vector as integer

int len;

This prompts the user for length

cout<<"Length: ";  cin>>len;

This declares input as string

string inpt;

This declares string vector

vector<string> vect;

The following iteration gets input into the vector

for(int i =0;i<len;i++){

   cin>>inpt;

   vect.push_back(inpt); }

This declares ch as character

char ch;

This prompts the user for character

cout<<"Input char: ";  cin>>ch;  

The following iterates through the vector

for(int i =0;i<len;i++){

This checks if vector element contains the character

   size_t found = vect.at(i).find(ch);  

If found:

       if (found != string::npos){

Print out the vector element

           cout<<vect.at(i)<<" ";

And move to the next vector element

           i++;

       }

}  

Following are the solution to the given question:

Program Explanation:

Defining header file.Defining the main method.In the main method, defining a vector array of string "x", integer variable "n1,i,j", and one character and one string variable "w,c".In the method, a for loop is declared that inputs string value in "w" from user-end and using "push_back" method that add value in vector array.After input value in character an other loop is declared that holding boolean value, and defining another loop.Inside this, an if block that check array value with character value, and after check value boolean variable is declared that hold value.At the last another if block is declared that check boolean value and prints array value.

Program:

#include <iostream>//header file

#include <string>//header file

#include <vector>//header file

using namespace std;

int main() //main  method

{

   vector<string> x;//defining vector array of string

   int n1,i,j;//defining integer variable

   string w;//defining string variable

   char c;//defining character array

   cin >> n1;//input integer value

   for (i = 0; i < n1; ++i)//defining loop that inputs string value from user-end

   {

       cin >> w;//input value

       x.push_back(w);//using push_back method that add value in vector array

   }

   cin >> c;//input character value

   for (i = 0; i < n1; ++i)//defining loop that match value

   {

       bool f = false;//holding boolean value

       for (j = 0; j < x[i].size(); ++j) //defining loop that check array value with character value

       {

           if (x[i][j] == c)//defining if block that check array value with character value

               f= true;//holding boolean value

       }

       if (f)//defining if block that check boolean value

       {

           cout <<x[i] << endl;//print value

       }

   }

   return 0;

}

Output:

Please find the attached file.

Learn more:

brainly.com/question/13543413

What is the importance of larger fonts? Explain with the help of examples. ​

Answers

Answer: See explanation

Explanation:

The importance of larger fonts is that we should note that when words are being presented in the larger font size, such words are considered to be more memorable and also such words are typically rated with judgments of learning that is high.

It is believed also that people the size of the fonts affect the memory of people. The larger the font size, the larger the importance of such word that is being portrayed.

System software includes all of the following except

Answers

Answer:

System software includes all of the following except Browsers.

Explanation:

I just know

System software includes all the following except Browsers. There are the based on the system software are the important parts.

What is software?

Software is the term for the intangible. The software is the most significant aspect. Software is a collection of rules, data, or algorithms used to run machines and perform certain tasks. Apps, scripts, and programs that run on a mobile device are referred to as software.

According to the system software, are the based on the operating system, management system, are the networking, translators, software utilities, are the networking. They are the browsers are not the used of the software, the significant components are the configuration.

As a result, the system software includes all the following except Browsers.

Learn more about on software, here:

https://brainly.com/question/985406

#SPJ2

The Payroll Department keeps a list of employee information for each pay period in a text file. The format of each line of the file is the following: Write a program that inputs a filename from the user and prints to the terminal a report of the wages paid to the employees for the given period. The report should be in tabular format with the appropriate header.

Answers

Answer:

import pandas as pd

filename = input("Enter file name with the extension included: ")

data = {}

with open("filename", "r") as file:

   content = file.readlines()

   for line in content:

       line_list = line.strip().split(" ")

       data[line_list[0]] = line_list[1] * line_list[2]

       del line_list

report = pd.DataFrame(list(data.items()), columns = ["lastname", "wages paid"])

print(report)

Explanation:

The python module prompts the user for the file name and opens the text file to extract the employee data with the python open function. It iterates over the file content and saves the last name and the wages paid to the employees ( the hours worked multiplied by the hourly rate) in the dictionary "data".

The dictionary is converted to a dataframe with the Pandas python package and displays the data in tabular format on the screen.

Following are the required code to make a report in tabular format by using the appropriate headers:

Python code:

file_name = input('Enter input filename: ')#defining a variable file_name that inputs file value

try:#defining try block that uses thr open method to open file

  file = open(file_name, 'r')#defining file variable that opens file

except:#defining exception block when file not found

  print('Error opening file ' , file_name)#print message

  exit()#calling exit method to close program

print('{:<12s} {:>10s} {:>10s}'.format('Name', 'Hours', 'Total Pay'))#using print method to print headers

for l in file.readlines():#defining loop that holds file value and calculate the value

  name, hour, wages = l.split()#defining variable that holds the value of file

  hour = int(hour)#holiding hour value

  wages = float(wages)#holiding wages value

  total = hour * wages#defining variable total variable that calculates the total value

  print('{:<12s} {:>10d} {:>10.2f}'.format(name, hour, total))#print calculated value with  message

file.close()#close file

Required file (data.txt) with the value:

Database 34 99

base 30 90

case 34 99

Program Explanation:

Defining the variable "file_name" that uses the input method to input the file name with an extension.Using the exception handling to check the file, with using the try block and except block.In the try block check file, and in except block print message with the exit method when file not found.In the next line, a print method has used that prints the header and uses a loop to read the file value.Inside the loop, a header variable is used that splits and holds the file value, calculates the value, prints its value with the message, and closes the file.

Output:

Please find the attached file.

Find out more information about the Program code here:

brainly.com/question/18598123

unemployment is one of the disadvantage of computer explain this statement with example​

Answers

In industry, computer technology is used by developing robots to assemble products in a short amount of time. This has led to unemployment as manual labour is kept to a minimum due to the robots being able to assemble products at a much faster speed than humans.

Hills, mountains and river are example of ____________ features​

Answers

Answer:

physical

Explanation:

relief----------------------FOLLOW ME

a body performing Shm has a velacity of 12m/s when the displacement is 100mm the displacement
measured from the mid point calculate the frequency and amplitude of motion what is the acceleration when displacement is 75mm​

Answers

Answer:

vjcyfuy

Explanation:

yjvjy

By watching the expression Mynum=4 * mynum + c from a programming language, what can we say about this language?


This is not an imperative programming language


This is a case sensitive language


This is not a case sensitive language


We can not determine if this language is case-sensitive or case-insensitive

Answers

Answer:

We can not determine if this language is case-sensitive or case-insensitive

Explanation:

It is unclear wether Mynum and mynum are intended to be different variables or the same variable. Both would work.

Having said that, mixing case like this is always a bad design.

Answer:

we do not determine If this language is case

Other Questions
need help on question 14 here, if multiple people respond i will give the first responder brainiest Solve for x: 1/2x + 3 = 9 What is a habitat?O A. A group of organisms that produce fertile offspringB. The place where a particular plant or animal livesO C. A group of organisms that interact within an ecosystemO D. All of the resources a species uses within its ecosystem Can humans ever directly see a photon? PLEASE HEALPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPP (18)4 A skateboard costs $240. The sales tax on the skateboard is $12. What the percent of the sales tax? Matrix A has 2 rows and 3 columns whereas matrix B has3 rows and 2 columnCan AB be multiplied? Can BA be multiplied? Give the reason Which example highlights political equality?A. Men and women enjoy freedom of speech.B. Girls and boys have equal rights to education.C. Men and women have equal voting rights.D. Girls and boys have equal access to health care.*women studies* Is it possible for you to have traits that aren't visible in your parents? explain Help!!!!!Not all will de used.Match the expression with their simplified forms. Text written for advertising and marketing campaigns is referred to as o content. context O copy o collateral 1) Who invented C Language.?A) Charles BabbageB) GrahambelC) Dennis RitchieD) Steve Jobs what is rebel art and a rebel artist? plsss answer! Anyone who did this assignment can you send it to me and i will paraphraseChoose ONE SCENE from your novel to rewrite as a screenplay. Include the following in your screenplay using correct formatting (see example in the lesson):Now that you have a screenplay, if you adapt every single chapter from your novel into a scene in a movie, your movie will be too long. So, as the screenwriter, you have a decision to make. Which two scenes from your book are crucial and must be filmed for the movie, and which two scenes are not as important and can be left out? Now, in a written memo, you have to convince the producers of your decision.In a 4-8 sentence paragraph, you will:PART AInclude a cast list at the beginning of the play. Include a description of setting.Include a description of props.Include a description of the costumes.Be sure to include scene descriptions at the beginning of the scene and format it properly (capitalization, spacing, etc.). Please highlight your scene descriptions in yellow.Include sound cues that are properly formatted (all caps) and highlight those in hot pink.Include dialogue in each scene.Length requirement: two pages or more.PART BWrite a topic sentence to present the main idea of your paragraph.Describe two scenes that are crucial to the movie and why they must be filmed.Describe two scenes that not important and explain why they can be left out.Use complete sentences.Write in third-person point of view. (View Writers Workshop, Formal vs. Informal Language, for tips.)Save your work to your computer or drive.Submit your work in Segment 1 Advanced 03 Whats the Genre? As a part of the medical examination, prisoners were examined by a dentist. What was the dentist looking for? 5x-2y=4 6x+2y=18 PLS HELP FAST 9 1/4 - 4 5/6 subtraction Find the SA if this Square Pyramid:(Dont forget all 4 sides of the square are the same length which also means all four lateral triangles will be the same area) Rubin, a freelance software developer, has a meeting with an independent bakery owner to discuss a potential project. Before meeting with the client, Rubin does a thorough research on the client's business and the client's educational background. He develops his proposal accordingly, ensuring to use common words instead of technical jargon. In the given scenario, which of the following communication guidelines does Rubin follow?A) Avoid bias.B) Avoid the use of slang.C) Be concise.D) Analyze your audience. Whats the answer to this pls?