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

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

Question { 1412 }

What is the difference between div and span?


Answer

: A block-level element used for grouping larger sections of content.
: An inline element used for styling a small portion of content within a block.

Is This Answer Correct ?    0 Yes 0 No

Question { 1921 }

What is a namespace in c++?


Answer

In this set of fresher-level C++ interview questions, one common topic is the concept of namespaces. Namespaces in C++ are used to organize multiple classes and functions, which simplifies application management..
The most commonly used namespace in C++ is the std namespace, which contains components of the standard library. Programmers can also create custom namespaces to encapsulate related functionality, helping to avoid name clashes in larger projects.
To access elements within a namespace, you can utilize the scope resolution operator (::) or the using directive.

Is This Answer Correct ?    0 Yes 0 No


Question { 1921 }

What is a namespace in c++?


Answer

In this set of fresher-level C++ interview questions, one common topic is the concept of namespaces. Namespaces in C++ are used to organize multiple classes and functions, which simplifies application management..
The most commonly used namespace in C++ is the std namespace, which contains components of the standard library. Programmers can also create custom namespaces to encapsulate related functionality, helping to avoid name clashes in larger projects.
To access elements within a namespace, you can utilize the scope resolution operator (::) or the using directive.

Is This Answer Correct ?    0 Yes 0 No

Question { 1072 }

What are the different types of files in linux?


Answer

• Regular files
• Directories
• Special files (character and block devices)
• Symbolic and hard links
• Named pipes
• Sockets

Is This Answer Correct ?    0 Yes 0 No

Question { 1492 }

What is a function in c?


Answer

A function in C++ is a collection of statements designed to accept input, perform specific computations, and produce output. The primary purpose of a function is to group tasks that are frequently executed, which helps avoid code duplication. Instead of rewriting the same code for different inputs, you can simply call the function.
In essence, a function is a block of code that executes only when it is invoked.

Is This Answer Correct ?    0 Yes 0 No

Question { 1419 }

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

What are the applications of c#?


Answer

C++ has numerous applications, which are frequently highlighted in C++ interview questions.
Major software companies and tech giants use C++ for various applications, including:
• Compilers: Many compilers, including those for C# and Java, are written in C++.
• Microsoft: Many Windows applications, including tools for coding and debugging, are developed using C++.
• MongoDB: This popular open-source database is written in C++ and used in web applications.
• Games and Animations: It is widely used in game development for optimizing resources and supporting multiplayer networking.
• Media Access: It is used to develop media players and manage video and audio files.

Is This Answer Correct ?    0 Yes 0 No

Question { 1570 }

What are the applications of c#?


Answer

C++ has numerous applications, which are frequently highlighted in C++ interview questions.
Major software companies and tech giants use C++ for various applications, including:
• Compilers: Many compilers, including those for C# and Java, are written in C++.
• Microsoft: Many Windows applications, including tools for coding and debugging, are developed using C++.
• MongoDB: This popular open-source database is written in C++ and used in web applications.
• Games and Animations: It is widely used in game development for optimizing resources and supporting multiplayer networking.
• Media Access: It is used to develop media players and manage video and audio files.

Is This Answer Correct ?    0 Yes 0 No

Question { 2149 }

What are the different data types present in C++?


Answer

In C++ interview questions, one common topic is the different data types available. C++ data types are broadly classified into three categories:
• Primitive: Primitive data types include fundamental types like int, float, char, and bool.
• Derived: Derived data types are more complex and include arrays, pointers, and functions.
• User-Defined: User-defined data types, such as classes, structures, and unions, allow programmers to define custom data types.

Is This Answer Correct ?    0 Yes 0 No

Question { 2149 }

What are the different data types present in C++?


Answer

In C++ interview questions, one common topic is the different data types available. C++ data types are broadly classified into three categories:
• Primitive: Primitive data types include fundamental types like int, float, char, and bool.
• Derived: Derived data types are more complex and include arrays, pointers, and functions.
• User-Defined: User-defined data types, such as classes, structures, and unions, allow programmers to define custom data types.

Is This Answer Correct ?    0 Yes 0 No

Question { 1949 }

What do you mean by call by value and call by reference?


Answer

A common topic that often appears in C++ interview questions is the difference between call by value and call by reference.
• Call by Value in C++: In the call-by-value method, function arguments are passed by copying the value of the actual parameter.
• This ensures that the original values remain unchanged since a separate copy of the value is created for the function's parameters.
• Call by Reference in C++: In the call-by-reference method, the memory address (or reference) of the actual parameter is passed to the function.
• This allows direct access to and modification of the original values.
• Both the actual and formal parameters refer to the same memory address, so any changes made to the parameters within the function are directly reflected in the original values outside the function.

Is This Answer Correct ?    0 Yes 0 No

Question { 1949 }

What do you mean by call by value and call by reference?


Answer

A common topic that often appears in C++ interview questions is the difference between call by value and call by reference.
• Call by Value in C++: In the call-by-value method, function arguments are passed by copying the value of the actual parameter.
• This ensures that the original values remain unchanged since a separate copy of the value is created for the function's parameters.
• Call by Reference in C++: In the call-by-reference method, the memory address (or reference) of the actual parameter is passed to the function.
• This allows direct access to and modification of the original values.
• Both the actual and formal parameters refer to the same memory address, so any changes made to the parameters within the function are directly reflected in the original values outside the function.

Is This Answer Correct ?    0 Yes 0 No

Question { 1292 }

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

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

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   ... 3   ... 5    7   [8]    9  ... 11   ... 13   ... 15   ... 17   ... 19   ... 21   ... 23    Next