Signup/Sign In

Answers

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

Can you please check it again, because it is working fine at our end.
2 weeks ago
This is the correct answer:
***



My Favorite Sport





***
2 weeks ago
Please share your details on WhatsApp - +919354261828
2 weeks 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">


***
2 weeks ago
Here is the correct answer:
***



CSS Selectors



Studytonight



***

4 weeks ago
Please share the level and lesson number.
4 weeks 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
4 weeks 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
4 weeks ago
Here is the answer:
***



<br /> My Webpage Title<br />


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


***
4 weeks ago
Don't use the 'for' and 'id' attribute in the
4 weeks ago
Try refreshing the page.
4 weeks 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
***
4 weeks ago