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

nashi informatics solutions


{ City } chennai
< Country > india
* Profession *
User No # 125947
Total Questions Posted # 479
Total Answers Posted # 668

Total Answers Posted for My Questions # 836
Total Views for My Questions # 366755

Users Marked my Answers as Correct # 0
Users Marked my Answers as Wrong # 0
Answers / { nashi informatics solutions }

Question { 6439 }

What are command line arguments?


Answer

Command-line arguments are inputs passed to the program at runtime via argc and argv in the main function.

Is This Answer Correct ?    0 Yes 0 No

Question { 14488 }

What is an Exception ?


Answer

An is considered an unexpected event that can disrupt the program's normal flow. These events can be fixed through the process of Exception Handling.

Is This Answer Correct ?    0 Yes 0 No


Question { IBM, 22982 }

What is the difference between throw and throws?


Answer

C++ only has throw. throws is used in Java for declaring exceptions.

Is This Answer Correct ?    0 Yes 0 No

Question { Accenture, 5866 }

What is Normalization?


Answer

o Normalization is the process of organizing database data to minimize redundancy and dependency. Common forms include:
 1NF (First Normal Form)
 2NF (Second Normal Form)
 3NF (Third Normal Form)

Is This Answer Correct ?    0 Yes 0 No

Question { 10876 }

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 { Fidelity, 8837 }

What are inline functions?


Answer

Functions expanded at the point of call, avoiding function call overhead.

Is This Answer Correct ?    0 Yes 0 No

Question { 8826 }

what is shell?


Answer

The program which serves as an interface between the user and the system called a shell. It is the layer of programming that understands and executes the commands a user enters. In some systems, it’s also called a command interpreter.

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, 86193 }

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 { Christ University, 86193 }

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


Answer

== checks equality; = assigns values.

Is This Answer Correct ?    0 Yes 0 No

Question { 18234 }

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 { ITC Infotech, 27075 }

what is memory leakage?


Answer

Memory leakage occurs when dynamically allocated memory is not deallocated.

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 { 9686 }

what is amp?


Answer

AMP (Accelerated Mobile Pages) is an open-source initiative aimed at improving the loading speed of web pages on mobile devices. Launched in 2015 by Google, WordPress, Adobe, and other companies, AMP is designed to enhance the mobile browsing experience by creating lightweight, fast-loading web pages. It optimizes content delivery by limiting the use of heavy elements like JavaScript and ensuring that the core elements load quickly. This results in improved readability and performance on mobile devices, helping websites provide a better user experience, which in turn can improve SEO rankings.

Is This Answer Correct ?    0 Yes 0 No

Question { 7111 }

What is object cloning


Answer

An ability to recreate an object entirely similar to an existing object is known as Object Cloning in Java. Java provides a clone() method to clone a current object offering the same functionality as the original object.

Is This Answer Correct ?    0 Yes 0 No

 [1]    2  ... 4   ... 7   ... 10   ... 13   ... 16   ... 19   ... 22   ... 25   ... 28   ... 31   ... 34   ... 37   ... 40   ... 43    Next