Best writers. Best papers. Let professionals take care of your academic papers

Order a similar paper and get 15% discount on your first order with us
Use the following coupon "FIRST15"
ORDER NOW

Think Of Persuasioan Strategies. How Would You Persuade Me (to Start Recycling). Give

Get college assignment help at Smashing Essays Think of persuasioan strategies. How would you persuade me (to start recycling). give facts, and persuade me. Your writing must atlest make me think of start recycling.

1a) Based On Your Understanding What Is A Preprocessor Directive? Is #include The Only

1a) Based on your understanding what is a preprocessor directive? Is #include the only preprocessor directive? How does the #include work and how is it different than import in Java?   What is ANSI standard C ? Why is it important? What is a namespace? Briefly describe the C translation process? How is the C translation process you described above different than the translation process for Java? (Remember this is not graded on perfect answers so try your best if you’re not sure) Is C a compiled or interpreted language? How is this different than Java?

Basically I Have Not Write A Console Based Boogle Game With The DiceTray Given.

Basically i have not write a console based Boogle Game with the DiceTray Given. BoggleConsole.java package view_controller; import model.DiceTray; public class BoggleConsole { public static void main(String[] args) {    // Use this for testing char[][] a = { { ‘A’, ‘B’, ‘S’, ‘E’ }, { ‘I’, ‘M’, ‘T’, ‘N’ }, { ‘N’, ‘D’, ‘E’, ‘D’ }, { ‘S’, ‘S’, ‘E’, ‘N’ }, };    DiceTray tray = new DiceTray(a);    // TODO: Complete a console game    } } Boggle.java package model; public class Boggle { // TODO: Complete a Boggle game that will be used with views // 1. A console based game with standard IO (Boggle Two)    } DiceTray.java package model; /** * Model the tray of dice in the game Boggle. A DiceTray is * constructed here a 4×4 array of characters for testing. * */ public class DiceTray { private char[][] path; private char[][] board; public static final char TRIED = ‘@’; public static final char PART_OF_WORD = ‘!’; private String attempt; private int index; public static final int SIZE = 4; /**    * Construct a tray of dice using a hard coded 2D array of chars. Use this for    * testing    *    * @param newBoard    * The 2D array of characters used in testing    */ public DiceTray(char[][] newBoard) { board = newBoard; }    /**    * Return true if search is word that can found on the board following the rules    * of Boggle    *    * @param str    * A word that may be in the board by connecting consecutive letters    * @return True if search is found    */ public boolean foundInBoggleTray(String str) { if (str.length() < 3) return false; attempt = str.toUpperCase().trim(); boolean found = false; for (int r = 0; r < SIZE; r ) { for (int c = 0; c < SIZE; c ) if (board[r][c] == attempt.charAt(0)) { init(); found = recursiveSearch(r, c); if (found) { return true; } } } return found; } // Keep a 2nd 2D array to remember the characters that have been tried private void init() { path = new char[SIZE][SIZE]; for (int r = 0; r < SIZE; r ) for (int c = 0; c = attempt.length()) found = true; else { found = recursiveSearch(r – 1, c – 1); if (!found) found = recursiveSearch(r – 1, c); if (!found) found = recursiveSearch(r – 1, c 1); if (!found) found = recursiveSearch(r, c – 1); if (!found) found = recursiveSearch(r, c 1); if (!found) found = recursiveSearch(r 1, c – 1); if (!found) found = recursiveSearch(r 1, c); if (!found) found = recursiveSearch(r 1, c 1); // If still not found, allow backtracking to use the same letter in a // different location later as in looking for “BATTLING” in this board // // L T T X // Mark leftmost T as untried after it finds a 2nd T but not the L. // I X A X // N X X B // G X X X // if (!found) { path[r][c] = ‘.’; // Rick used . to mark the 2nd 2D array as TRIED index–; // 1 less letter was found. Let algorithm find the right first (col 2) } } // End recursive case if (found) { // Mark where the letter was found. Not required, but could be used to // show the actual path of the word that was found. path[r][c] = board[r][c]; } } return found; } // Determine if a current value of row and columns can or should be tried private boolean valid(int r, int c) { return r >= 0

Give 10 Advantages And Disadvantages Of Agile Software Development Against Conventional Process Method In

Give 10 Advantages and Disadvantages of Agile Software development against conventional process method in a tabular form

Write A C Program That Calculates And Prints The Bill For Cellular Telephone Company.

Write a c program that calculates and prints the bill for cellular telephone company. The company offers two types of service: regular and premium. Its rates vary, depending of the type of service. The rates are computed as follows: Regular Service: P10.00 plus first 50 minutes are free. Charges for over 50 minutes        are P.50 per minute Premium Service: 25.00 plus:        a. For calls made from 6:00 am to 5:59pm., the first 75 minutes are free; charges for over 75 minutes are P.10 per minute        b. For calls made from 6:00 am to 5:59pm., the first 100 minutes are free; charges for over 100 minutes are P.15 per minute Your program should prompt the user to enter an account number, a service code, and the number of minutes the service was used. A service code or r or R means a regular service; a service of p or P means premium service. Treat any other character as an error. Your program should output the account number, type of service , number of minutes the telephone service was used, and the amount due from the user.

Write A C Program To Calculate The Parking Fare For Customers Who Park Their

write a c program to calculate the parking fare for customers who park their cars in a parking … Question: Write a C program to calculate the parking fare for customers who park their cars in a parking … Write a C program to calculate the parking fare for customers who park their cars in a parking lot when the following information is given: a. A character showing the type of vehicle: C for car, B for bus, and T for truck. b. An integer between 0 and 24 showing the hour the vehicle entered the lot. c. An integer between 0 and 60 showing the minute the vehicle entered the lot d. An integer- between 0 and 24 showing the hour the vehicle left the lot e. An integer between 0 and 60 showing the minute the vehicle left the lot Management uses two different rates for each type of vehicle as shown below: VEHICLE                                                     FIRST RATE                                                         SECOND RATE Car                                                            P 0.0 / HR first 3 hrs                                                 P 1.50 / HR after 3 hrs Truck                                                         P 10.0 / HR first 2 hrs                                               P 5.0 / HR after 2 hrs Bus                                                       P 20.0 / HR first hr                                                 P 10.0 / HR after 2 hrs No vehicle is allowed to stay in the lot later than midnight; any vehicle that remains past midnight will be towed away. Following is a sample screen input (Bold Italic is used to indicate typical input) Type of vehicle? 1. C – Car 2. B – Bus 3. T – Truck Choose C Hour vehicle entered ( 0 – 24 ) : 8 Minute vehicle entered ( 0 – 24 ) : 15 Hour vehicle left( 0 – 24 ) : 13 Minute vehicle left ( 0 – 24 ) : 0 PARKING LOT CHARGES ( OUTPUT) TYPE OF VEHICLE : CAR TIME-IN : 8:15 AM TIME-OUT : 1:00 PM PARKING TIME : 3:45 HH:mm ROUNDED TOTAL: 4:00 TOTAL CHARGE : P #####.## /* Guys my teacher told me that rounded total only work if it reaches to 30 minutes i think */

Write A Function To Take A Sentence (assume That The Entire Text Is One

Write a function to take a sentence (assume that the entire text is one sentence) and split it into a list of words. We need to be able to split on different punctuation characters (use this list for now: “!,. -tn;: -/,=?@”). Bonus problem: get it running with all characters in string.punctuation plus whitespace characters. [ ]: def split_sentence(line):     “””Split a sentence into individual words by splitting at punctuations and whitespace”””     # Your code here to return output list     x = “this! is,a , sentence…nn”  # take care to remove any null strings at the end assert split_sentence(x) == [‘this’, ‘is’, ‘a’, ‘sentence’] x = ‘red blue=purple!’ assert split_sentence(x) == [‘red’, ‘blue’, ‘purple’]

Discuss What You Consider To Be The First And Second Priority In A Sorting

Discuss what you consider to be the first and second priority in a sorting algorithm and justify a key word or phrase to place in the string that is crucial. Provide a short pseudocode example in your discussion post to defend your thoughts. Explain your reasoning for selecting your first and second priorities.

MIndTap C Chapter 9 Defined The Struct StudentType To Implement The Basic Properties Of

MIndTap C Chapter 9 defined the struct studentType to implement the basic properties of a student. Define the class studentType with the same components as the struct studentType, and add member functions to manipulate the data members. (Note that the data members of the class studentType must be private.) Write a program to illustrate how to use the class studentType. Struct studentType: struct studentType { string firstName; string lastName; char courseGrade; int testScore; int programmingScore; double GPA; };

IN Pytrhon Write A Function Called CircleGeometry() That Accepts As Its Argument The Diameter

IN pytrhon Write a function called circleGeometry() that accepts as its argument the diameter of a circle. The function should return a string that indicates the circumference and area of the circle. Note: To create this string, you must use the format string technique as discussed in lecture. Formula for circumference of a circle is: 2*pi*radius. Formula for the area of a circle is pi*radius2. Note that the radius is equal to ½ the diameter. The value for PI is 3.14. Bonus point: For pi, instead of hard coding 3.14, look up how to use constant pi which is available in the math module. You do not have to worry about the number of decimal places. This problem will require you to use concatenation. Example:   print(  circleGeometry(3) ) should output The area is 7.0685834705770345. The cirumference is: 9.42477796076938. Again: Note that the string returned by this function should be created using a format string. So inside your function, create the string using the format() function, and then have your function return that string.

In Pyhton Write A Function Called IsStringLengthEven() That Accepts One Argument Of Type String.

Get college assignment help at Smashing Essays in pyhton Write a function called isStringLengthEven() that accepts one argument of type string. The function should return True (the boolean value, not the string!) if the length of the string is even, and return False if the length of the string is odd. I hope it’s obvious that you will need to use an if/else statement here. You can see the example above for an idea of how to do it. Example: print(isStringLengthEven(‘hi’))  à would output True print(isStringLengthEven(‘bye’)) à would output False

For This Problem, Download The Shakespeare_short.txt File From The ‘Files’ Page. Be Sure To

For this problem, download the shakespeare_short.txt file from the ‘Files’ page. Be sure to store this file in the same folder as your PY file. This file contains several pages from Shakespeare’s Romeo and Juliet. Write a function called wordCountInShakespeare() that accepts one argument. The argument should represent a string that you are searching for inside the file. The function should count the number of times the word is found in the file and return that value. For example, the word ‘Romeo’ is in there 15 times. The word ‘romeo’ is there 0 times. The word ‘Thou’ is in there 4 times. For example:       wordCountInShakespeare(‘Romeo’) Should return 15.       wordCountInShakespeare(‘Thou’) should return 4.       wordCountInShakespeare(‘romeo’) Should return 0. Hint: Do NOT use a for loop for this problem. You should use one of the string functions that were discussed in lecture. In fact, doing so will be far easier than using a for loop.

“NIST And Risk Governance And Risk Management” Please Respond To The Following: Companies Generally

“NIST and Risk Governance and Risk Management” Please respond to the following: Companies generally reference NIST standards when assessing their risk management. Based on your learning, what do you think would be your top NIST consideration when starting to craft a risk management policy for a small to medium size company? anticipate all possible threats and contingencies in advance of an attack?

Among Object-oriented Languages, One Feature That Varies Considerably Is Whether The Language Allows Multiple

Among object-oriented languages, one feature that varies considerably is whether the language allows multiple inheritance. C does but Ada does not. Java takes a middle ground approach of allowing multiple inheritance of interfaces but not classes. Using a C example, illustrate some of the complexities that multiple inheritance introduces. How does C deal with them? Why does Java’s middle ground approach offer some of the benefits of multiple inheritance while avoids its problems.

Among Object-oriented Languages, One Feature That Varies Considerably Is Whether The Language Allows Multiple

Among object-oriented languages, one feature that varies considerably is whether the language allows multiple inheritance. C does but Ada does not. Java takes a middle ground approach of allowing multiple inheritance of interfaces but not classes. Using a C example, illustrate some of the complexities that multiple inheritance introduces. How does C deal with them? Why does Java’s middle ground approach offer some of the benefits of multiple inheritance while avoids its problems.

In The Following Network, Two Hosts Alice And Bob Are Connected By Three Links

In the following network, two hosts Alice and Bob are connected by three links and two routers. There are two addresses (N: IP address and L: Link-layer address) for each interface of hosts and routers. Host Alice sends a datagram to host Bob. The datagram passes through the routers and links to host Bob. Before sending, Alice makes a frame from the datagram, then sends it to the router-R1. Explain how host Alice encapsulates the frame from the datagram, and then explain how Router-R1 and Router-R2 prepare and forward those frames on link-2 and link-3 towards host Bob. Mention how Alice gets R1’s link-layer address, how routers get the next destination and link-layer addresses in your explanation. Mention all link-layer addresses for all three frames in the links

Hi Everyone, I Have A Handy Practice With Assembly Language And Machine Code. Answers

Hi everyone, I have a handy practice with assembly language and machine code. Answers are better with explanations. Thank you!

Hi Everyone, I Have A Problem With MIPS Assembly Language, Could You Help Me

Hi everyone, I have a problem with MIPS assembly language, Could you help me with it? Thank you.

Complete The Start To An Event Driven Programming (see Links At Bottom For Java

Complete the start to an event driven programming (see links at bottom for java file and an image) so the GUI first looks mostly like this: When four (or more attempts are entered) and the button is clicked, the GUI changes to this: package start; /** * Complete an event driven GUI that could be the start of * a GUI for Boggle Three * * author Rick Mercer and YOUR NAME */ import java.util.ArrayList; import java.util.Scanner; import javafx.application.Application; import javafx.event.ActionEvent; import javafx.event.EventHandler; import javafx.scene.Scene; import javafx.scene.canvas.Canvas; import javafx.scene.canvas.GraphicsContext; import javafx.scene.control.Button; import javafx.scene.control.Label; import javafx.scene.control.TextArea; import javafx.scene.image.Image; import javafx.scene.layout.GridPane; import javafx.stage.Stage; public class AssignmentBogglePrep extends Application { public static void main(String[] args) { launch(args); } private Canvas canvas; private Image boggleImage; private GraphicsContext g2; private TextArea input = new TextArea(); private TextArea output = new TextArea(); private Label prompt = new Label(“Enter sent get ten notHere”); private Button button = new Button(“Search for found words”); ArrayList boggleWords = new ArrayList(); /**    * Layout the GUI and initialize everything (this is too much in start)    */ @Override public void start(Stage stage) { makeListOfBoggleWords(); input.setWrapText(true); // Cause a newLine instead of going off the TextArea // Add elements in column 1, not 0 with gaps set GridPane pane = new GridPane();       } private void makeListOfBoggleWords() { boggleWords.add(“sent”); boggleWords.add(“ten”); boggleWords.add(“get”); } }

WRITE A PROGRAM IN C# Using VIDUAL STUDIOS Implement A Program That Calculates The

WRITE A PROGRAM IN C# using VIDUAL STUDIOS Implement a program that calculates the cost of flooring based on total area of the job. Design a class named Job with data members jobno, jobwidth, joblength, jobarea, jobcost. In the main program prompt and accept jobno, length and width from the user. Pass the 3 values to a constructor that calculates area and total cost and updates the private data members. Then the program calls a class method to display the values. if area >= 2000 sq ft. cost per foot is 1.00 if area >=1000 and < 2000 cost per foot is 1.50 else cost per foot is 2.00 WRITE A PROGRAM IN C# using VIDUAL STUDIOS

It Is A Question In My Assignment Of C#.net.kindly Answer It With Explanation.

it is a question in my assignment of c#.net.kindly answer it with explanation.

The post Think Of Persuasioan Strategies. How Would You Persuade Me (to Start Recycling). Give appeared first on Smashing Essays.

 
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"