Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

glibware soft solutions


{ City } 503
< Country > india
* Profession * business
User No # 125964
Total Questions Posted # 32
Total Answers Posted # 337

Total Answers Posted for My Questions # 44
Total Views for My Questions # 39048

Users Marked my Answers as Correct # 0
Users Marked my Answers as Wrong # 0
Answers / { glibware soft solutions }

Question { 6960 }

what is html


Answer

HTML (HyperText Markup Language) is the standard markup language used to create the structure of web pages. It allows you to define elements such as headings, paragraphs, links, images, and other content types for websites.

Is This Answer Correct ?    0 Yes 0 No

Question { 6960 }

what is html


Answer

HTML (HyperText Markup Language) is the standard markup language for creating web pages. It structures the content using elements defined by tags.

Is This Answer Correct ?    0 Yes 0 No


Question { 3751 }

How is memory managed in python?


Answer

All of the objects in Python are stored in a private heap region. This heap's sharing, caching, segmentation, and allocation are all controlled by the Python memory manager. Only the Python interpreter has access to the heap; the user does not.

Is This Answer Correct ?    0 Yes 0 No

Question { 3751 }

How is memory managed in python?


Answer

Python memory management consists of a private heap that holds all data structures and objects. The interpreter controls the heap, and the programmer has no access to it. All memory allocation is handled by the Python memory management. Additionally, a built-in trash collector recycles and frees up heap space memory.

Is This Answer Correct ?    0 Yes 0 No

Question { 1907 }

What is PL/SQL ?


Answer

PL/SQL refers to Procedural Language/Structured Query Language. It is a programming language extension of SQL that allows you to write procedural code, such as loops, conditional statements, exception handling, and SQL statements. PL/SQL is mainly used for developing database applications and stored procedures within Oracle Database.

Is This Answer Correct ?    0 Yes 0 No

Question { Amazon, 1413 }

What is the difference between delete and delete[]


Answer

• delete: Frees memory allocated for a single object.
• delete[]: Frees memory allocated for an array of objects.

Is This Answer Correct ?    0 Yes 0 No

Question { 1212 }

What are decorators in Python?


Answer

Decorators are used to alter the appearance of a function while retaining its structure. They are often defined before the function that they improve.

Is This Answer Correct ?    0 Yes 0 No

Question { 803 }

What are generators in Python?


Answer

Generators in Python are a special type of function that return an iterator and allow you to iterate through a sequence of values lazily, meaning they produce values one at a time and only when requested. Instead of using return, generators use the yield keyword to return values. This makes generators memory-efficient, especially for large datasets, as they generate values on the fly rather than storing the entire sequence in memory.

Is This Answer Correct ?    0 Yes 0 No

Question { Cognizant, 1558 }

what is a structure in c#


Answer

A structure is a user-defined data type that groups variables of different types under one name.

Is This Answer Correct ?    0 Yes 0 No

Question { 1287 }

What is namespace in Python?


Answer

A namespace is a naming system used to make sure that names are unique to avoid naming conflicts.

Is This Answer Correct ?    0 Yes 0 No

Question { 1449 }

What are binary trees?


Answer

An extension of the linked list structure, a binary tree contains no more than two children per node.
There are always two nodes in a binary tree: a left node and a right node.

Is This Answer Correct ?    0 Yes 0 No

Question { 1547 }

What is FIFO?


Answer

First In First Out is what FIFO stands for.
Data can be accessed, stored, and retrieved using this method.
The first data to be extracted is the one that was initially stored.

Is This Answer Correct ?    0 Yes 0 No

Question { 1431 }

What is a pure virtual function?


Answer

• A function declared with = 0 in a base class, making it abstract. Example:
• virtual void display() = 0;

Is This Answer Correct ?    0 Yes 0 No

Question { 1944 }

What is recursion?


Answer

Recursion occurs when a function calls itself directly or indirectly.

Is This Answer Correct ?    0 Yes 0 No

Question { 1944 }

What is recursion?


Answer

A function that calls itself in response to a terminating condition is said to be recursive.
Because it employs LIFO, the stack data structure is used.

Is This Answer Correct ?    0 Yes 0 No

Prev     1   [2]    3  ... 5   ... 7   ... 9   ... 11   ... 13   ... 15   ... 17   ... 19   ... 21   ... 23    Next