answersLogoWhite

0

What else can I help you with?

Continue Learning about Engineering

The programming language used in creating an applet?

IOS


What is file mode and list various file mode operations available?

A file mode describes how a file is to be used, to read, to write to append etc. When you associate a stream with a file, either by initializing a file stream object with a file name or by using open() method, you can provide a second argument specifying the file mode. e.g. stream_object.open("filename",filemode); Following is the list of filemodes available in C++ ios::in ios::out ios::binary ios::ate ios::app ios::trunc ios::nocreate ios::noreplace


What is the significance of c plus plus by using ios class?

The ios type is a synonym for the STL class basic_ios, specialised for elements of type char with default character traits. It has the following type definition: typedef basic_ios<char, char_traits<char> > ios; The type is defined in <iosfwd>. It supports the ios class from the old iostream library.


What is stream in C plus plus?

It's a bit difficult to show a class hierarchy using unformatted text alone, so I'll use the scope resolution operator to show the relationships instead. Note: [] denotes multiple inheritance ios_base ios_base::ios ios_base::ios::istream ios_base::ios::ostream: ios_base::ios::istream::ifstream ios_base::ios::ostream::ofstream ios_base::ios::[istream/ostream]::iostream ios_base::ios::[istream/ostream]::iostream::fstream ios_base::ios::[istream/ostream]::iostream::stdiostream ios_base::ios::[istream/ostream]::iostream::stringstream streambuf streambuf::filebuf streambuf::stdiobuf


IN which Programming language is Cisco IOS made?

Python script?