nashi informatics solutions


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

Total Answers Posted for My Questions # 413
Total Views for My Questions # 48339

Users Marked my Answers as Correct # 0
Users Marked my Answers as Wrong # 0
Questions / { nashi informatics solutions }
Questions Answers Category Views Company eMail

What is the difference between a Mutable datatype and an Immutable data type?

1 Python 74

How are arguments passed by value or by reference in Python?

2 Python 81

What is the difference between a Set and Dictionary?

1 Python 62

Difference between for loop and while loop in Python

1 Python 80

1 What is Python?

1 Python 67

What does the ‘#’ symbol do in Python?

2 Python 71

Python a compiled language or an interpreted language?

1 Python 74

Is Python object-oriented or functional programming?

1 Python 80

“In Python, functions are first-class objects.” What do you infer from this?

1 Python 92

features of Python What are the essential?

1 Python 65

What type of language is Python?

1 Python 85

Explain how Python is an interpreted language

1 Python 66

How to use decorators in Python?

1 Python 83

How to use the slicing operator in Python?

1 Python 63

Explain PYTHONPATH

1 Python 83


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



Answers / { nashi informatics solutions }

Question { 5200 }

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

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

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

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 { IBM, 11512 }

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

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

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


Answer

== checks equality; = assigns values.

Is This Answer Correct ?    0 Yes 0 No

Question { 15235 }

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

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

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

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

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

Question { 5997 }

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

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

what is a function prototype?


Answer

A declaration of a function that specifies its return type and parameters, e.g., int add(int, int);

Is This Answer Correct ?    0 Yes 0 No

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