Robert wants to start a mobile app development company that builds apps for both iOS and Android. He is researching different cross-platform tools. Which tools has he chosen?
Robert chooses
(Phonegap, Xamarin, Sencha), a translation tool that can translate Java. He also chooses
(Phonegap, Xamarin, Sencha), which offers app store deployment, performance testing, and monitoring for thousands of different devices.

Answers

Answer 1

Answer: phonegap and xamarin

Explanation:

phonegap and xamarin


Related Questions

What is computer. Write full form of mips​

Answers

Answer:

Stands for "Million Instructions Per Second." It is a method of measuring the raw speed of a computer's processor. ... The MIPS measurement has been used by computer manufacturers like IBM to measure the "cost of computing." The value of computers is determined in MIPS per dollar.

how major is the technology problem in the United States? Why is it such a big problem?

Answers

Answer:

Explanation:

the problem is predators can get to children easier through the internet

What is better in everybodys opinion. AMD or Intel?

Answers

Answer:

Intel is more for work and such, while AMD is foucsed on gamers. I use AMD because I play many games, but it really depends on what you use your computer for.

Explanation:

it depends Explanation:AMD wins the CPU war overall right now, but depending on your needs, an Intel processor could still be the better choice. If you want the best in overclocking, gaming or software support, or if you want productivity performance without buying a discrete GPU, Team Blue has the advantage. But if you want the best balance of price and performance in the Intel vs AMD lineup, Team Red deserves your money.

Can someone help me with these questions it's for drivers ed

Answers

Answer:

OK

Explanation:

1= I

2= C

3= H

4= B

5= E

6= G or J

7= D

8= A

9= F

10= G or J

After a new technology is purchased, what are some additional costs that must be incorporated into an upgrade budget?

Answers

Answer:

Depends

Explanation:

If corprate then education,

if home then premium software,

if school educational software.

HOPE THIS ANWSERS YOUR QUESTION

IF NOT, MESSAGE ME!

When would you use the Reading View in Word?

To add an image to the document
To have Word Online read the document to you
To make changes to the document
To read the document without any distractions

Answers

Answer:

D: to read the document without any distractions

To read the document without any distractions is used in the reading View in Word. Thus, option D is correct.

What is an Inference?

This refers to the deductions or conclusions that are made about a particular thing or idea based on available evidence, background information and powers of conclusion.

Hence, we can see that from the given text, Nicholas Carr is quoted as saying that reading online makes people to be 'mere decoders of information.' and this makes people become less engaged as they tend not to use their ability to interpret texts less and less.

Based on the given text, it can be seen that Nicholas Carr believes that reading online makes people not connect as deeply as reading without distraction, which can be an inference, to offline reading.

Therefore, To read the document without any distractions is used in the reading View in Word. Thus, option D is correct.

Learn more about document on:

https://brainly.com/question/27396650

#SPJ2

You receive an email from an impressive-sounding stranger, Professor Alexander Rothschild Renard III, president of the American Institute for Scientific Political Statesmen. He urges you to vote for his presidential candidate choice. This social media red flag is known as pomposity inanity superstition fanaticism

Answers

Answer:

pomposity

Explanation:

Pomposity is a form of social media red flag that centers on individuals or users employing flamboyant captions, words, or catchy phrases to describe something or someone in a way that appears more significant than the reality.

In this case, given that the email is from an "email from an impressive-sounding stranger" means Professor Alexander is using flamboyant words to persuade me to vote for his presidential candidate in a way that is more substantial than the reality.

Hence, in this case, the right answer is POMPOSITY

Answer:

A

Explanation:


You should structure the
first before you search for a relevant picture.

Answers

Answer:

True

Explanation:

Write a while loop that replaces every occurrence of “cat” in the message with “dog” using the indexOf and substring methods.

Given:
public class ChallengeReplace
{
public static void main(String[] args)
{
String message = "I love cats! I have a cat named Coco. My cat's very smart!";

// Write a loop here that replaces every occurrence of "cat"
// in the message with "dog", using indexOf and substring.






}
}

Answers

Answer:

Complete the program using:

int index = message.indexOf("cat");

while(index != -1){

message = message.replace("cat","dog");

index = message.indexOf("cat");

}

System.out.print(message);

}

}

Explanation:

The line gets the index of string "cat"

int index = message.indexOf("cat");

The following operation is repeated until all occurrence of "cat"s has been replaced with dog

while(index != -1){

message = message.replace("cat","dog");

index = message.indexOf("cat");

}

This prints the new string

System.out.print(message);

}

}

The program illustrates the use of loops.

Loops are used to perform repetitive and iterative operations.

The code segment where comments are used to explain each line, is as follows:

//This gets the index of "cat" in the string message

int index = message.indexOf("cat");

//The following loop is repeated, until there is no occurrence of "cat" in the string

while(index != -1){

//This replaces "cat" with "dog"

message = message.replace("cat","dog");

//This gets another index of "cat" in the string message

index = message.indexOf("cat");

}

//This prints the new string

System.out.print(message);

}

}

At the end of the loop, all occurrence of "cat" are replaced with "dog".

Read more about similar programs at:

https://brainly.com/question/20461017

A financial manager was completing an annual report that contained multiple graphs explaining the company growth. If she wanted to cross-reference these graphs throughout the document, she should use the _____ feature. biliography citation caption footnote

Answers

Answer:

Caption

Explanation:

because it just works.

The way things are arranged on a publication is referred to as the _____.

style
guides
layout
scheme

Answers

Answer: I’m pretty sure it’s layout


1. Problem solving is
(4 Points)
O A. highly interactive
B. collaborative
C. Both And B
D. Designing an App

Answers

Answer:

A

Explanation:

1. Problem solving is

(4 Points)

O A. highly interactive

B. collaborative

C. Both And B

D. Designing an App

1. Which of the following is not the name of a Java wrapper class from the Java API?

A. Byte
B. Int
C. Long
D. Boolean*

2. Which of the following statements will cause a compiler error?

A. Integer i = new integer ( ) ;*
B. Integer j = new integer ("5") ;
C. Integer k = Integer.valueOf ("5");
D. int m = Integer.pareseInt ("5");

3. If variables j and k refer to objects of type Double and j . compareTo (k) returns a value of 1, which of the following is true?

A. The double value held in j is less than the value held inside k.
B. The difference between values held in j and k is 1.*
C. The double values held inside j and k are both positive.
D. The double value held inside j is greater than the value held inside k.

4. What is a radix as used in the method parseInt (String s, int radix) from the integer class?

A. A numeric base 2 such as for binary or 16 for hexadecimal.
B. The number of characters in the string that represent integers.*
C. The Unicode character code to be used when parsing the string.
D. The number of times the string should be repeated before being converted to an int.

5. Which of the following is a static method of the integer class?

A. intValue ( )
B. parseInt ( )
C. toString ( )*
D. compareTo ( )

6. Which of the following statements will cause a compiler error?

A. Double a = new Double (10.6) + 3;
B. Integer b = 0;*
C. Double c = 0;
D. int d = new Integer (7) ;

7. Which of the following is not an example of autoboxing?

A. Boolean a = false
B. Integer b = new integer (9);
C. double x = 3.0;
Double c = x;
D. Character d = ‘2’;*

8. What is the result of the following code fragment?

BigInteger a = new BigInteger (“10”);
BigInteger b = new BigInteger (“25”);
a . multiply (b);
a . add (b);
System.out.println (a);

A. 10
B. 35
C. 250 *
D. 275

9. What is the name of the BigInteger method that will calculate the remainder of division by another BigInteger?

A. modulo ( )
B. modulus ( )*
C. divisor ( )
D. remainder ( )

the ones marked in asterisks are my answers, I'm not totally sure if they're right and would like someone to double check for me

Answers

Answer:

1. Which of the following is not the name of a Java wrapper class from the Java API?

A. Byte

B. Int

C. Long

D. Boolean

Int is not a wrapper class  

Byte is the wrapper class of byte, Int is not a wrapper class and is a primitive data type, Long is a wrapper class of long, Boolean is a wrapper class for boolean. Hence Int is the correct answer and its wrapper class is Integer.

2. Which of the following statements will cause a compiler error?

A. Integer i = new integer ( ) ;

B. Integer j = new integer ("5") ;

C. Integer k = Integer.valueOf ("5");

D. int m = Integer.pareseInt ("5");

“I” in integer in A and B must be in capital.

3. If variables j and k refer to objects of type Double and j . compareTo (k) returns a value of 1, which of the following is true?

A. The double value held in j is less than the value held inside k.

B. The difference between values held in j and k is 1.

C. The double values held inside j and k are both positive.

D. The double value held inside j is greater than the value held inside k.

Compareto return 1 if first value is greater than with what it is compared.

4. What is a radix as used in the method parseInt (String s, int radix) from the integer class?

A. A numeric base 2 such as for binary or 16 for hexadecimal.

B. The number of characters in the string that represent integers.

C. The Unicode character code to be used when parsing the string.

D. The number of times the string should be repeated before being converted to an int.

The radix value is 10 for decimal, 2 for binary and 16 for hexadecimal. Radix is the base or number of unique digits.

5. Which of the following is a static method of the integer class?

A. intValue ( )

B. parseInt ( )

C. toString ( )

D. compareTo ( )

ParseInt() is a static method of the integer class, and rest are non static methods.

6. Which of the following statements will cause a compiler error?

A. Double a = new Double (10.6) + 3;

B. Integer b = 0;

C. Double c = 0;

D. int d = new Integer (7) ;

In A and C data type does not matches like Double c=0 means Double c=new int(0) which is never true.

7. Which of the following is not an example of autoboxing?

A. Boolean a = false

B. Integer b = new integer (9);

C. double x = 3.0;

Double c = x;

D. Character d = ‘2’;

Autoboxing brings out reference type from the value type, and this is not true for A  

8. What is the result of the following code fragment?

BigInteger a = new BigInteger (“10”);

BigInteger b = new BigInteger (“25”);

a . multiply (b);

a . add (b);

System.out.println (a);

A. 10

B. 35

C. 250

D. 275

a.multiply(b) = 250

a.add(b)= 250+25=275

9. What is the name of the BigInteger method that will calculate the remainder of division by another BigInteger?

A. modulo ( )

B. modulus ( )

C. divisor ( )

D. remainder ( )

Remainder is the correct answer.

Explanation:

Please check answer.

who goes to belle place middle and is in 7th grade on hear​

Answers

Answer:

Not me but thx for the free points lol

Explanation:

What kinds of useful tags might you use to help you organize and find the documents in the future?

Answers

Answer:

you can use color tags(blue for biology) or just simply word tags (biology for biology)

Explanation:

Hope this helps a little.

The useful tags might you use to help you organize and find the documents in the future insertion point.

What is the use insertion point?

If any user or person scrolls the following contents by using the keyboard from one position to another position in the document of the user then, the insertion point moves automatically without any implementation when the user presses any key they want. If the user clicks on the arrow keys then, it also works like that.

The <dd> tag is used in HTML document to explain set of terms. The <dd> tag list is used in conjunction with the <dl> term. Inside a <dd> tag we can insert text, sentence, paragraph or links. There are 4 primary tags to build any website. Every HTML document begins and ends with HTML tag.

The PCR stands for 'Patient Care Report.' It is a legal document that needs to have all the procedures done to the patient. This document becomes part of the patients permanent medical record and is used in court in legal cases. It is also used to bill medical expenses.

Therefore, The useful tags might you use to help you organize and find the documents in the future insertion point.

Learn more about insertion point on:

https://brainly.com/question/14274782

#SPJ2

Please enter a name: (Nope to end) Antonio
Nice to meet you Antonio
Please enter a name: (Nope to end) Jonathan
Nice to meet you Jonathan
Please enter a name: (Nope to end) Tyler
Nice to meet you Tyler
Please enter a name: (Nope to end) Brianne
Nice to meet you Brianne
Please enter a name: (Nope to end) Nope


CAN SOMEONE CODE THIS PLZ!

Answers

In python:

while True:

   name = input("Please enter a name: ")

   if name != "Nope":

       print("Nice to meet you {}".format(name))

   else:

       break

Following are the program to the given question:

Program Explanation:

Defining a header file.Defining a main method.Inside the method a string variable "name" and an integer variable "n" is declared.In the next step, a print message and define a loop that input and check its value.To check the input value a conditional statement is defined that check input value "Nope", if it's it break the loop, otherwise it print the value and input another value.

Program:

#include <iostream>//header file

using namespace std;

int main()//main method

{

   string name;//defining string variable

   int n=1;//defining an integer variable

   cout<<"Please enter a name: (Nope to end)";//print message

   while(n==1)//defining a while loop to that inputs and check the value

   {

       cin>>name;//input name value

       if(name=="Nope")//use if that check name=="Nope"

       {

           n=0;//initilze n=0

           break;//break the loop

       }

       else//else block

       {

           cout<<"Nice to meet you "<<name<<endl;//print input value with message

           cout<<"Please enter a name: (Nope to end)";//print message

       }

   }

   return 0;

}

Output:

Please find the attachment file.

Learn more:

brainly.com/question/18129358

In which place does essential computing of computer takes place at?
option
1]microprocessor
2]ram
3]motherboard
4]none

Answers

3.Mother board controls everything

Answer:

123456789-0[tex]\lim_{n \to \infty} a_n fffff[/tex]

Explanation:

Which of the following is an advantage of algorithmic thinking? Select all that apply. Easier to understand Easier to understand Increases flexibility Increases flexibility Less complex Less complex Written as a flowchart or natural language


Please help Ill do anyting

Answers

Answer:

gjjsh was also very good morning 8PM and block the money from her husband

Which line of code outputs the decimal portion of a float stored in the
variable x?

Answers

Answer:

the answer is a

Explanation:

why computer caller versatile machine

Answers

Answer:

hii h r u

where u live....................

Steve Jobs described early computers as “the most remarkable tool that we’ve ever come up with..it’s equivalent of a bicycle for our minds.” Would you describe smartphones as a bicycle for our minds?

Answers

Answer:

Here is my stance on the phone issue and a quote from Steve himself.

"I think one of the things that really separates us from the high primates is that we’re tool builders. I read a study that measured the efficiency of locomotion for various species on the planet. The condor used the least energy to move a kilometer. And, humans came in with a rather unimpressive showing, about a third of the way down the list. It was not too proud a showing for the crown of creation. So, that didn’t look so good. But, then somebody at Scientific American had the insight to test the efficiency of locomotion for a man on a bicycle. And, a man on a bicycle, a human on a bicycle, blew the condor away, completely off the top of the charts.

And that’s what a computer is to me. What a computer is to me is it’s the most remarkable tool that we’ve ever come up with, and it’s the equivalent of a bicycle for our minds."

Explanation:

Like anything smartphones, computers, and television can be the junk-food equivalent of our minds or the inspiration to better yourself with knowledge and creativity. To me its like a bicycle in that are you riding the bicycle to healthfoods or mcdonalds. Its the freedom of the transportation of knowledge that can be so life-changing and so life-threating at the same time.

I would not think of smartphones as a bicycle for our minds as they do not run on how my mind functions.

What are people view on the quote above?

Some people do believe that the statement is true. They think also that smartphones and tablets can be a source of big distraction if not handled well.

Smartphones are a good learning tools, or they can be bicycles for our minds only when they are used by a skillful person.

Learn more about smartphones from

https://brainly.com/question/917245

One day you tap your smartphone screen to turn it on, and nothing happens. It appears to be turned off and will not turn on. What should you try first to fix it?

perform a soft reset

plug it into a charger for an hour
submerge it in a bag of rice for 24 hours
perform a hard reset

Answers

Answer:

B) Plug it in

Explanation:

Though the other answer would be helpful in a real life situation, the correct choice on ed g e is b) :)

plug it into a charger for an hour

Question 12 (1 point)
Generally, each pixel in an image creates 25 bytes of data.
True
False

Answers

Answer:

This is B: False

Explanation:

Each pixel of an image creates 24 bits, or 3 BYTES of data for color, and 1 byte for black and white.

A data unit created at the transport layer by UDP is a _____.


A. segment

B. packet

C. datagram

D. frame

Answers

Answer:

A datagram

Explanation:

Protocol data units for the Internet protocol suite are: The transport layer PDU is the TCP segment for TCP, and the datagram for UDP. The Internet layer PDU is the packet.

Answer:

I think it's Datagrame

Explanation:

Does anyone know how to snip or like screenshot the screen?

Answers

Answer:

yes it is on pc shift command 3

Explanation:

thats how i do it

? Assessment
8/10
Which of the following products likely include Internet of Things (IoT) connected
devices?
A soap dispenser that dispenses soap
when it detects a hand underneath.
A smart toilet flushes automatically
after use.
Lights that turn on when someone
enters the bathroom.
None of the above

Answers

Answer:

none of the above

Explanation:

Where are the motors for the light year one located ???

Answers

Not sure honestly ...

what are the weakness of a computer somebody plzz tell me​

Answers

Answer:

The computer, in spite of its strengths and the denials of its missionaries, does have a number of weaknesses. These can be seen in three areas: first, the machine itself, second, the people who serve it and, third, its output.

This feature allows you to adjust your view to see the lower or upper part of a document.

A.Command

B.Ribbon

C.Scroll bar

D.Tab

Answers

Answer:

C. scroll bar

Explanation:

Its what you use to scroll up and down on documents to see different parts of it

Average of Grades - Write a program that stores the following values in five different variables: 98, 87, 84, 100, 94. The program should first calculate the sum of these grades and store the result in a variable named sum. Then, the program should divide the sum variable by 5 to get the average. Display the results on the screen. The program output should look similar to: The average of the grades is 92.6.

Answers

Answer:

Not sure what language, but in python a super basic version would be:

val1 = 98

val2 = 87

val3 = 84

val4 = 100

val5 = 94

sum = val1 + val2 + val3 + val4 + val5

avg = sum / 5

print(avg)

Explanation:

Other Questions
Watercolor should be... *O Opaque (not see through)Transparent (see through) Ocean water has higher levels of oxygen than air. What is one fact about Benjamin Franklin's life that IS NOT correct?Lived from 1706 to 1790Was described as a Founding Father of AmericaFought in the French and Indian WarHelped write the Declaration of Independence what is the closest antonym for the word confirm ..Pursue Reject Uphold Devise ILL MARK BRAINLIST !!!! Write each number in scientific notation.1. 160,000,000 2. 29,8303. 0.000350 Which fractions are equivalent to-? Check all that apply.12 1. 30 inches to 24 inchesFind the percent of change and round to the nearest whole percent describe the steps needed to solve2c +5 = C-8 a fence is 7 feet 6 inch high. 1 foot = 12 inches. what is the height of the fence December 21, 2020 will be one of the four special days of the astronomical calendar related to seasons. On this date, at what latitude on Earth is the Sun located at the zenith at noon? Give your answer both in degrees as well as the special name given to this Earthly latitude. Recognizing LandmarksMatch each area in New York with what it is known for.the United Nationsinternational peacekeepingFulton StreetRenaissanceHarlemo oootheater and artBroadwayfish marketActivity Example A: Two measures of notation are shown on the bass staff in four-four time.Example B: Two measures of notation are shown on the treble staff in four-four time.ma coExample C: Two measures of notation are shown on the bass staff in four-four time1. Which example spells the word decade? 2. Which example spells the word baggage?3. Which example spells the word facade? 4. What set of pitches does the treble clef represent? You are conducting an experiment in which you are trying to manipulate the immune response of rats by using the principles of classical conditioning. First for several days of an experiment, you give the rats artificially sweetened water with an immune systemenhancing drug in it. You later remove the drug and notice that the immune systems of the rats are boosted when they consume only the sweetened water. In your experiment, what is the conditioned stimulus (CS)? Write a program that takes a three digit number (input) and prints its ones, tens and hundreds digits on separate lines Robert Hooke used a microscope to see that cork looked like it was made of little boxes. Anton van Leeuwenhoek saw tiny cells swimming in pond water. Which part of cell theory do these observations best support? A.Cells come from other cells.B.All organisms are unicellular.C.Cells are the basic unit of life.D.All organisms are multicellular.____ 23. Which of the following characteristics do all unicellular organisms share? A.All unicellular organisms reproduce.B.All unicellular organisms have a nucleusC.All unicellular organisms eukaryotes.D.All unicellular organisms prokaryotes.____ 24. Which term describes one or more cells that carry out all of the processes needed to sustain life? A.DNAB.organismC.organellesD.cytoplasm____ 25. DNA is genetic material that provides instructions for all cell processes. Where is the DNA located in prokaryotes? A.in the nucleusB.in the cytoplasmC.in the flagellaD.in membrane-bound organelles Activities we do in Spanish class (1 point)15. Column 1 would be on the x-axis, and Column 2 would be on the y-axis. Which best lists thetitles of each column?Column 1 should be titled Time," and Column 2 should be titled "Velocity.Column 1 should be titled "Velocity," and Column 2 should be titled Time."Column 1 should be titled "Time," and Column 2 should be titled "Acceleration."Column 1 should be titled "Acceleration," and Column 2 should be titled Time."93 MC Qu. 22 Selected information from the accounting... Selected information from the accounting records of Dunn's Auto Dealers is as follows: Cost of furniture purchased for cash $ 8,000 Proceeds from bank loan 100,000 Repayment of bank loan (includes interest of $4,000) 44,000 Proceeds from sale of equipment 5,000 Cash collected from customers 320,000 Purchase of stock of another corporation as an investment 20,000 Common stock issued for cash 200,000 In its statement of cash flows, Dunn's should report net cash outflows from investing activities of: 1) x+3= -72) 2/3x+1=273) 4x-7=2(x+3)+9 Select the correct answer.explains that an individual will change his/her behavior only if they want to change.OA.The decision-making modelOB.An action planOC. A goalOD.The stages of change