TaskTutor
Home
Search
Login
Search
Computers and Technology
Computers And Technology
High School
What is an unique text-based internet address corresponding to a computer's unique numeric IP address called
Computers And Technology
High School
As text is typed in the _____ text box, a drop-down list displays options for completing the action, displaying information on the action from sources on the web, and displaying information on the action in the Excel Help task pane.
Computers And Technology
College
Write a second convertToInches() with two double parameters, numFeet and numInches, that returns the total number of inches. Ex: convertToInches(4.0, 6.0) returns 54.0 (from 4.0 * 12 + 6.0).FOR JAVA PLEASEimport java.util.Scanner;public class FunctionOverloadToInches {public static double convertToInches(double numFeet) {return numFeet * 12.0;}/* Your solution goes here */public static void main (String [] args) {double totInches = 0.0;totInches = convertToInches(4.0, 6.0);System.out.println("4.0, 6.0 yields " + totInches);totInches = convertToInches(5.9);System.out.println("5.9 yields " + totInches);return;}}
Computers And Technology
College
Explain the role of the network layer and Internet protocol (IP) in order to make internetworking possible.
Computers And Technology
High School
You recently installed a new RAID controller card in a PCIe expansion slot on your computer. After setting up the controller, you transfer data from the backup you created over to the computer. When you finish the setup, you turn the computer off and return it to its normal location. When you turn the computer on, you immediately receive the error message, "RAID not found." What might be the problem?
Computers And Technology
High School
You want to send your photographs to a friend.What should you do to make sure that your friends e-mail inbox does not get filled?a. Compress Attachmentb. Format Message c. Use Rich Formatd.Use Default Formatting
Computers And Technology
College
Often an extension of a memorandum of understanding (MOU), the blanket purchase agreement (BPA) serves as an agreement that documents the technical requirements of interconnected assets.a. Trueb. False
Computers And Technology
College
Complete the below function which dynamically allocates space to a 3d array of doubles, initializes all values to 0, and returns a pointer to the space.1. double ***alloc3dArrayOfInts( int length, int width, int depth) {2. double ***array3d = malloc(________ * sizeof(double **) );3. for(int i=0; i< length ;i++) {4. ________ = malloc(width * sizeof(double *) );5. for(int j=0; j< ________;j++) {6. __________ = malloc(depth * sizeof(double) );7. }8. }9. return array3d;10. }
Computers And Technology
College
When creating documents for larger screens or print, a writer may use the ___________ style to incorporate supporting visuals and summary boxes. A. formal B. converted pyramid C. informal D. linear organization E. conversational
Computers And Technology
High School
A user saves a password on a website the user logs into from a desktop. Under which circumstances will the password be saved on other devices?Same browserSame encryption certificateSame Internet providerSame operating system
Computers And Technology
High School
Which approach to knowledge management capitalizes on tacit knowledge and requires heavy IT investment?
Computers And Technology
Middle School
A college at which a student has a good chance of being accepted becausehe or she meets the admission requirements is called aA. safety collegeB. selective collegeC. reach collegeD. probable college
Computers And Technology
College
A data set has 60 observations with minimum value equal to 30 and a maximum value equal to 72. The estimated class width using the 2k>n rule to determine the number of classes is ___.
Computers And Technology
High School
Which line of code will 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
Computers And Technology
College
Consider a compact disc on which the pits used to store the digital information measure 850 nm long by 500 nm wide. Visible light has the following wavelengths: 380420 nm for violet; 420440 nm for indigo; 440500 nm for blue; 500520 nm for cyan; 520565 nm for green; 565590 nm for yellow; 590625 nm for orange; and 625740 nm for red. Which of these colors, if any, could be used for building the pits on the disc?
Computers And Technology
College
Input a number [1-50] representing the size of the shape and then a character [x,b,f] which represents the shape i.e. x->cross, b->backward slash, or f->forward slash. Here are 4 examples which give the 2 inputs with the shape of the result directly below. Note: Even number outputs are different from odd.
Computers And Technology
High School
In this exercise, use the following variables : i,lo, hi, and result. Assume that lo and hi each are associated with an int and that result refers to 0.Write a while loop that adds the integers from lo up through hi (inclusive), and associates the sum with result.Your code should not change the values associated with lo and hi. Also, just use these variables : i,lo, hi, and result.
Computers And Technology
College
Given two models applied to a data set that has been partitioned, Model A is considerably more accurate than model B on the training data, but slightly less accurate than model B on validation data.a. Which model are you more likely to consider for final deployment?b. Please explain why Model A is considerably more accurate than model B on the training data, but slightly less accurate than model B on validation data as concise as possible.
Computers And Technology
Middle School
to adapt to dimmer light with a film camera would be more complicated than with a digitalChanging thecamera
Computers And Technology
High School
___ transmission systems transmit tightly focused beams of radio signals from one ground-based microwave transmission antenna to another.
Computers And Technology
High School
Give several examples of hardware and specify whether they are input, processing, output, storage, or communications devices.
Computers And Technology
College
In Java; Given numRows and numColumns, print a list of all seats in a theater. Rows are numbered, columns lettered, as in 1A or 3E. Print a space after each seat, including after the last. Use separate print statements to print the row and column. Ex: numRows = 2 and numColumns = 3 prints:1A 1B 1C 2A 2B 2C import java.util.Scanner;public class NestedLoops {public static void main (String [] args) {Scanner scnr = new Scanner(System.in);int numRows;int numColumns;int currentRow;int currentColumn;char currentColumnLetter;numRows = scnr.nextInt();numColumns = scnr.nextInt();numColumns = currentColumnLetterfor(currentRow = 0; currentRow < numRows;currentRow++){for(currentColumn = =System.out.println("");}}
Computers And Technology
College
Compare userNumber with compareNumber and display 'Numbers are not equal' if the numbers are different. Then, display 'Variables are not identical' if the variables are not identical (not strictly equal).
Computers And Technology
College
The radius and mass of the Earth are, r= 6378 x 10 meters and m1 = 5.9742 x 10 kg, respectively. Prompt the user to input his or her mass in kg and then calculate the gravitational force (F) and acceleration due to gravity (g) caused by the gravitational force exerted on him/her by the Earth. Consider, F=G(m1)(m2)/(r) and F=mg. Let the universal gravitational constantG= 6.67300 x 10 (in units of m.kg.s assuming the MKS [meter-kilogram-second] system). Check that the resulting value of g is close to 9.8ms. [HINT: There are two formulas for F. In one, m2 is the mass in kg of the user. In the other, m is the mass in kg of the user.
« Previous
Page 1
Next »