Posts

Showing posts from January, 2021

HTML Table Quiz

HTML Table Quiz HTML Table Quiz Question x of y By Abhishek's Hub

HTML HSL Quiz

HTML HSL Quiz HTML HSL Quiz Question x of y By Abhishek's Hub

HTML Link Quiz

HTML Link Quiz HTML Link Quiz Question x of y By Abhishek's Hub

HTML RGB Quiz

HTML RGB Quiz HTML RGB Quiz Question x of y By Abhishek's Hub

HTML Elements Quiz

HTML Elements Quiz HTML Elements Quiz Question x of y By Abhishek's Hub

HTML Basic Quiz

HTML Basic Quiz HTML Basic Quiz Question x of y By Abhishek's Hub

Python Quiz

Python Quiz Python Quiz Quiz Show all questions <=   => Which of the following is an invalid statement? ?   abc = 1,000,000 ?   a b c = 1000 2000 3000 ?   a,b,c = 1000, 2000, 3000 ?   a_b_c = 1,000,000 What is the maximum possible length of an identifier? ?   32 characters ?   63 characters ?   79 characters ?   None of the above Which of the following sorting algorithm for a numerical dataset in Python are correct? ?   list = ["1", "4", "0", "6", "9"] list = [int(i) for i in list] list.sort() print (list) ?   list = ["1", "4", "0", "41", "9"] list = [int(i)] list.sort() print (list) ?   list = ["1", "4", "0", "6", "9"] list = [int(i) for i in list] print (list) ?   none Which statement is correct....?? ?   Both are Immutable ?   Both are Muta