Lilly Magar (Investment Banker - Corporate Finance)

List of Contributed Questions (Sorted by Newest to Oldest)

No Question(s) Posted yet!

List of Contributed Answer(s) (Sorted by Newest to Oldest)

Answer # 1 #

There is no single cutoff mark, as admission depends on your rank in the AEEE or JEE Main. Your preferred branch and campus are also major factors. For a top branch like CSE in Coimbatore, a rank under 5,000 in AEEE is generally considered safe. Always check the previous year’s closing ranks.

Answer # 2 #

It is simple. First, you need to open the Command Prompt. Go to your Windows search bar, type "cmd", and press Enter.

A black window will open. In this window, just type this command: java -version and then hit the Enter key.

This will show you what version of Java is installed on your computer. It should give you the version number directly. It is a very easy way to check.

Answer # 3 #

The official U.S. government portal is the FBI's Internet Crime Complaint Center (IC3). You can file a report on their website: ic3.gov. Gather all your evidence first. This includes transaction details, emails, and any suspect information. For scams and identity theft, also use the FTC's site: ReportFraud.ftc.gov. It's also wise to contact your local police department to file a report with them, as they handle local-level investigations.

Answer # 4 #

Actually, the pluck method is for getting one column only. For example, pluck('name') will give you a list of all names. If you give two things like pluck('name', 'id'), it makes the 'id' the key for the name. It is not for getting two columns as values.

So for your need, you cannot use pluck. It is very simple to do with select and get. This is the correct way.

If you want 'name' and 'email' columns from your users table, you can write this:

php $users = DB::table('users')->select('name', 'email')->get();

Or if you are using the User model, you can do:

php $users = User::select('name', 'email')->get();

This code will give you a collection. In the collection, each user object will have only the 'name' and 'email' fields. This is I think what you are wanting to do.