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

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

Question { 1168 }

Can a constructor return a value?


Answer

It is possible for a constructor to return a value. A constructor cannot explicitly return a value; instead, it implicitly replaces the current instance of the class.

Is This Answer Correct ?    0 Yes 0 No

Question { 1153 }

What is an object in c++?


Answer

Real-world entities with a state (some type of data) and behavior (functionality) are called objects. A class consists of connected things.

Is This Answer Correct ?    0 Yes 0 No


Question { 1408 }

What are the main features of unix?


Answer

Key features of Unix include:
• Multiuser Capability: Multiple users can access the system simultaneously.
• Multitasking: Unix can execute multiple tasks concurrently.
• Portability: Unix can run on various hardware platforms.
• Security: Unix has robust security features, including file permissions and user authentication.
• Hierarchical File System: Organizes files and directories in a tree structure.
• Shell: An interactive command-line interpreter that allows users to interact with the system.

Is This Answer Correct ?    0 Yes 0 No

Question { 1417 }

What is a lambda expression in c#?


Answer

• An anonymous function introduced in C++11, defined as:
• [capture_list](parameters) -> return_type { body }

Is This Answer Correct ?    0 Yes 0 No

Question { 1368 }

What is a volatile variable in c++?


Answer

A volatile variable indicates to the compiler that the variable can be changed at any time, preventing optimizations.

Is This Answer Correct ?    0 Yes 0 No

Question { 578 }

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


Answer

Data types that are mutable can be altered at runtime. For instance, a dictionary, list, etc.
Immutable data types cannot be changed at runtime, so they cannot be altered. For instance, String, Tuple, etc.

Is This Answer Correct ?    0 Yes 0 No

Question { 1289 }

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


Answer

In Python, everything is an object, and references to the objects are stored in all variables. You are unable to alter the reference values because they are determined by the functions. However, if the item is malleable, you can alter it.

Is This Answer Correct ?    0 Yes 0 No

Question { 1289 }

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


Answer

In Python, arguments are passed by assignment, meaning that the reference to an object is passed to the function. Immutable types (like integers, strings, tuples) behave like "pass-by-value" because their content cannot be modified, while mutable types (like lists, dictionaries) behave like "pass-by-reference" because their content can be modified.

Is This Answer Correct ?    0 Yes 0 No

Question { 513 }

What is the difference between a Set and Dictionary?


Answer

Iterable, mutable, and devoid of duplicate elements, the set is an unordered collection of data types.
Similar to a map, a dictionary in Python is an ordered collection of data values that are used for data value storage.

Is This Answer Correct ?    0 Yes 0 No

Question { 552 }

Difference between for loop and while loop in Python


Answer

It is common practice to iterate through the items of different collection types, including List, Tuple, Set, and Dictionary, using the "for" loop. Developers employ a "for" loop in which the conditions are both the beginning and the conclusion. In contrast, the true looping feature found in all other programming languages is the "while" loop. Python while loops are used by programmers when they only have end conditions.

Is This Answer Correct ?    0 Yes 0 No

Question { 551 }

1 What is Python?


Answer

Python is a popular high-level, general-purpose programming language. Guido van Rossum invented it in 1991, and the Python Software Foundation continued to refine it.

Is This Answer Correct ?    0 Yes 0 No

Question { 1328 }

What does the ‘#’ symbol do in Python?


Answer

‘#’ is used to comment on everything that comes after on the line

Is This Answer Correct ?    0 Yes 0 No

Question { 1328 }

What does the ‘#’ symbol do in Python?


Answer

The `#` symbol is used to add comments in Python. Comments are not executed and are intended to explain the code for the benefit of developers.
Example:
python
# This is a comment

Is This Answer Correct ?    0 Yes 0 No

Question { 654 }

Python a compiled language or an interpreted language?


Answer

Python is actually a partially interpreted and partially compiled language. When we run our code, the compilation process begins. This creates byte code internally, which the Python virtual machine (p.v.m.) then converts based on the underlying platform (computer + operating system).

Is This Answer Correct ?    0 Yes 0 No

Question { 724 }

Is Python object-oriented or functional programming?


Answer

Python is functional as well as object-oriented. By permitting the construction of classes and objects, encapsulation, inheritance, and polymorphism, it facilitates object-oriented programming, or OOP. Functional programming concepts like lambda expressions, list comprehensions, higher-order functions, and first-class functions are also supported by Python. Python is a multi-paradigm language because of its versatility, which allows developers to employ functional, OOP, or a combination of both approaches depending on the task.

Is This Answer Correct ?    0 Yes 0 No

Prev    1   ... 4   ... 7    10   [11]    12  ... 16   ... 19   ... 22   ... 25   ... 28   ... 31   ... 34   ... 37   ... 40   ... 43    Next