Sign Up

Continue with Facebook
Continue with Google
Continue with Twitter
or use


Have an account? Sign In Now

Sign In

Continue with Facebook
Continue with Google
Continue with Twitter
or use

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

WhatisWhatis

WhatisWhatis Logo WhatisWhatis Logo

WhatisWhatis Navigation

  • Blog
  • Write For Us
  • About Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • All Questions
  • Polls
  • Followers
  • FAQs
  • Add A Group
  • Add A Post
  • Blog
  • Write For Us
  • About Us
Home/Website Development/Page 9

WhatisWhatis Latest Questions

Singasani Akshay
  • 0
Singasani Akshay
Asked: December 28, 2021In: Technology, Website Development

What is Managed Code?

  • 0

What is meant by Managed Code? What are its functions? Explain the main features of Managed Code.

DefinitionManaged CodeManaged Code DefinitionManaged Code FeaturesManaged Code FunctionsUnmanaged CodeWhat is Managed Code
  1. Best Answer
    Singasani Akshay
    Added an answer on December 28, 2021 at 7:21 am
    This answer was edited.

    Managed Code Meaning: Managed Code means a scheme applied by Microsoft to some high-level programming languages. This is done to have their execution managed by the .Net Framework Common Language Runtime. Basically, it is a computer programme code that facilitates the system’s smooth operation. ManaRead more

    Managed Code Meaning:

    Managed Code means a scheme applied by Microsoft to some high-level programming languages. This is done to have their execution managed by the .Net Framework Common Language Runtime.

    Basically, it is a computer programme code that facilitates the system’s smooth operation.

    Managed Code helps or facilitates contract of cooperation between the runtime and the natively executing code which states that the runtime may stop an executing CPU to retrieve the information which is specific to that current address the CPU is executing.

    Functions of Managed Code:

    Managed Code has several functions primary among them being:

    It runs in the Common Language Runtime (CLR), which provides services such as automatic memory management, platform-neutrality, and cross-language integration.

    Managed Code is applied to ensure type safety, array bound and index checking, garbage collection and exception handling.

    Main Features of Managed Code:

    1) Managed Code helps us avoid many typical programming mistakes. This is done by using Managed Code through compilation in the managed execution environment.

    2) Managed Code supports the programming languages like:

    • C++
    • C#
    • J#
    • Microsoft Jscript .Net
    • Microsoft Visual Basic .Net
    • Other languages which support the .Net framework

    3) Ensures that the code is valid managed code

    4) Managed Code changes the entry point in the image to an entry point in the runtime. 

    5) It is the compiler output of source code written in one of over 20 high-level programming languages. 

    Conclusion:

    There exist differences or distinctions between Managed Code and Unmanaged Code. It is prevalent and only relevant when developing applications that interact with CLR implementations. Many older versions of programming languages have been ported to the CLR. As a result, differentiation is needed to identify managed code, especially in a mixed setup.

    See less
    • 0
    • Share
      Share
      • Share onFacebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  • 1 Answer
  • 51 Views
Singasani Akshay
  • 0
Singasani Akshay
Asked: December 28, 2021In: Technology, Website Development

What is MEF?

  • 0

Explain MEF. How does it benefit Programmers and app developers? Where can you find MEF? What is its composition? Define Imports and Exports in MEF.

.NET frameworkBenefits of MEFDefinitionFrameworkLocation of MEFManaged Extensibility FrameworkMEFMEF CompositionMEF DefinitionWhat is MEF
  1. Best Answer
    Singasani Akshay
    Added an answer on December 28, 2021 at 7:11 am

    MEF Meaning: MEF or the Managed Extensibility Framework refers to a digital library for the formation of extensible technical applications. Using it, software developers and programmers can utilize the available extensions without any coding or configuration. You can even use MEF across applicationsRead more

    MEF Meaning:

    MEF or the Managed Extensibility Framework refers to a digital library for the formation of extensible technical applications. Using it, software developers and programmers can utilize the available extensions without any coding or configuration. You can even use MEF across applications during their development stage. You can reuse it for multiple times.

    Benefits of MEF:

    • MEF helps in arranging smaller components 
    • An MEF component can be easily categorized as imports (dependencies) or exports (capabilities).
    • MEF helps an app function without any codes or config files.
    • You can analyze all parts using metadata.

    Location of MEF

    MEF is a constituent part of the .NET framework. Everytime you use .NET, you have to use MEF as well. MEF works in sync with .NET client as well as ASP.NET and in other technology as well. 

    MEF Composition

    MEF composition basically includes a composition container having all available parts assembled together. It is responsible for performing various computing operations. A part represents any object through which any value can be exported or imported.   

    Imports and Exports of MEF:

    Imports and exports are just a behavioral pattern of how MEF parts operate within the .NET framework. When the component delineates the necessity of assigning a value to a particular object, it is called Imports. While export determines whether the same is available or not. Each import has to be matched with their corresponding export in the MEF.

    See less
    • 0
    • Share
      Share
      • Share onFacebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  • 1 Answer
  • 29 Views
Singasani Akshay
  • 0
Singasani Akshay
Asked: December 28, 2021In: Technology, Website Development

What is Method Overloading?

  • 0

What is Method Overloading meaning? How does it work? Explain the types and features of Method Overloading? What are its benefits?

DefinitionMethod OverloadingMethod Overloading BenefitsMethod Overloading DefinitionMethod Overloading FeaturesMethod Overloading MeaningMethod Overloading TypesWhat is Method Overloading?
  1. Best Answer
    Singasani Akshay
    Added an answer on December 28, 2021 at 7:02 am

    Method Overloading Meaning: Method Overloading, a benefit permitting a class to have more than one method having the same name with different parameters, is similar to Constructor Overloading in Java if their argument lists are different. It allows a class to have more than one constructor having diRead more

    Method Overloading Meaning:

    Method Overloading, a benefit permitting a class to have more than one method having the same name with different parameters, is similar to Constructor Overloading in Java if their argument lists are different.

    It allows a class to have more than one constructor having different argument lists which means the parameters that a method has.

    Thus it denotes if a class has many or several methods having the same name but different in parameters, it is Method Overloading.

    Functions of Method Overloading:

    It has several functions primary among them being:

    Being similar to Constructor Overloading in Java, it allows a class to have more than one constructor having different argument lists (also known as parameter lists).

    Its functionality can be utilized by declaring the same method with varied parameters which must be different in number, sequence or types of parameters (or arguments).  

    One of the functions of it relates to Static Binding which happens at compile time. Under Method overloading, binding of method calls to its definition happens at Compile time.

    Types of Method Overloading:

    Following are the main types of Method Overloading:

    • Function overloading.
    • Operator overloading.

    Note:

    In the light of the above types, it is necessary to mention that there are two possible ways to overload which are:

    • Changing Number of arguments.
    • Changing the data types.

    Features of Method Overloading:

    Following are the main features of Method Overloading:

    It is a static polymorphism system (methods are binded during the compilation process).

    Overloading relates to runtime (binding) and the binding of methods is done at compile-time. As a result, multiple processes are not required during run time.

    The numbers of arguments are part of the actual method overloading.

    Benefits of Method Overloading:

    This has several benefits primary among them being:

    • It is time-saving as it reduces execution time because the binding is done during compilation time.
    • An overloading mechanism achieves flexibility.
    • Code reusability is achieved; hence it saves memory.
    • Code complexity is reduced. Hence provides consistency of code. 

    Conclusion:

    Method Overloading has revolutionized the working methods as it eliminates multiple methods with the same name. This has tremendous overloading functionality benefits in code readability and reusability of the program. 

    See less
    • 0
    • Share
      Share
      • Share onFacebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  • 1 Answer
  • 29 Views
Singasani Akshay
  • 0
Singasani Akshay
Asked: December 28, 2021In: Technology, Website Development

What is MIME?

  • 0

What is MIME? How Does It Work? How can you attach heavy files using MIME (Multipurpose Internet Mail Extensions)?

DefinitionMIMEMIME DefinitionMIME MeaningMultipurpose Internet Mail ExtensionsWhat is MIME
  1. Best Answer
    Singasani Akshay
    Added an answer on December 28, 2021 at 6:48 am

    MIME Definition: MIME is the acronym or short form of Multipurpose Internet Mail Extensions. It is basically a content type on the internet in which the data contained in an internet message can be clearly classified as it would in an email or in an HTTP message.  We can also say, to simplify the meRead more

    MIME Definition:

    MIME is the acronym or short form of Multipurpose Internet Mail Extensions. It is basically a content type on the internet in which the data contained in an internet message can be clearly classified as it would in an email or in an HTTP message. 

    We can also say, to simplify the meaning, MIME is an Internet Standard. It extends the format of email message messages to support text in character sets other than the American Standard Code for Information Interchange or ASCII. MIME also facilitates attachments of audio, video, images, and application programs. 

    How Does It Work?

    It should be mentioned here that the MIME is an extension of the original Simple Mail Transport Protocol or SMTP in technical terminology that facilitates or allows the users to exchange various types of data files. Such files may be audio, video, visuals, and application programs.

    The messages or matters with MIME formatting can be sent with a number of systems including SMTP, POP (Post Office Protocol), and IMAP (Internet Message Access Protocol). MIME is a useful system with high technological sophistication.

    Being a versatile system or method, MIME permits your mail Web browser to send and receive written text, audio, video, and graphics files via Internet mail. Attachments under the MIME are faster and versatile.

    How can you attach heavy files using MIME?

    The large files or heavy email attachments, under MIME, can be compressed for better transmission with WinZip or StuffIt. The photographs can be sent in the JPEG format which requires less space and uploading is also faster.

    MIME protocol has several useful features which, among others, include multiple attachments in a single email, supports multiple languages (i.e. Indian languages, German, English, French, and Spanish, etc..), supports multiple attachments in a single email, and the non-ASCII characters.

    In Conclusion:

    One of the biggest benefits of MIME is that it provides the facility of connecting HTML and CSS to email, due to which people can design email as per their requirement and make it attractive and beautiful.

    See less
    • 0
    • Share
      Share
      • Share onFacebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  • 1 Answer
  • 35 Views
Singasani Akshay
  • 0
Singasani Akshay
Asked: December 28, 2021In: Technology, Website Development

What is MSIL?

  • 0

What is MSIL or What does MSIL (Microsoft Intermediate Language) mean? What are its features?

CILDefinitionJITMicrosoftMSILMSIL DefinitionMSIL Featureswhat is microsoft intermediate languageWhat is MSIL
  1. Best Answer
    Singasani Akshay
    Added an answer on December 28, 2021 at 6:37 am

    MSIL Definition: Microsoft Intermediate Language (MSIL), also known as Common Intermediate Language (CIL), is basically a rule-book or guide or a set of instructions that are platform independent. The MSIL or CIL are created by the language-specific compiler from the source code.  Basically, it is aRead more

    MSIL Definition:

    Microsoft Intermediate Language (MSIL), also known as Common Intermediate Language (CIL), is basically a rule-book or guide or a set of instructions that are platform independent. The MSIL or CIL are created by the language-specific compiler from the source code. 

    Basically, it is a platform which is independent. As a result (being independent), the MSIL or CIL can be executed or put into active mode on any of the Common Language Infrastructure supported environments such as Windows. 

    It is converted/changed into a particular computer environment specific machine code by the JIT (Just in Time) Compiler which must be done before the MSIL can be executed or put into active mode. 

    The MSIL can be converted into the machine code on a specific requirement basis. To exemplify this point, the JIT (Just in Time) compiler compiles the MSIL as required rather than the whole of it. 

    When we talk of or explain the CLR, it must be mentioned that the execution process includes the creation of the MSIL and the conversion of the MSIL into machine code by the JIT compiler. 

    Features of MSIL:

    • It has several features. The important features are: 
    • There are opcodes that are one or two bytes long
    • The CLR, along with the MSIL, metadata containing     information like definition and signature of the types in the code, runtime information, is also produced in the compilation.
    • CLI assembly is created by assembling the MSIL.
    • MSIL includes instructions for loading, storing, initializing, and calling methods on objects.
    • MSIL issues instructions for arithmetic and logical operations, control flow, direct memory access, exception handling, and other operations. 

    Conclusion:

    The MSIL and CIL have revolutionized Internet functioning. It has made many difficult computer tasks and is growingly becoming popular across the world. It is particularly useful as the system happens to be machine agnostic and can be turned into native code quickly.

    As a result, it simplifies computer operations.

    See less
    • 0
    • Share
      Share
      • Share onFacebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  • 1 Answer
  • 42 Views
1 … 8 9 10 … 14

Sidebar

Ask A Question
Add A Post
Create A New Group

Categories

Our Figures

  • Questions 1k
  • Answers 1k
  • Posts 1k
  • Comments 88
  • Best Answers 1k
  • Users 7k

Explore

  • Home
  • All Questions
  • Polls
  • Followers
  • FAQs
  • Add A Group
  • Add A Post

Footer

About Us

WhatisWhatis.com is trying to become one of the best question and answer platforms out there, which will help you establish your community and connect with other people.

Our Pages

  • About Us
  • Blog
  • Contact Us
  • Frequently Asked Questions (FAQs)
  • Privacy Policy
  • Questions
  • Write For Us To Submit A Guest Post Article on Technology, Education, Health, Apps, Gadgets, IoT, AI, Business, Digital Marketing and More!

Subscribe For Us

DMCA.com Protection Status

Our Feeds

Sitemap

RSS Feeds

Follow Us Here

Akshay
Online
Need help? Chat via Whatsapp

© 2019 - 2022 All rights reserved By WhatisWhatis.com

Need Help? Chat with us
Start a Conversation
Hi! Click one of our member below to chat on Whatsapp
The team typically replies in a few minutes.
Akshay
Need Any Help?