Signup/Sign In

Answers

All questions must be answered. Here are the Answers given by this user in the Forum.

This is the correct answer:
***



My Favorite Sport





***
7 months ago
Please share your details on WhatsApp - +919354261828
7 months ago
If you mean lesson 11 of level 1 of HTML course, then this is the correct code:
***






Head 1


P 1


Head 2



Head 3



Head 4


Hello


Hello


Hello


Hello


Hello


Hello




Head 5



http://www.studytonight.com">
https://static.studytonight.com/css/resource.v3/icons/studytonight/svg/st-logo-dark.svg">


***
7 months ago
Here is the correct answer:
***



CSS Selectors



Studytonight



***

8 months ago
Please share the level and lesson number.
8 months ago
Here is the answer:
***
package main
import "fmt"

func takeABreak() {
fmt.Println("Yeah! It's my break time.")
}
func main() {
for i:=1; i<=12; i++ {
if i % 4 == 0 {
takeABreak()
}
}
}
***
Also, on the Forum, you can easily find answers to questions asked previously. May be some one asked the same question. So you should check it out. You can use this link for GO language.

https://www.studytonight.com/forum/?tag=go-course
8 months ago
CSS is required to style the HTML webpage. If you just write HTML code, you can define the structure of your webpage, but in order to use colors, background images, different shapes, make a webpage responsive (work well with different screen sizes) etc. you need CSS.

https://www.studytonight.com/cascading-style-sheet/introduction-to-css
8 months ago
Here is the answer:
***



<br /> My Webpage Title<br />


http://www.studytonight.com/css/resource/flat-ui-icon/startup-icon.png">


***
8 months ago
Don't use the 'for' and 'id' attribute in the
8 months ago
Try refreshing the page.
8 months ago
Try this:
***
def count_occurrences(s1, s2):
count = 0
for i in range(len(s1) - len(s2) + 1):
if s1[i:i+len(s2)] == s2:
count += 1
return count

s1 = 'timisverytimidbuthasnotime'
s2 = 'tim'
print(count_occurrences(s1, s2)) # Output will be 2
***
8 months ago
Please elaborate a little. If this is related to some course or project. Please share the details.
8 months ago