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...

tgk streamline solutions


{ City } chennai
< Country > india
* Profession * hr manager
User No # 126194
Total Questions Posted # 86
Total Answers Posted # 351

Total Answers Posted for My Questions # 101
Total Views for My Questions # 107097

Users Marked my Answers as Correct # 0
Users Marked my Answers as Wrong # 0
Answers / { tgk streamline solutions }

Question { 1833 }

What is the difference between null and undefined?


Answer

• null: A deliberate absence of a value assigned by a developer.
• undefined: A variable that has been declared but not assigned a value.

Is This Answer Correct ?    0 Yes 0 No

Question { 1149 }

What is the difference between JavaScript and jscript?


Answer

The JavaScript language was made available by Netscape. To get around the trademark issue, Microsoft renamed it JScript. To put it another way, JScript is the same as JavaScript, but it comes from Microsoft.

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

Question { 1172 }

What is the difference between overloading and overriding?


Answer

• Overloading: Same function name, different signatures.
• Overriding: Redefining a base class's function in a derived class using the same signature.

Is This Answer Correct ?    0 Yes 0 No

Question { 1278 }

What is lifo?


Answer

The acronym LIFO stands for Last In First Out.
Data can be accessed, stored, and retrieved using this method.
The data that was last stored is the first to be extracted.

Is This Answer Correct ?    0 Yes 0 No

Question { 1877 }

What is a graph?


Answer

A specific kind of data structure that has a collection of ordered pairings is called a graph.
Another name for the ordered pairs in a graph is arcs or edges. Connecting nodes where data can be stored and accessed is their most popular use.

Is This Answer Correct ?    0 Yes 0 No

Question { 1467 }

What are packages in java?


Answer

Packages in Java can be defined as the grouping of related types of classes, interfaces, etc providing access to protection and namespace management.

Is This Answer Correct ?    0 Yes 0 No

Question { 1619 }

What is the standard template library (stl)?


Answer

• STL is a collection of templates for data structures (like vector, list), algorithms, and iterators

Is This Answer Correct ?    0 Yes 0 No

Question { 1561 }

What are operators?


Answer

The unique kinds of symbols called operators are employed to carry out certain operations on variables and values.

Is This Answer Correct ?    0 Yes 0 No

Question { 1659 }

What are the different types of joins in sql?


Answer

• Inner Join: Returns matching rows from both tables.
• Left Join (Left Outer Join): Returns all rows from the left table and matching rows from the right table.
• Right Join (Right Outer Join): Returns all rows from the right table and matching rows from the left table.
• Full Join (Full Outer Join): Returns all rows when there’s a match in one of the tables.
• Cross Join: Returns the Cartesian product of both tables.
• Self Join: A table joins itself.
Example Query:
SELECT e1.name, e2.name AS manager_name
FROM employees e1
JOIN employees e2 ON e1.manager_id = e2.id;

Is This Answer Correct ?    0 Yes 0 No

Question { 1400 }

What is the difference between break and continue?


Answer

 break: Exits the loop entirely.
 continue: Skips the current iteration and proceeds to the next.

Is This Answer Correct ?    0 Yes 0 No

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