What are some steps in object-oriented design process? Explain with examples.

Answers

Answer 1

Answer:

The following are some steps for the object oriented designing process that are:

First, define the proper modes and the context use in the system. Then, design the process of the object oriented system architecture and define its main feature by using the architecture.Identify the given object from the object oriented system for construction of the model of the system.Then, finally specify the object interface in the system.

For example:

For implementing the flow of pipe, Firstly break the transformation into the different level of stages and then define the output and input properly between the pair of the stages. Then, differentiate the operation of each stage of the updates pipeline.


Related Questions

What is the binary representation of the following hexadecimal numbers?

a. A4693FBC

b. B697C7A1

-

Answers

Answer:

Corresponding Binary numbers are as following:

A4693FBC=10100100011010010011111110111100.

B697C7A1 = 10110110100101111100011110100001.

Explanation:

A single digit hexadecimal number is a 4 bit binary number.So for each hexadecimal bit we have to find the corresponding 4 bit binary number.

A=1010

4=0100

6=0110

9=1001

3=0011

F=1111

B=1011

C=1100

and write them in the same sequence of their hexadecimal number.

A4693FBC=10100100011010010011111110111100.

B=1011

6=0110

9=1001

7=0111

C=1100

7=0111

A=1010

1=0001

B697C7A1 = 10110110100101111100011110100001.

The jackpot of a lottery is paid in 20 annual installments. There is also a cash option, which pays the winner 65% of the jackpot instantly. In either case 30% of the winnings will be withheld for tax. Design a program to do the following. Ask the user to enter the jackpot amount. Calculate and display how much money the winner will receive annually before tax and after tax if annual installments is chosen. Also calculate and display how much money the winner will receive instantly before and after tax if cash option is chosen. GRADING RUBRIC FOR EACH PROBLEM

Answers

Answer:

// here is code in java.

import java.util.*;

// class defintion

class Main

{

// main method of the class

public static void main (String[] args) throws java.lang.Exception

{

   try{

    // scanner object to read input string

       Scanner s=new Scanner(System.in);

        // variables

   double amount;

   int ch;

   double bef_tax, aft_tax;

   System.out.print("Please enter the jackpot amount:");

   // read the amount from user

   amount=s.nextDouble();

   System.out.print("enter Payment choice (1 for cash, 2 for installments): ");

   // read the choice

   ch=s.nextInt();

// if choice is cash then calculate amount before and after the tax

   if(ch==1)

   {

       bef_tax=amount*.65;

       aft_tax=(amount*.70)*.65;

       System.out.println("instantly received amount before tax : "+bef_tax);

       System.out.println("instantly received amount after tax : "+aft_tax);

   }

// if choice is installment then calculate amount before and after the tax

   else if(ch==2)

   {

       bef_tax=amount/20;

       aft_tax=(amount*.70)/20;

       System.out.println("installment amount before tax :  "+bef_tax);

       System.out.println("installment amount after tax : "+aft_tax);

   }

   }catch(Exception ex){

       return;}

}

}

Explanation:

Read the jackpot amount from user.Next read the choice of Payment from user. If user's choice is cash then calculate 65% instantly amount received by user before and after the 30% tax.Print both the amount.Similarly if user's choice is installments then find 20 installments before and after 30% tax.Print the amount before and after the tax.

Output:

Please enter the jackpot amount:200                                                                                                                          

enter Payment choice (1 for cash, 2 for installments): 2                                                                                                      

installment amount before tax :  10.0                                                                                                                        

installment amount after tax : 7.0

Continuous data

are measured in integer values.
cannot be subdivided into meaningful information.
could be subdivided into smaller and smaller units.
describe classifications or categories.

Answers

Answer: Could be subdivided into smaller and smaller units.

Explanation:

 The continuous data are basically measured in the small units and can be easily subdivided into smaller parts without changing their actual meaning.

The continuous data also contain numeric value and can be divided into smaller and finer meaningful parts.

The continuous data can be measured according to the precision of the system. The size and volume are the example of the continuous data.

For all the following assignments, you must define one or more functions in C (1) Write a program which asks the user for the value of N, the program will print out the sum of Sum = 1 + 2 + + N Try your program with N = 100 and 1000, 000

Answers

Answer:

// here is code in C.

#include <stdio.h>

// main function

int main(void) {

 // variable

 long long int n;

printf("Enter the value of N:");

 // read the value of n

scanf("%llu",&n);

 // calculate the sum from 1 to N

long long int sum=n*(n+1)/2;

 // print the sum

printf("\nsum of all number from 1 to %llu is: %llu",n,sum);

return 0;

}

Explanation:

Read the value of n from user.Then find the sum of all number from 1 to N with the formula sum of first N natural number.That is (n*(n+1)/2). This will give the sum from 1 to N.

Output:

Enter the value of N:100

sum of all number from 1 to 100 is: 5050

Enter the value of N:1000000

sum of all number from 1 to 1000000 is: 500000500000

Write a program that takes the length and width of a rectangular yard and the length and width of a rectangular house situated in the yard. Your program should compute the time required to cut the grass at the rate of two square feet a second.

Answers

Answer:

// here is code in c++.

#include <bits/stdc++.h>

using namespace std;

// main function

int main()

{

// variables

int y_len,y_wid;

int h_len,h_wid;

// read the length and width of yard

cout<<"Enter the legth of yard:";

cin>>y_len;

cout<<"Enter the width of yard:";

cin>>y_wid;

// read the length and width of house

cout<<"Enter the legth of house:";

cin>>h_len;

cout<<"Enter the width of house:";

cin>>h_wid;

// calculate grass area

int g_area=(y_len*y_wid)-(h_len*h_wid);

// find the time

int t=g_area/2;

// print the time

cout<<"time required to cut the grass is: "<<t<<" seconds."<<endl;

return 0;

}

Explanation:

Read the length and width of the yard. Then read the length and width of house from user.Calculate the area of grass by subtracting the area of house from area of yard.Then divide the area of grass by rate of 2 square feet per second.

Output:

Enter the legth of yard:25

Enter the width of yard:20

Enter the legth of house:15

Enter the width of house:12

time required to cut the grass is: 160 seconds.

Final answer:

To calculate the mowing time, subtract the house's area from the yard's, then divide by the cutting rate of 2 square feet per second. The code provided demonstrates a simple Python function to perform these calculations.

Explanation:

The question requires writing a program to calculate the time needed to cut grass that is left after a house is subtracted from a rectangular yard. The cut rate is two square feet per second. To solve this, you first calculate the total area of the yard and the house, then subtract the house's area from the yard's area to get the grassy area that needs cutting. Finally, you divide this area by the cut-rate to obtain the time required.

Here is a basic program outline in Python:

def calculate_mowing_time(yard_length, yard_width, house_length, house_width):

   yard_area = yard_length * yard_width

   house_area = house_length * house_width

   grass_area = yard_area - house_area

   mowing_time_seconds = grass_area / 2

   return mowing_time_seconds

Call this function with the specific dimensions to get the time required.

The Python MySQL Connector library:
(a) come pre-installed with Linux
(b) comes pre-installed with the installation of MySQL8.
(c) comes pre-installed with the installation of Python3.
(d) must be downloaded and installed as a separate package.

Answers

Answer: (D) Must be downloaded and installed as a separate package.

Explanation:

  The python MySQL (Structured query language) connector library ought to be downloaded and introduced as separate package. It is utilized to interface MySQL database from python.

The MySQL Installer can introduce and deal with numerous, separate MySQL server occurrences on a similar host simultaneously.

MySQL Installer doesn't allow server updates among major and minor form numbers, however permits redesigns inside a discharge arrangement

Which statement best describes when Variable Substitution (expansion) can occur?

a) inside of single quotes
b) inside of double quotes
c) inside of backquotes
d) B & C

Answers

Answer: d) B & C

Explanation: Variable substitution is the method through which the command substitution is done for the other form of command and regains its value or meaning.

This value substitution is done with the help of double quotes("...") which are inverted as well when a new form of command is to be introduced and it is   known as back quotes. Other given options are incorrect because it is not determined in single quotes.Thus the correct option is option (d).

Answer: (A) Inside of single quotes

Explanation:

 The variable substitution or we can say that expansion occur inside the single quotes because the generation of the file name typically happened inside the single quotes only.

When we enclosing the character and different types of variable with the single quotes ( ' ) then, it basically represent the actual value of the characters. In this way, the estimation of any factor can't be perused by single statement and a solitary statement can't be utilized inside another single quote statements.

 

What is unauthorized data disclosure?

Answers

Answer: Unauthorized data disclosure is the revealing of the confidential or private data to the unauthorized user. The disclosure of such data can be highly risk because it can lead to the several ways in which information can be misused . This incident can be due to attacking and stealing of data on purpose or by accident.

They purposely disclosure of data can be done through the methods like spoofing, sniffling etc.It is considered as the malicious activity which is a punishable crime if done on purpose.Top avoid such situation the exchange of information should be done carefully and in secure manner.

Business customers pay $0.006 per gallon for the first 8000 gallons. If the usage is more than 8000 gallons, the rate will be $0.008 per gallon after the first 8000 gallons. For example, a residential customer who has used 9000 gallons will pay $30 for the first 6000 gallons ($0.005 * 6000), plus $21 for the other 3000 gallons ($0.007 * 3000). The total bill will be $51. A business customer who has used 9000 gallons will pay $48 for the first 8000 gallons ($0.006 * 8000), plus $8 for the other 1000 gallons ($0.008 * 1000). The total bill will be $56. Write a program to do the following. Ask the user which type the customer it is and how many gallons of water have been used. Calculate and display the bill.

Answers

Answer:

#include <bits/stdc++.h>

using namespace std;

int main()

{

   // variables

   char cust_t;

   int no_gallon;

   double cost=0;

   cout<<"Enter the type of customer(B for business or R for residential):";

   // read the type of customer

   cin>>cust_t;

   // if type is business

   if(cust_t=='b'||cust_t=='B')

   {

       cout<<"please enter the number of gallons:";

       // read the number of gallons

       cin>>no_gallon;

       // if number of gallons are less or equal to 8000

       if(no_gallon<=8000)

       {

           // calculate cost

           cost=no_gallon*0.006;

           cout<<"total cost is: $"<<cost<<endl;

       }

       else

       {

           // if number of gallons is greater than 8000

           // calculate cost

           cost=(8000*0.006)+((no_gallon-8000)*0.008);

           cout<<"total cost is: $"<<cost<<endl;

           

       }

       

   }

   

   // if customer type is residential

   else if(cust_t=='r'||cust_t=='R')

        {

           

       cout<<"please enter the number of gallons:";

       // read the number of gallons

       cin>>no_gallon;

       // if number of gallons are less or equal to 8000

       if(no_gallon<=8000)

       {

           // calculate cost

           cost=no_gallon*0.007;

           cout<<"total cost is: $"<<cost<<endl;

       }

       else

       {// if number of gallons is greater than 8000

       // calculate cost

           cost=(8000*0.005)+((no_gallon-8000)*0.007);

           cout<<"total cost is: $"<<cost<<endl;      

       }        

   }

return 0;

}

Explanation:

Ask user to enter the type of customer and assign it to variable "cust_t". If the customer type is business then read the number of gallons from user and assign it to variable "no_gallon". Then calculate cost of gallons, if  gallons are less or equal to 800 then multiply it with 0.006.And if gallons are greater than 8000, cost for  first 8000 will be multiply by 0.006 and  for rest gallons multiply with 0.008.Similarly if customer type is residential then for first 8000 gallons cost will be multiply by 0.005 and for rest it will  multiply by 0.007. Then print the cost.

Output:

Enter the type of customer(B for business or R for residential):b                                                                                            

please enter the number of gallons:9000                                                                                                                      

total cost is: $56  

In an IPv.4 addressing scheme the router works at layer 3 on which addressing layer?

a. protocol b. data link c. transport d. network

Answers

Answer: d) Network

Explanation: IPv4(internet protocol version 4) is the decimal-digit numeric value  for the internet protocol.It helps in the identification of the hosts  through logical addresses. The functioning of  IPv4 helps in the routing of the information over the network.

The network layer contains router that is responsible for the routing of message between the nodes of the path.Router functions with internet protocol.Other options are incorrect because protocol is the set of riles,data link layer works for managing the movement of data and  transport layer monitors the transmission of data.Thus ,correct option is option(d)

Which is not one of the characteristics or objectives of data mining?
a. The miner is often an end user.
b. Business sections that most extensively use data mining are manufacturing.
c. Data mining tools are readily combined with spreadsheets.
d. Sophisticated tools help to remove the information buried in corporate files.

Answers

Answer:b) Business sections that most extensively use data mining are manufacturing.

Explanation: Data mining is the digging and extraction of the data from the large data sets or databases.The data is analyzed according to various parameters and categories and then extracting process works. It helps in the businesses for making decision ,efficient working, discovery of data etc.

Data mining is usually done by the clients. It extracts the unnecessary information also to remove it and can be combined with spreadsheets.The only incorrect option is option(B) because data mining is mostly used by end users or data mining experts in the business field.

The handle in a selected object’s upper-left corner is the ___________handle.

Answers

Answer: Move handle

Explanation: In the field of the database, the unique identifier for an object is created that is known as handle which is for the driving purpose in the database.It is also used for the connection of the database .The object in the database containing data keeps the management of the handle.

It has a handle named move handle ,which is responsible for the movement control of upper left corner in an object.It is in a large in form for the dragging of the object that is selected.

Convert (35.125)10 to binary

Answers

Answer:

The answer is: 100011.001₂.

Explanation:

First, transform to binary the integer part: 35. Divide the number repeatedly by 2, keeping track of each remainder, until we get a quotient that is equal to 0:

35 ÷ 2 = 17 + 1; 17 ÷ 2 = 8 + 1; 8 ÷ 2 = 4 + 0; 4 ÷ 2 = 2 + 0; 2 ÷ 2 = 1 + 0; 1 ÷ 2 = 0 + 1;

Now, construct the integer part base 2 representation, by taking the remainders starting from the bottom of the list:

35₁₀ =  100011₂

Then, transform to binary the fractional part: 0.125. Multiply it repeatedly by 2, keeping track of each integer part of the results, until we get a fractional part that is equal to 0:

0.125 × 2 = 0 + 0.25; 0.25 × 2 = 0 + 0.5; 0.5 × 2 = 1 + 0;

Construct the fractional part base 2 representation by taking all the integer parts of the multiplying operations, starting from the top of the list.

0.125₁₀ =  0.001₂

Then you have:

35.125₁₀ =  100011.001₂

A statement that highlights an organization's key ethical issues and identifies the overarching values and principles that are important to the organization and its decisions making is defined as

Business ethics
Common good practice
Code of ethics
Common good approach

Answers

Answer: Code of ethics

Explanation: Code of ethics in professional field or organizational field is referred as the principles that are responsible for the correct conduct of business organization by governing its functioning and decisions.It is a major key of business field as it maintains right practices,handles issues, provides guidance etc.

Other options are incorrect because business ethics cannot be implemented as principle for the governing the organization working and employees. Common good practice and approach is the basic good conduct and approaching but these factors don't govern the business.

Dicuss why you would or would not use Javadoc in your own software development company.

Answers

Answer:

  The javadoc is the type of the tool which accompanies JDK and it is utilized for producing code of the java documentation in the  HTML design from the source code of the java, that basically required documentation in the predefined code format.

Most of the software development company does not use javdoc because the files of the javadoc are light in weight and it can be easily traceable by using the different types of the tools.

In case of the Public javadoc, while make changing in the API system the javadoc an easily be tracked.

Create a float variable named diameter. This variable will hold the diameter of a circle. d. Create a float variable named PI.

Answers

Answer:

float diameter=2*r; //hold the diameter of a circle

float PI; // float variable named PI.

Explanation:

Here we have declared two variable i.e diameter and PI of type float. The variable diameter will hold the diameter of a circle i.e  2*r  where r is the radius of a circle.

Following are the program in c++

#include <iostream> // header file

using namespace std; // namespace

int main() // main function

{

   float r=9.2; // variable declaration

float diameter=2*r; //hold the diameter of a circle

float PI=3.14; // float variable named PI hold 3.14

cout<<"diameter IS :"<<diameter<<endl<<"PI IS :"<<PI; // display value

  return 0;

}

Output:

diameter IS :18.4

PI IS :3.14

Suppose a group consists of 5 students. Three students are selected at random to do a presentation. How many different sets of presenters are possible?

Answers

Answer:

The number of presentation groups of 3 students that can be selected from a group of 5 students equals 10.

Explanation:

The number of different presenters equals the no of possible combinations of 3 students from a pool of 5 students.

Thus the number of possible combinations equals

[tex]\binom{5}{3}=\frac{5!}{(5-3)!\times 3!}=10[/tex]

Write a function to output an array of ints on a single line. Funtion Should take an array and an array length and return a void. It should look like this {5,10,8,9,1}

Answers

Answer:

void printarr(int nums[],int n)

{

   cout<<"{";//printing { before the elements.

   for(int i=0;i<n;i++) // iterating over the array.

   {

       cout<<nums[i];//printing the elements.

       if(i==n-1)//if last element then come out of the loop.

       break;

       cout<<",";//printing the comma.

   }

   cout<<"}"<<endl;//printing } at the end.

}

Output:-

5

1 2 3 4 5

{1,2,3,4,5}

Explanation:

I have created a function printarr of type void which prints the array elements in one line.I have used for loop to iterate over the array elements.Everything else is mentioned in the comments.

Using the command line, create a symbolic link to the /etc in the /root/Desktop folder.

Answers

Answer:

ln -s /etc /root/Desktop

Explanation:

ln is the command to create links and -s is the flag to create symbolic links between element1 and element2

Example:

ln -s /etc /root/Desktop

Create a symbolic link between folder etc and folder Desktop

. What is suboptimization?

Answers

Answer: Suboptimization is referred to as a term that has been approved for common policy mistake. It usually refers to the practice of concentrating on a single component of a whole and thus making changes which are intended towards improving that component and also ignoring its effects on other components.

Why is a memory hierarchy of different memory types used instead of only one kind of memory?

Answers

Answer: Memory hierarchy is the hierarchy that is created on the basis of the response time of different memories. The performance obtained by the memory helps in creating a computer storage space in distinguished form. The factors considered for the creating of the hierarchy structure are usually response time, storage capacity, complexity etc.

Usage of different kind of memories take place due to different kind of requirements from the system which cannot be fulfilled using one memory device.The requirement is based on saving time, decreasing complexity , improving performance etc.Example of requirements can be like some functions and files do not require much space , some might require quick accessing,etc.

Thus hierarchy of any particular system is in the form of fast to slow order from registers,cache memory, Random access memory(RAM) and secondary memory.

____ refers to driving around an area with a Wi-Fi-enabled device to find a Wi-Fi network in order to access and use it without authorization.

War driving
Wi-Fi driving
Wi-Fi finding
E-stalking

Answers

 Answer:War driving

Explanation: War driving is the activity which is done for searching for the Wi-Fi connection while driving vehicle .The main purpose of the war driving is gaining and accessing the network of Wi-Fi by being in slowly moving vehicle. The act is carried out by the individual or more people.

Other options are incorrect because Wifi driving and Wifi finding are not technical words in the computer field and E-stalking is the stacking activity with the help of internet enables electronic devices.Thus, the correct option is war driving.

The correct answer is Wardriving

Explanation:

Nowadays, it is common people want to access the internet most of the time even if this involves using networks without authorization by connecting a device such as a cellphone or a computer to a Wi-Fi network that is a wireless technology to access the internet. In this context, one common practice is wardriving in which you look for a Wi-Fi network by using a vehicle to move through different zones until finding one network you can access and use. This involves using networks from public places or private networks that do not require a password. According to this, it is wardriving the term that refers to driving around an area to find a Wi-Fi network to access and use it with no authorization.

The changing of values for an object through a system is represented by the _____. (Points : 6) communication diagram
object diagram
use case diagram
None of these

Answers

Answer:

The correct option is communication diagram

Explanation:

The communication diagram represents the change of values for an item by a system.

A communication diagram is an expansion of the diagram of objects showing the objects together with the texts traveling from one to another. Besides the connections between objects, the communication diagram demonstrates the messages that the objects send to one another.

The correct option is a) communication diagram

What is the importance of generalization bounds.

Answers

Answer:

The importance of generalization are as follow:

The generalization bounds are basically used in various ranking algorithm for supporting various vector machine and it is very helpful in the system. The generalization bounds are helpful for minimize and reducing the empirical convex risk in the system. It is also important for handling and controlling the complex hypothetical spaces also handle various types of VC dimensions complexity. The generalization bounds are basically free from all the distribution bounds so that is why it is used in many probability measures.

Write a function that counts and returns the number of vowels in the input, up to the next newline or until the input is done, whichever comes first. Your function should have the following prototype:

int count_vowels();

Answers

Answer:

// here is code in C++.

#include <bits/stdc++.h>

using namespace std;

// function that return the number of vowels in the input string

int count_vowels()

{

// variable

   string str;

   int v_count=0;

   cout<<"enter the string:";

   // read the string

   cin>>str;

   // fuind the length

   int len=str.length();

   // check for vowel

   for(int x=0;x<len;x++)

   {

       char ch=str[x];

       if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u'||ch=='A'||ch=='E'||ch=='I'||ch=='O'|ch=='U')

       {

           v_count++;

       }

   }

   // return the count

   return v_count;

}

// driver function

int main() {

// call the function and print the result

cout<<"number of vowels in string is : "<< count_vowels()<<endl;

return 0;

}

Explanation:

In the function count_vowels(), read a sting and then find its length.Then check each character of the string is vowel or not.If it is vowel then Increment the v_count. After the loop return the count to main function and print it.

Output:

enter the string: welcometoprogramming

number of vowels in string is : 7

ERP packages are always quite simple.

True

False

Answers

Answer:

False

Explanation:

Enterprise Resource Planning (ERP) packages can be complicated. For example: ERP applications such as SAP, Peoplesoft are fairly wide in scope and quite complicated in terms of implementation. Then there are certain desktop versions of ERP which are not so complicated. There are large number of ERP solutions available from different vendors and their complexity is variable but can be quite complex as well.

Broadly speaking, what are some of the benefits of an object-oriented approach when developing a system?

Answers

Answer: The benefits provided by object-oriented approach for the development of the operating system are as follows:-

It provides the facility of the re-utilization of the object-oriented componentsIt decrease the cost of development and also male the system faster for processingThe feature of binding the data into a single capsule unit is also present which is known as encapsulation.Improves the performance and quality of the operating systemSecurity feature is also present

To write data to a binary file you create objects from the following classes:

a.)
File and Scanner

b.)
BinaryFileWriter and BinaryDataWriter

c.)
FileOutputStream and DataOutputStream

d.)
File and PrintWriter

Answers

Answer: (C) File Output Stream and Data Output Stream

Explanation:

 The File output stream and data output stream classes are basically created to write the data into the binary file. The data output steam class is the output steam used to write various data types in the java in the efficient way.

The file output steam class is basically used to create the text file and store the various type of the data into individual bytes.

The file in the file output steam class basically represent the storage of the various type of the data in the binary file.

In 4-bit sign magnitude representation, what is the binary encoding of the number -5?

a) 1011
b) 1010
c) 1101
d) 0101

Answers

Answer:B
Step-by-step explanation:

Analyst is investigating proxy logs and found out that one of the internal user visited website storing suspicious java scripts. After opening one of them he noticed that it's very hard to understand the code and all code differs from typical java script. What is the name of this technique to hide the code and extend analysis time?

Answers

Answer:

Obfuscation

Explanation:

The fact that the analyst can open the Javascript code means that the code is not encrypted. It simply means that the data the analyst is dealing with here is hidden or scrambled to prevent unauthorized access to sensitive data. This technique is known as Data Obfuscation and is a form of encryption that results in confusing data. Obfuscation hides the meaning by rearranging the operations of some software. As a result, this technique forces the attacker to spend more time investigating the code and looking for encrypted parts.

Other Questions
Two protons in an atomic nucleus are typically separated by a distance of 2 10-15 m. The electric repulsion force between the protons is huge, but the attractive nuclear force is even stronger and keeps the nucleus from bursting apart. What is the magnitude of the electric force between two protons separated by 2.00 10-15 m Compare/Contrast the growth process and life cycleof plants andanimals. at what tempreature farenhite scale and celcius scale show the same reading All of these are characteristics of TransparencyStabilityEnforcementAccountabilityDue Process In at least 150 words, explain Rukmani's opinion about what effect the tannery has on the village? Read the lyrics from Melanie Martinez's Orange Juice.Write 2-3 paragraphs that talks about the purpose and meaning of this song.Oh, oh, stick it down your throatI'm watching from the bathroomMaking sure I don't choke, chokeFrom the words you spokeWhen you're screaming at the mirrorNow you're sitting in the cafeteriaShoving clementines and orange bacteriaDown your throat a dozen times a year, yeahFor another 'round of your bulimiaYou turn oranges to orange juiceInto there, then spit it out of youYour body is imperfectly perfectEveryone wants what the other one's workingNo orange juiceWe cry OJWe cry OJWe cry OJWe cry OJOh, oh, I believe you choseto blow it on the reading carpetThat's what happens when you're starvin'Please say that you won't continueOrdering oranges off the menuStuffin' up your mouth like t-t-tissueThe way you look is not an issueYou turn oranges to orange juiceInto there, then spit it out of youYour body is imperfectly perfectEveryone wants what the other one's workingNo orange juiceWe cry OJWe cry OJWe cry OJWe cry OJOoh, I wish I could give you my set of eyes'Cause I know your eyes ain't working, mmmI wish I could tell you that you're fine, so fineBut you will find that disconcertingYou turn oranges to orange juiceInto there, then spit it out of youYour body is imperfectly perfectEveryone wants what the other one's workingNo orange juiceWe cry OJWe cry OJWe cry OJWe cry OJ Choose the replacement for x and y that makes this equation a true statement: 2x + 55y = 214A.x = 3 and y = 4B. x = 4 and y = 3C. x = 3 and y = 4D. x = 4 and y = 4 Given the sequence below, and that sequence has a domain of n 2 1, find the thirdterm.f(n) = 3n+2 Freediving is an activity in which a person dives, sometimes to great depth, without the use of scuba gear. The diver must hod his or her breath for the duration of the dive. (the record depth with no equipment such as diving fins, is 101m; the offical record time is over 11 minutes). historically freediving has been used by pearl divers and sponge divers. some freedivers hyperventilate (breathe rapidly and deeply) before diving. hyperventilation can change the concentration of CO2 in the blood and may increase the length of time that a person feels like he/she can hold his/her breath. how does hyperventilation affect blood pH? a.) it increases CO2 and decreases H+ in the blood, increasing pH b.) it decreases CO2 and increases H+ in the blood, increasing pH c.) it increases CO2 and H+ in the blood, decreasig pH d.) it decreases CO2 and H+ in the blood, increasing pH Patricia needs as many creative ideas as she can get for the new advertising campaign, and her small agency doesn't have a lot of money for high-tech meeting facilities. Given the information provided, which meeting technique will provide the highest number of quality ideas?a) brainstormingb) interacting groupsc) nominal group techniqued) social interactione) electronic meeting _ is the adherence to a personal code of principles.EthicsMoralityIntegrityHonestySection B Please help!!! step by step To add or subtract fractions with different denominators first find the equivalent fractions with a _ denominator According to the reading, which of the following is NOT an obstacle to using big data for analysis and decision making? O Poor reporting process b. Limited types of data Insufficient data d. Lack of talent to evaluate and analyze data All of the above A bag contains three red marbles, five green ones, one lavender one, two yellows, and six orange marbles. HINT (See Example 7.) How many sets of four marbles include one of each color other than lavender? sets Nood Help? Pad W atch The Whats is 4/55/7 which they are both negative What is the formula for aluminum nitrite ? 1. Find the sum.109.526 + 36.42Also show the work please What happens when a substance undergoes a physical change Install (if you have a computer) and get familiar with Mathematica . Plot a Sin function over a range that is three times the period.