What is the difference between mobile application and desktop application?



What is the difference between mobile application and desktop application?..

Answer / Awani Yadav

Mobile applications are designed to run on smartphones and tablets, while desktop applications run on computers with larger screens. Mobile apps are typically accessed through app stores and require internet connectivity, while desktop apps can be installed directly on a computer.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Sharp Interview Questions

Why singleton class is sealed?

1 Answers  


What is strong name in c# and how can we use it?

1 Answers   DELL,


1. Describe page life cycle?

3 Answers   Mphasis,


what is partial assembly reference

1 Answers  


Using system; class main { public static void Main() { int a = 1; for (int i = 0; i < 10; i++) { int j = a * 5; Console.WriteLine(a + "*5=" + j); a++; } Console.ReadLine(); } }

1 Answers  


What is out int in c#?

1 Answers  


What is the difference between string and stringbuilder in c#?

1 Answers  


What is anonymous class in c#?

1 Answers  


What is windows form in c#?

1 Answers  


What is the use of system.environment class in c#.net?

1 Answers  


Can two catch blocks be executed?

13 Answers  


what is the need of using interface in program ex:if we have a program like this interface1() { void method1(); void method(); } class a1 : interface1 { a1 b = new b(); b.method1(); b.method2(); } so without using interface also we can achieve this then wat is the need to use the interface? plz give me the answer

1 Answers  


Categories