Ask internet it will tell u
Answer:
The correct answer to this question is given below in the explanation section.
Explanation:
This question is about integrated development environments (IDEs) that support multiple high-level programming languages.
All mentioned IDEs such as Eclipse, Visual Studio, and Xcode support multiple high-level programming languages except Linux.
Using Eclipse, you can do Java programming easily and can build Java-based programs, and also you can do android programming in Eclipse while importing required android settings and libraries. Visual Studio is a Microsoft IDE, in which you can build desktop, web, and mobile, and windows phone app easily using high-level programming. Xcode is an integrated development environment for macOS containing a suite of software development tools developed by Apple for developing software for macOS, iPadOS, iOS, watchOS, and tvOS.
While Linux is not an IDEs, it is an open-source operating system based on Linux kernel.
Imports System
Public Module Module1
--Public Sub Main()
----For value As Integer = 0 to 10
------Console.WriteLine(20 - value)
----Next
--End Sub
End Module
Answer:
The order of the efficiencies is as following:-
10,000 < 2n < nlog(n) < n5 < n!.
Explanation:
10,000 is constant time whatever will be the size of the problem the efficiency will remain the same.
2n this efficiency is linear it will grow proportionally as the size of the problem increases.
nlog(n) this efficiency is is a bit greater than 2n though it will grow faster than 2n but slower than n2 as the size of the problem increases.
n5 this efficiency is very poor.It is growing very rapidly as the size of the problem increases.
n! is the worst efficiency of them all.
n!=n*(n-1)*(n-2)*(n-3)*(n-4)*.......2*1.
It will grow beanstalk in jack and the beanstalk.
Void printtictactoe(char horizchar, char vertchar)
{
int i,j;
int scale = 5;
for(j=0; j<3; j++) {
for (i = 0; i < scale; i++)
printf("%*c%*c\n", scale+1, vertchar, scale+1, vertchar);
if (j < 2)
for (i = 0; i < (scale * 3)+2; i++)
printf("%c", horizchar);
printf("\n");
}
}
I left out many braces because of the layout issues with this website. There is a scale factor you can set to the desired size of the board cells!