CSC Impo Questions
CSC Impo Questions
ANS:
ANS:
Aspect SMS (Short Message Service) MMS (Multimedia Messaging Service)
Content Type Text-only Messages with multimedia content like images, videos, and
messages audio
Cost Typically cheaper, charged per text Generally more expensive due to multimedia data
message usage
ANS:
ANS:
8. WHAT IS DIGITAL DIVIDE? WRITE 2 FACTORS OF IT.
ANS: Digital Divide refers to the gap between individuals, communities, or nations in
terms of access to, use of, or knowledge of information and communication technologies
(ICT). This disparity affects opportunities for education, employment, and social interaction in
a technology-driven world.
1. Economic Factors
○ High costs of devices, internet services, and infrastructure limit access to
technology for economically disadvantaged groups.
2. Educational Factors
○ Lack of digital literacy and technical skills can hinder individuals from
effectively utilizing digital tools and services.
ANS: Open Source Software (OSS) refers to software whose source code is made
publicly available, allowing users to view, modify, and distribute it freely. This promotes
collaboration, innovation, and transparency in software development.
1. Linux
○ A family of open-source operating systems widely used in servers, desktops,
and embedded systems.
2. Mozilla Firefox
○ An open-source web browser known for its speed, security, and extensive
customization options.
ANS: Netiquettes are a set of guidelines for proper and respectful behavior while
interacting online. They ensure effective communication, maintain professionalism, and
promote a positive online environment.
1. FTP
2. HTTP
3. SMTP
ANS:
ANS: Software licenses are legal agreements that specify the terms
under which software can be used, modified, and distributed.
● Free Software License Example: GNU General Public License
(GPL)
● Open Software License Example: MIT License
ANS: Speed: 4G offers significantly faster download and upload speeds than 3G,
providing a smoother experience for activities like streaming, gaming, and
downloading large files.
ANS: The <input> tag in HTML is used to create interactive controls in a web form that allow
users to enter data. It can be used with various types, depending on the type of input you need to
create.
1.
2.
3.
4. Submit: Creates a button that submits the form data.
html
Copy code
<input type="submit" value="Submit">
<select>
</select>
html
Copy code
<button type="submit">Submit</button>
2.
3. Reset Button (<button type="reset">):
○ Resets the form fields to their default values.
html
Copy code
<button type="reset">Reset</button>
4.
5. Button Button (<button type="button">):
○ A generic button that can trigger JavaScript actions when
clicked, but does not submit or reset the form.
html
Copy code
<button type="button">Click Me</button>
ANS: A search engine is a software tool that helps users find information
on the internet by searching a database of web pages using keywords or
queries. Popular examples include Google, Bing, and Yahoo.
ANS: The <basefont> tag in HTML was used to set the default font size, color,
and face for all text within a webpage. However, this tag is now obsolete in modern
HTML, and its functionality is typically replaced with CSS styles.
1.
2. size: Specifies the font size. It can take values from 1 to 7, with 3 being
the default size.
html
Copy code
<basefont size="4">
ANS: The alt attribute in HTML is used to provide alternative text for an
image if it cannot be displayed. It describes the content or function of an
image, helping users who cannot view the image (e.g., those using screen
readers) and improving accessibility.
● MY SPACE
● FACEBOOK
ANS: A newsgroup is an online discussion forum where users post and reply
to messages on specific topics.
ANS:Empty elements in HTML are tags that do not have any content between an
opening and closing tag. They don't require a closing tag.
Examples:
1.
2.
3. <hr>: Creates a horizontal rule (line).
html
Copy code
<hr>