Searching for "word"

Q:

If it is possible to form a word with the first , fourth, seventh and eleventh letters in the word "SUPERFLUOUS" write the first letter of that word. other wise x is the answer.

A) S B) L
C) E D) X
 
Answer & Explanation Answer: B) L

Explanation:

The first, fourth, seventh and eleventh letters of the word 'SUPERFLUOUS' 

The word formed is LESS

Therefore, The first letter is L.

Report Error

View Answer Report Error Discuss

Filed Under: Alphabet Test

Q:

In a certain code language, "Tom Kun Sud" means "Dogs are barking" , "Kun Jo Mop" means "Dogs and horse" and "Mut Tom Ko" means "Donkeys are mad". Which word in that language means "barking"?

A) Sud B) kun
C) Jo D) Mop
 
Answer & Explanation Answer: A) Sud

Explanation:

In the first and second sentences common word is Dogs and common code is Kun. In the first and third sentences common word is are and common code is Tom. Therefore Sud = baking

Report Error

View Answer Report Error Discuss

Filed Under: Coding and Decoding

Q:

WHAT WORDS CAN U MAKE OUT OF THESE LETTERS H,E,I,V,D,E,O

Answer

Video
Dove
Ode
Hive
He
Doe 

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles

Q:

How can we encrypt the username and password using PHP?

Answer

User names and passwords in PHP can be encrypted using md5 function.


MD5 function calculates the md5 hash of a string. It is basically used for encryption. It is also used for digital signature applications, where a large file must be "compressed" in a secure manner.


Example:


Md5($str);


 


Crypt() function can also be used to encrypt a string,. It used MD5, DES or blow fish algorithms for encryption.


Syntax:


Crypt(str, salt)


Salt is an optional parameter used to increase the number of characters encoded, to make the encoding more secure

Report Error

View answer Workspace Report Error Discuss

Subject: PHP

Q:

Explain how to create random passwords.

Answer

Generating random passwords in PHP can be done in multiple ways depending on how much security the application demands:-


Md5 function can be passed one parameter as uniqid() function which in turn generates a random number. Passing the parameter as TRUE in uniqid() adds additional uniqueness.


<?php
   $passwd = md5(uniqid(rand(), true));
   Echo $passwd;
?>

Report Error

View answer Workspace Report Error Discuss

Subject: PHP

Q:

find all Employee records containing the word "Joe", regardless of whether it was stored as JOE, Joe, or joe.

Answer

SELECT  * from Employees  WHERE  upper(EmpName) like upper('joe%');

Report Error

View answer Workspace Report Error Discuss

Subject: SQL

Q:

Where SQL server user names and passwords are stored in SQL server?

Answer

They get stored in System Catalog Views sys.server_principals and sys.sql_logins.

Report Error

View answer Workspace Report Error Discuss

Subject: SQL

Q:

What is mean by "this" keyword in javascript?

A) It refers current object B) It referes previous object
C) It is variable which contains value D) None of the above
 
Answer & Explanation Answer: A) It refers current object

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Web Technology