jisha.c
jisha.c
@jisha-c
Noble Member
Joined: Mar 4, 2023
Last seen: Mar 11, 2024
Topics: 300 / Replies: 494
Reply
Answer to: What is GitHub ? And what is the use of Github?

GitHub is a code hosting platform for version control and collaboration. It lets you and others work together on projects from anywhere. This tutorial…

11 months ago
Reply
Answer to: What is the use of span in CSS?

<span>: The Content Span elementIt can be used to group elements for styling purposes (using the class or id attributes), or because they share …

11 months ago
Reply
Answer to: How do you handle promises using `.then()` and `.catch()`?

then : when a promise is successful, you can then use the resolved data. catch : when a promise fails, you catch the error, and do something with the…

11 months ago
Reply
Answer to: What is Express.Js?

Express is a node js web application framework that provides broad features for building web and mobile applications. It is used to build a single pag…

11 months ago
Reply
Answer to: What is middleware?

For example, a web server is middleware that connects websites to the backend database. When you submit a form on a website, your computer sends the r…

11 months ago
Reply
Answer to: How do you add and remove elements from an array in JavaScript?

The pop() method removes the last item from an array, while shift() removes the first. push() adds one or more values at the end of an array, while un…

11 months ago
Reply
Answer to: Why destructors in python is not much needed as in C++?

In Python, destructors are not needed as much as in C++ because Python has a garbage collector that handles memory management automatically. The __del…

11 months ago
Reply
Answer to: What is git hub?

GitHub is a code hosting platform for version control and collaboration. It lets you and others work together on projects from anywhere. This tutorial…

11 months ago
Reply
Answer to: What is the use of zip in python?

The zip() function in Python is used to combine two or more iterable dictionaries into a single iterable, where corresponding elements from the input …

11 months ago
Reply
Answer to: Use of Any / All operator

The ANY and ALL operators allow you to perform a comparison between a single column value and a range of other values.

11 months ago
Reply
Answer to: Which programming language is used for AI?

Python is widely used for artificial intelligence, with packages for several applications including general AI, machine learning, natural language pro…

11 months ago
Reply
Answer to: Difference between class method and static method in python.

Class methods don’t need a class instance. They can’t access the instance ( self ) but they have access to the class itself via cls . Static methods d…

11 months ago
Reply
Answer to: What is the syntax error in programming?

Syntax errors are mistakes in the source code, such as spelling and punctuation errors, incorrect labels, and so on, which cause an error message to b…

11 months ago
Reply
Answer to: What is the difference between errors and exceptions?

Errors occur at compile time and run time, which can terminate the compilation or execution. Exceptions occur only at run time, just that checked exce…

11 months ago
Page 6 / 53