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 # 39054

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

Question { 10877 }

What is a stored procedure ?


Answer

A stored procedure is a precompiled block of PL/SQL code stored in the database, which can be executed to perform a specific task.
Syntax Example:
CREATE OR REPLACE PROCEDURE IncreaseSalary(emp_id NUMBER, increment NUMBER) AS
BEGIN
UPDATE employees
SET salary = salary + increment
WHERE id = emp_id;
END;
To execute:
EXEC IncreaseSalary(101, 500);

Is This Answer Correct ?    0 Yes 0 No

Question { Keane India Ltd, 22871 }

What is a data structure?


Answer

A data structure is a type of storage format that specifies how information is arranged, saved, and worked with.
Trees, graphs, and arrays are a few well-known data structures.

Is This Answer Correct ?    0 Yes 0 No


Question { IBM, 12989 }

What is a linked list?


Answer

Similar to an array, a linked list is a linear data structure where the components aren't always kept together.
In essence, it is a series of nodes that form a chain-like structure by pointing in the direction of the next node.

Is This Answer Correct ?    0 Yes 0 No

Question { Christ University, 86194 }

What is the difference between = and == in C?


Answer

 =: Assignment operator (e.g., x = 10).
 ==: Equality comparison operator (e.g., if (x == 10)).

Is This Answer Correct ?    0 Yes 0 No

Question { 18235 }

what is an array


Answer

A collection of items kept at consecutive memory regions is frequently referred to as an array.
The items that are kept are all of the same kind.
It arranges data in a way that makes it simple to search for or sort similar values.

Is This Answer Correct ?    0 Yes 0 No

Question { Tech Mahindra, 14843 }

what is c?


Answer

C++ is a general-purpose, high-level programming language used for system and application development. Developed by Bjarne Stroustrup at Bell Labs in 1983, it builds upon the C language while introducing object-oriented features. It supports multiple paradigms, including procedural, functional, and generic programming. This is one of the most commonly asked C++ interview questions.

Is This Answer Correct ?    0 Yes 0 No

Question { Tech Mahindra, 14843 }

what is c?


Answer

C is a general-purpose, procedural programming language that supports structured programming. It is widely used for system software and application development.

Is This Answer Correct ?    0 Yes 0 No

Question { Tech Mahindra, 14843 }

what is c?


Answer

C++ is a general-purpose, high-level programming language used for system and application development. Developed by Bjarne Stroustrup at Bell Labs in 1983, it builds upon the C language while introducing object-oriented features. It supports multiple paradigms, including procedural, functional, and generic programming. This is one of the most commonly asked C++ interview questions.

Is This Answer Correct ?    0 Yes 0 No

Question { 7604 }

what is the difference between c and c++


Answer

• C: Procedural programming language, no support for OOP, limited standard library.
• C++: Supports OOP, templates, and STL; more modern syntax and features.

Is This Answer Correct ?    0 Yes 0 No

Question { 4248 }

what is a function prototype?


Answer

A function prototype declares the function's name, return type, and parameters without providing the actual implementation.

Is This Answer Correct ?    0 Yes 0 No

Question { 14020 }

What is a Queue?


Answer

A linear data structure that executes operations in FIFO order is called a queue.
Rather than a stack in a queue, the elements that have been added the least recently are eliminated first.

Is This Answer Correct ?    0 Yes 0 No

Question { 7589 }

what is LINUX?


Answer

Linux is an open-source, Unix-like operating system kernel. It is widely used in servers, embedded systems, and desktops.

Is This Answer Correct ?    0 Yes 0 No

Question { 6020 }

what is a stack


Answer

A linear data structure that executes operations in Last In First Out (LIFO) order is referred to as a stack.
Only the topmost element in a stack can be accessed, followed by the bottom element.

Is This Answer Correct ?    0 Yes 0 No

Question { TNS, 6310 }

What is Regression?


Answer

Regression is a supervised machine learning algorithm technique that helps predict the dependent variable (y) based on the independent variable (x) by determining the correlation between variables. Prediction, time series modeling, forecasting, and figuring out the causal-effect relationship between variables are its primary uses.

Regression and all machine learning methods are implemented in Python using the Scikit module.

Is This Answer Correct ?    0 Yes 0 No

Question { IBM, 10885 }

What is the difference between SQL and PLSQL


Answer

• SQL (Structured Query Language):
o Used to interact with databases (e.g., querying, inserting, updating data).
o Declarative in nature.
• PL/SQL (Procedural Language/SQL):
o Procedural extension of SQL in Oracle.
o Supports loops, conditions, and error handling.
o Used for creating functions, triggers, and stored procedures.

Is This Answer Correct ?    0 Yes 0 No

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