Posts by Ladynoob • 98 points
6 posts
-
3
votes2
answers47
viewsA: How to access the data in a variable of type double[ , ] in C#
Hello! As per language documentation this line of code declares a multidimensional array. An example: double[,] R = new double[3, 2]; I have declared a 3x2 multidimensional R array. Note that the…
-
3
votes1
answer233
viewsA: What are Boleani attributes?
Before understanding the boolean attributes in HTML it is essential to understand how boolean logic works. Within Boolean logic one can classify things or phenomena as true or false. An example: Is…
-
2
votes2
answers352
viewsA: Difficulty with nested FOR loop
I did it this way: The same loop is doing the comparison of the numbers for the first card can be used to make comparisons of all the 5 tickets as can be checked below To print the result we will…
-
0
votes2
answers896
viewsA: What is the difference between Htmlcollection, Nodelist and Object?
With reference to https://www.w3schools.com/js, we can say that: The Nodelist object is a list of elements extracted from the html document. Example: <title>Card Test</title> <link…
-
0
votes1
answer40
viewsA: Changing the table field
From what I understand of your question, you would like the color to be changed when the user type certain letter, but you only have the html and css files, I believe that to do what you want it…
-
0
votes2
answers402
viewsQ: How to overlay two sets of div’s using CSS?
Hello, everybody I’m running a little project, it’s a memory game. My idea was to create a div (which is the letter) and within that div put two other Ivs (which are the front and back of the…