Technology Questions

Q:

What are encryption functions in PHP?

Answer

CRYPT(), MD5()

Report Error

View answer Workspace Report Error Discuss

Subject: PHP

0 1961
Q:

How to use Amazon SQS?

Answer

Amazon SQS is a message passing mechanism that is used for communication between different connectors that are connected with each other. It also acts as a communicator between various components of Amazon. It keeps all the different functional components together. This functionality helps different components to be loosely coupled, and provide an architecture that is more failure resilient system.

Report Error

View answer Workspace Report Error Discuss

Subject: Cloud Computing

1 1959
Q:

Which of the following identifies broadband internet connections?

A) IP, Wi-Fi, FTTP B) FTP, OSP, IP
C) OSP, cellular radio network, FTP D) DSL, Wi-Fi, fixed wireless
 
Answer & Explanation Answer: D) DSL, Wi-Fi, fixed wireless

Explanation:

Internet Service Provider (ISP) is a company offering access to internet. They offer various services:

1. Internet Access

2. Domain name registration

3. Dial-up access

4. Leased line access

 

There exist several ways to connect to the internet. Following are these connection types available:

* Dial-up Connection

* ISDN

* DSL

* Cable TV Internet connections

* Satellite Internet connections

* Wireless Internet Connections

Report Error

View Answer Report Error Discuss

Filed Under: Network Administration
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

2 1958
Q:

Explain marquee tag.

Answer

Marquee tag: Marquee tag is used when we want that some text or content move in the web page whether horizontally or vertically. 


Syntax of Marquee tag: <marquee>content you want to move</marquee>


Attribute of Marquee tag are: bgcolor, direction, height, width, vspace etc.

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 1956
Q:

The model for a record management system might be

A) a rolodex card file B) a business form
C) handwritten list D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

A Records Management System is a computer program or set of programs used to manage and store records.

 

For example, a hospital record for storing new room, ward , patients, etc...

The_model_for_a_record_management_system_might_be1553926899.png image

Report Error

View Answer Report Error Discuss

Filed Under: Application Development
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

0 1955
Q:

why overriding finalize() method?

Answer

If constructor opens the file 


finalize() method closes that file.


 


If constructor opens the connection 


finalize() method closes that connection.


 


To perform finalization operation we must overriding finalize method.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 1955
Q:

How to call a constructor in java?

Answer

Constructor chaining is the process of calling one constructor from another constructor with respect to current object.





Within same class: It can be done using this() keyword for constructors in same class


From base class: by using super() keyword to call constructor from the base class.

Report Error

View answer Workspace Report Error Discuss

1 1952
Q:

How to create Directory on the HD?

Answer

To create directory on the HD we use mkDir() method:


boolean mkDir();


This method returns true if the directory is created on HD


This method returns false if the directory is already existing on HD

Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 1951