|
Q.No. 3 |
Evaluate any 3 Companies which is considered as “Marketing Myopia” along with their Market share/Users Graph. |
Max Marks 10 |
Answer :
1) Company Name :
Year Start :
Founder Name :
Graph :-
(Graph must show the high and low point of Market Share/users)
2) Company Name :
Year Start :
Founder Name :
Graph :-
(Graph must show the high and low point of Market Share/users)
3) Company Name :
Year Start :
Founder Name :
Graph :-
(Graph must show the high and low point of Market Share/users)
In: Economics
In the petroleum industry, limestone is usually given a name using the Dunham classification, as attached. For any limestone you can follow the flowchart to find its correct name.
This limestone consists mostly of carbonate mud with about 20% shell fragments that do not touch.
rock name __________________________________
This limestone consists of small and large calcite and dolomite crystals. No shells or other carbonate grains are visible.
rock name __________________________________
This limestone has broken shells that touch each other, with about 20% mud between the shells and 15% porosity.
rock name __________________________________
This limestone consists mostly of corals that appear to have grown in their present position before they died and the corals became rock.
rock name __________________________________
This limestone consists of very well sorted, round carbonate grains and some shells that are touching. It has very good porosity, and there is no carbonate mud.
rock name __________________________________
This limestone is dark gray, very fine grained and has no visible shells or crystals.
rock name __________________________________
This limestone consists mostly of shells (therefore it is grain supported), has a little carbonate mud, but also has some quartz grains.
rock name __________________________________
This limestone consists of rounded shell fragments, round carbonate grains, has no mud, and all of the pores have calcite cement.
rock name __________________________________
This limestone has few shells (about 5% of the rock consists of shells) that do not touch each other but consists mostly of carbonate mud.
rock name __________________________________
This limestone consists of 100% shell fragments held together by a calcite cement.
rock name __________________________________
In: Chemistry
I'm having difficulty trying to make my code work.
Create a subclass of Phone called SmartPhone. Make this subclass have a no-arg constructor and a constructor that takes a name, email, and phone. Override the toString method to return the required output.
Given Files:
public class Demo1 {
public static void test(Phone p) {
System.out.println("Getter test:");
System.out.println(p.getName());
System.out.println(p.getNumber());
}
public static void main(String[] args) {
Phone test1 = new SmartPhone();
Phone test2 = new SmartPhone("Alice", "8059226966", "[email protected]");
System.out.println(test1);
System.out.println(test2);
System.out.println(test1);
test(test1);
test(test2);
}
}
And
public class Phone
{
protected String name;
protected long number;
public Phone() {
this("None", -1);
}
public Phone(String name) {
this(name, -1);
}
public Phone(String name, long number) {
this.name = name;
this.number = number;
}
public String getName() {
return name;
}
public long getNumber() {
return number;
}
}
This is my code and please give me any tips or suggestions. Thanks!
public class SmartPhone extends Phone
{
private String email;
private String format;
public SmartPhone()
{
}
public SmartPhone(String name, String phoneNumber, String email)
{
super(name, Long.parseLong(phoneNumber));
format = "Name: " + " " + "\n"
+ "Phone: " + " " + "\n"
+ "Email: " + " " + "\n"
+ "\n" + "Name: " + name + "\n"
+ "Phone: " + phoneNumber + "\n"
+ "Email: " + email + "\n";
}
@Override
public String toString()
{
return format;
}
}
In: Computer Science
ALL IN JAVA
public class Employee
{
public String strName, strSalary;
public Employee()
{
strName = " ";
strSalary = "$0";
}
public Employee(String Name, String Salary)
{
strName = Name;
strSalary = Salary;
}
public void setName(String Name)
{
strName = Name;
}
public void setSalary(String Salary)
{
strSalary = Salary;
}
public String getName()
{
return strName;
}
public String getSalary()
{
return strSalary;
}
public String toString()
{
return(strName + " has a salary of
" + strSalary);
}
}
you will find a class called Employee. This class should include a constructor which sets name to blanks and salary to $0.00 and a constructor which sets name to a starting name and salary to a set amount. Additionally, the class should include methods to set the name and salary and return the name and salary. Create another method to return the name and salary nicely formatted as a string (hint – research the toString method).
You will create a new class called Manager that inherits from the class Employee. Add a field named department of type String. Supply a method toString that prints the manager's name, department, and salary. Remember, you may not change anything in the Employee class.
You will then create a test class that uses the Manager class. The test class should prompt the user to enter name, department and salary. This information should be stored in an array. Upon entry of 3 employee records, the program should output the information you entered.
Your program should be able to handle a maximum of 3 entries.
You may write the program as a console application or using dialog boxes.
In: Computer Science
Below are pairs of real GDP growth rates and unemployment rates.
Economists might be shocked to see some of these pairs. Which pair
of real GDP growth rates and unemployment rates is (are) realistic
for the U.S. economy?
(x) 0.6 percent growth, 4.3 percent unemployment
(y) – 1 percent growth, 9.2 percent unemployment
(z) 2.8 percent growth, 5.1 percent unemployment
A. (x), (y) and (z) B. (x) and (y) only
C. (x) and (z) only D. (y) and (z) only
E. (x) only
Which of the following shifts aggregate demand to the
right?
A. increased spending on new roads and bridges by state
governments
B. increases in the profitability of capital due perhaps to
technological progress.
C. a decrease in the price level
D. All of the above
E. A and B, only
7. Which of the statements about the aggregate demand and aggregate
supply model is correct?
A. The price level adjusts to bring aggregate demand and aggregate
supply into balance.
B. A rise in the price level shifts the aggregate demand curve to
the right.
C. A fall in the price level shifts the aggregate demand curve to
the left.
D. All of the above are correct.
E. B and C, only
In: Economics
the December 31,2015, balance sheet of schism, inc., showed long-term debt of $1,410,000, and the December 31, 2016 balance sheet showed long-term debt of $1,551,000. the 20q6 income statement showed an interest expense of $102,800. what was the firm's cash flow to creditors during 2016?
In: Finance
The parts of the comparative I/S of a firm for the years of 2016 and 2017 looks as follows:
2016 2017
Sales $100,000 $105,000
COGS $40,000 $52,500
SG&A $10,000 $21,000
Based on the above information, forecast 2018 COGS. Put the nearest dollar amount without comma or dollar sign
In: Accounting
Write a python program that has:
CivilIdNumber
Name
Telephone#
Address
CivilIdNumber
Name
Telephone#
Address
CivilIdNumber
Name
Telephone#
Address
Etc
A record always consists of 4 lines (civilid, name, telephone and address). You can find a sample input file on last page of this assignment, copy it and past it into a .txt file and save it to the same directory that your python program resides on.
The function then creates a dictionary with the civilIdNuber as the key and the rest of the record as a list with index 0 being the name, index 1 being the telephone# and index 2 being Address.
When finishing reading all records the function then returns the dictionary
CivilId: civilidnumber
Name: name
Address: address
Telephone Number: telephone
CivilId: civilidnumber
Name: name
Address: address
Telephone Number: telephone
Etc…
In: Computer Science
2. List all the departments name , the manager’s name of each department and the location of each department.
In: Computer Science
In this lab you will get a chance to explore names w/ Vectors. You will need to create two vectors of strings, one for first names, and one for last names. You will then read in first and last names and place these into vectors.
See example below:
while (true){
getline(cin, name);
if (name.empty()){
break;
}
// Add to vector of First Names
getline(cin, name);
// Add to vector of Last Names
// Print out First Name and Last Name ending with newline (endl)
}
You will then sort the list of names using the selection sort we described in class. You will need to make some changes in order to sort on last name first, then first name.
Finally, you will print out the names sorted. Print a title above the sorted names:
cout << " --Sorted Names-- " << endl;
Below's a Sample Session :
david ruby
ej smith
arlene kova
--Sorted Names--
arlene kova
david ruby
ej smith
Good Luck!
In: Computer Science