Answer:
huge\color{blue}\boxed{The}\huge\color{pink}\boxed{Points
Answer:
Option (D) i.e., Parallel start up is correct option to the following question.
Explanation:
Parallel startup is also an application or software or a way of using the application of the other Operating System in others just like that the following XYZ inc. has trust on older platform but their system give them cautions for update then they use parallel set up by which they also use old software, as well as they, use the Mac's software in Windows. This strategy provides both the option of usage.
The generated code component that executes on the web server is the following does Laura tell you is NOT a component of the active server page.
a. the generated code component that executes on the web server
<u>Explanation:</u>
Asp technology is where it is a combination of both HTML and visual basic programming. Asp web pages are executed in server and display as Html to the end-users.
With the HTML coding, only static pages can be developed whereas through ASP web pages are developed and which contains visual basic coding languages and for client-side validates in ASP web pages either javascript or visual basic scripts are used.
Each ASP web pages are compiled at the server end and executed and complied out HTML pages are shown in web pages.
We need to install the ASP component at the server to execute the ASP web pages.
Answer:
Answer is b. 10
Explanation:
The find() method is used to search the string for a specified value and searches the first occurrence of that value. It returns the position of that specified value. If the value is not found, this method returns -1.
Lets say we have a message variable that contains the string Happy holidays.
message = "Happy holidays"
We use the method find() to find days word from the Happy holidays string in the message variable.
The find() method will find the position of day.
If we look at the string Happy holidays we see that the word day is at the 10th position of the string.
H 1
a 2
p 3
p 4
y 5
h 6
o 7
l 8
i 9
d 10
a 11
y 12
s 13
So it is at 10th position so the statement
message.find("days")
returns 10